/* ============================================
   INVENTE — Main Stylesheet v2
   Military-Tech Dashboard Aesthetic
   Inspired by reference design (main.html)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy-900: #080f1a;
  --navy-800: #0c1929;
  --navy-700: #0e1b2b;
  --navy-light: #1a2d42;
  --blue: #00a8ff;
  --blue-glow: rgba(0, 168, 255, 0.3);
  --blue-border: rgba(0, 168, 255, 0.18);
  --orange: #f15a27;
  --orange-hover: #ff6b3d;
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #0088cc; }

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 19px;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background-color: var(--navy-900);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

/* Jet SVG */
.drone {
  position: relative;
  width: 180px;
  height: 130px;
  margin: 0 auto 36px;
  animation: jetFloat 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0, 168, 255, 0.25));
}

.drone-svg {
  width: 100%;
  height: 100%;
}

@keyframes jetFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(0deg); }
}

/* Exhaust glow pulse */
.exhaust-glow {
  animation: exhaustPulse 0.3s ease-in-out infinite alternate;
}

.exhaust-glow-outer {
  animation: exhaustPulse 0.5s ease-in-out infinite alternate;
}

@keyframes exhaustPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Speed lines */
.speed-line {
  animation: speedDash 0.8s linear infinite;
}

.speed-line.s2 {
  animation-delay: 0.25s;
}

.speed-line.s3 {
  animation-delay: 0.5s;
}

@keyframes speedDash {
  0% { opacity: 0; transform: translateX(8px); }
  50% { opacity: 0.5; }
  100% { opacity: 0; transform: translateX(-8px); }
}

/* Navigation LED pulse */
.center-led {
  animation: ledPulse 1.2s ease-in-out infinite;
}

@keyframes ledPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Shadow reacts to float */
.drone-shadow-svg {
  animation: shadowPulse 2.5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { rx: 50; opacity: 0.1; }
  50% { rx: 35; opacity: 0.05; }
}

/* Drone rotor spin (for multirotor preloader) */
.rotor {
  animation: rotorSpin 0.15s linear infinite;
  transform-origin: center;
}

.rotor-group:nth-child(odd) .rotor {
  animation-direction: reverse;
}

@keyframes rotorSpin {
  0% { opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

/* Preloader Text */
.preloader-text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--blue);
  margin-bottom: 20px;
  animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Preloader Bar */
.preloader-bar {
  width: 180px;
  height: 2px;
  background: var(--white-10);
  border-radius: 1px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 1px;
  animation: barFill 2s ease-in-out forwards;
}

@keyframes barFill {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--white-70);
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Grid Background Pattern ---------- */
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---------- Animations ---------- */
@keyframes scanline {
  0% { top: -10%; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 4px var(--blue-glow); }
  50% { box-shadow: 0 0 12px var(--blue-glow); }
}

.scanline-effect {
  position: relative;
  overflow: hidden;
}

.scanline-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 168, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 168, 255, 0.8);
  animation: scanline 4s linear infinite;
  pointer-events: none;
  z-index: 5;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 100px 0;
}

/* Section Label — small blue label + orange underline (from main.html) */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

.section-label-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-top: 8px;
  margin-bottom: 24px;
  box-shadow: 0 0 10px rgba(241, 90, 39, 0.3);
}

/* Legacy section-title (still used on inner pages) */
.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(241, 90, 39, 0.3);
}

.section-subtitle {
  color: var(--white-50);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 0 20px rgba(241, 90, 39, 0.3);
  background: var(--orange-hover);
}

.btn-primary:hover::after {
  transform: translateY(0);
}

.btn-primary i { margin-left: 12px; transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px var(--blue-glow);
}

.btn-secondary i { margin-left: 8px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px var(--blue-glow);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Card Hover Effect (from main.html) ---------- */
.hover-card {
  position: relative;
  transition: all 0.35s ease;
}

.hover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.hover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hover-card:hover::before {
  opacity: 1;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 15, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 40px;
  width: 180px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white-70);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-70);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay (full-screen like main.html) */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-overlay a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}

.mobile-menu-overlay a:hover {
  color: var(--orange);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover { color: var(--orange); }

.mobile-menu-logo {
  position: absolute;
  top: 16px;
  left: 24px;
}

.mobile-logo-icon {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 6px;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* background image set via inline style on HTML element for hosting compatibility */
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

/* Decorative Corner Brackets */
.hero-bracket-tl {
  position: absolute;
  top: 96px;
  left: 24px;
  width: 64px;
  height: 64px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bracket-br {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
  padding-top: calc(var(--nav-height) + 40px);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-accent-line {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(241, 90, 39, 0.3);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-content .highlight {
  color: var(--blue);
  font-weight: 600;
}

/* Hero HUD Elements (from main.html) */
.hero-hud {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  gap: 32px;
  color: var(--white-30);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  z-index: 2;
}

.hero-hud .status-online { color: var(--blue); }

/* Hero Radar Graphic (right side) */
.hero-radar {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33%;
  height: 66%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.hero-radar-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--blue-border);
}

.hero-radar-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue-border);
}

.hero-radar-circle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--blue-border);
}

.hero-radar-circle.c1 { width: 400px; height: 400px; opacity: 0.3; }
.hero-radar-circle.c2 { width: 600px; height: 600px; opacity: 0.2; }

.hero-radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-radar-dot.d1 {
  top: 25%;
  left: 40px;
  background: var(--blue);
}

.hero-radar-dot.d2 {
  bottom: 33%;
  left: 80px;
  background: var(--orange);
  animation-delay: 0.5s;
}

/* ---------- Gradient Divider ---------- */
.gradient-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}

/* ---------- About Section (Homepage) ---------- */
.about-section {
  background: var(--navy-900);
  position: relative;
}

.about-layout {
  display: flex;
  gap: 64px;
}

.about-label-col {
  flex: 0 0 25%;
}

.about-text-col {
  flex: 1;
  max-width: 900px;
}

.about-text-col p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text-col .highlight {
  color: var(--blue);
  font-weight: 700;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--white-05);
}

.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Ecosystem Section ---------- */
.ecosystem-section {
  background: var(--navy-700);
  position: relative;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eco-card {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 36px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.eco-card .btn-secondary {
  margin-top: auto;
}

.eco-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.eco-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.eco-card-image {
  width: 100%;
  height: 160px;
  background: rgba(8, 15, 26, 0.5);
  border: 1px solid var(--white-05);
  border-radius: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.eco-card-image .card-icon {
  font-size: 2.5rem;
  color: var(--white-10);
  transition: color 0.3s ease;
}

.eco-card:hover .card-icon {
  color: rgba(0, 168, 255, 0.3);
}

.eco-card-image .card-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 0.5rem;
  color: var(--blue);
  letter-spacing: 1px;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--white);
  transition: color 0.3s ease;
}

.eco-card:hover h3 { color: var(--blue); }

.eco-card p {
  font-size: 0.95rem;
  margin-bottom: 32px;
  min-height: 50px;
}

/* ---------- Dashboard Section (from main.html) ---------- */
.dashboard-section {
  background: var(--navy-900);
  position: relative;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.dashboard-status {
  text-align: right;
}

.dashboard-status .status-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--white-50);
  letter-spacing: 3px;
}

.dashboard-status .status-indicator {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.status-dot-text {
  font-size: 0.8rem;
  color: #22c55e;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.dashboard-panel {
  background: var(--navy-800);
  border: 1px solid rgba(0, 168, 255, 0.12);
  border-radius: 4px;
  padding: 24px;
}

.dashboard-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-panel-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 3px;
}

.dashboard-panel-tags {
  display: flex;
  gap: 8px;
}

.panel-tag {
  padding: 4px 8px;
  background: var(--navy-900);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 1px;
  border-radius: 2px;
}

.panel-tag.active {
  color: var(--blue);
  border: 1px solid rgba(0, 168, 255, 0.3);
}

.panel-tag.inactive {
  color: var(--white-50);
  border: 1px solid var(--white-10);
}

/* Chart placeholder */
.chart-placeholder {
  width: 100%;
  height: 280px;
  background:
    linear-gradient(rgba(0, 168, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* SVG Chart Line */
.chart-placeholder svg {
  width: 100%;
  height: 100%;
}

/* Progress Bars (System Readiness) */
.readiness-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.readiness-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.readiness-item-label {
  font-size: 0.9rem;
  color: var(--white-70);
}

.readiness-item-value {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--blue);
}

.readiness-item-value.warn { color: var(--orange); }

.readiness-bar {
  width: 100%;
  height: 4px;
  background: var(--navy-900);
  border-radius: 4px;
  overflow: hidden;
}

.readiness-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
  transition: width 1s ease;
}

.readiness-bar-fill.warn {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(241, 90, 39, 0.3);
}

.readiness-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--white-05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.readiness-footer-label {
  font-size: 0.85rem;
  color: var(--white-50);
}

.readiness-footer-value {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--white);
}

/* ---------- Quote Section ---------- */
.quote-section {
  background: var(--navy-700);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border);
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.quote-mark-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-48px);
  font-family: serif;
  font-size: 8rem;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.quote-content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-attribution {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--navy-900);
  position: relative;
}

.contact-layout {
  display: flex;
  gap: 64px;
}

.contact-info-col {
  flex: 0 0 33%;
}

.contact-form-col {
  flex: 1;
}

.contact-info-col p {
  color: var(--white-50);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--white-70);
}

.contact-detail i {
  color: var(--blue);
  width: 20px;
  text-align: center;
}

.contact-form {
  background: var(--navy-800);
  border: 1px solid rgba(0, 168, 255, 0.08);
  border-radius: 4px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white-50);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy-900);
  border: 1px solid rgba(0, 168, 255, 0.12);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-30);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 100%);
}

.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 6px;
  position: relative;
  z-index: 1;
}

.page-header .section-title::after {
  margin: 12px auto 0;
}

/* ---------- About Page ---------- */
.about-intro {
  background: var(--navy-900);
}

.about-intro .about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text .highlight,
.about-intro-text .highlight {
  color: var(--blue);
  font-weight: 700;
}

.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-intro-text {
  max-width: 900px;
}

.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Leadership */
.leadership-section {
  background: var(--navy-700);
  position: relative;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  text-align: center;
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 40px 28px;
  position: relative;
  transition: all 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.leader-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid rgba(0, 168, 255, 0.3);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-avatar .avatar-icon,
.leader-avatar i {
  font-size: 2rem;
  color: var(--white-30);
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.leader-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.leader-card .leader-title {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.leader-card p { font-size: 0.95rem; }

/* ---------- Projects Page ---------- */
.projects-list {
  background: var(--navy-900);
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--blue-border);
}

.project-card:last-child { border-bottom: none; }

.project-card.reverse .project-image { order: 2; }
.project-card.reverse .project-text { order: 1; }

.project-image {
  width: 100%;
  height: 280px;
  background: rgba(8, 15, 26, 0.5);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image .project-icon {
  font-size: 3rem;
  color: var(--white-10);
}

.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px);
  background-size: 25px 25px;
}

.project-text h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.project-text p {
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ---------- Products Page ---------- */
.product-section {
  position: relative;
  background: var(--navy-900);
}

.product-section:nth-child(even) {
  background: var(--navy-700);
}

.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.3;
}

.product-intro {
  max-width: 800px;
  margin-bottom: 3rem;
}

.product-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 3rem;
}

.feature-item {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(0, 168, 255, 0.4);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--blue-glow);
}

.feature-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--blue-border);
}

.product-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: var(--white-50);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-tab:hover,
.product-tab.active {
  background: rgba(0, 168, 255, 0.1);
  color: var(--white);
  border-color: var(--blue);
}

.product-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.product-panel.active { display: block; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-detail h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.payload-tag {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 2px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 168, 255, 0.08);
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-radius: 2px;
}

.product-detail .payload-tag {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-features-list { margin-bottom: 24px; }

.product-features-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--white-70);
  font-size: 0.95rem;
}

.product-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--blue-glow);
}

/* Specs Table */
.specs-table {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  overflow: hidden;
}

.specs-table h4 {
  padding: 14px 20px;
  background: rgba(0, 168, 255, 0.08);
  border-bottom: 1px solid var(--blue-border);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--white-05);
}

.spec-row:last-child { border-bottom: none; }

.spec-label { color: var(--white-50); font-size: 0.9rem; }

.spec-value {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
}

/* BCI & Tactical */
.bci-grid,
.tactical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bci-card,
.tactical-card {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  transition: all 0.35s ease;
}

.bci-card:hover,
.tactical-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.bci-card:hover::before,
.tactical-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.bci-card h3,
.tactical-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--white);
}

.bci-card p,
.tactical-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.tactical-card .tactical-type {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.tactical-card .tactical-features {
  margin-top: 16px;
  margin-bottom: 16px;
}

.tactical-card .tactical-features li {
  padding: 4px 0 4px 16px;
  position: relative;
  color: var(--white-70);
  font-size: 0.9rem;
}

.tactical-card .tactical-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.tactical-specs {
  background: rgba(0, 168, 255, 0.05);
  border-radius: 4px;
  padding: 16px;
  margin-top: 16px;
}

.tactical-specs .spec-row {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 168, 255, 0.08);
}

.tactical-specs .spec-row:last-child { border-bottom: none; }

/* ---------- Blog Page ---------- */
.blog-section { background: var(--navy-900); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.blog-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.blog-card-image {
  width: 100%;
  height: 180px;
  background: rgba(8, 15, 26, 0.5);
  border-bottom: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image .card-icon {
  font-size: 2rem;
  color: var(--white-10);
}

.blog-card-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.blog-card-body { padding: 24px; }

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
  text-transform: none;
}

.blog-card-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ---------- Blog Post Page ---------- */
.blog-post-section { background: var(--navy-900); }

.blog-post-back {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}
.blog-post-back:hover { color: var(--orange); }
.blog-post-back i { margin-right: 8px; }

.blog-post-hero-image {
  width: 100%;
  max-height: 480px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--blue-border);
  margin-bottom: 32px;
}
.blog-post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-hero-icon {
  width: 100%;
  height: 240px;
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.blog-post-hero-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.blog-post-hero-icon i {
  font-size: 3rem;
  color: var(--white-10);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.blog-post-category {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--blue);
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 600;
}
.blog-post-date {
  font-size: 0.85rem;
  color: var(--white-50);
}
.blog-post-date i {
  color: var(--blue);
  margin-right: 6px;
}

.blog-post-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.4;
}

.blog-post-body {
  max-width: 800px;
  margin-bottom: 48px;
}
.blog-post-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--white-70);
  margin-bottom: 1.2rem;
}
.blog-post-body p:last-child { margin-bottom: 0; }

.blog-post-footer {
  padding-top: 32px;
  border-top: 1px solid var(--blue-border);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 255, 0.5), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--blue-border);
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--blue);
  padding-left: 8px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-30);
  margin-bottom: 0;
}

/* ---------- Contact Page ---------- */
.contact-page-section {
  background: var(--navy-900);
}

/* ============================================
   Products Page v2 — New Components
   ============================================ */

/* ---------- Products Hero ---------- */
.products-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 100%);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
}

.products-hero-content {
  max-width: 720px;
}

.products-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.products-hero-content p {
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 620px;
  line-height: 1.8;
}

.products-hero-content .highlight {
  color: var(--blue);
  font-weight: 600;
}

.products-hero-hud {
  position: absolute;
  bottom: 24px;
  left: 48px;
  display: flex;
  gap: 32px;
  color: var(--white-30);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 3px;
  z-index: 2;
}

.products-hero-hud .status-online {
  color: var(--blue);
}

.products-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}

/* ---------- Filter Tabs ---------- */
.filter-tabs-section {
  background: var(--navy-800);
  padding: 20px 0;
  border-bottom: 1px solid var(--blue-border);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--white-10);
  border-radius: 2px;
  color: var(--white-50);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(0, 168, 255, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}

/* ---------- Featured Product ---------- */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 32px;
  transition: all 0.35s ease;
}

.featured-product:hover {
  border-color: rgba(0, 168, 255, 0.4);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.15);
}

.featured-product-image {
  position: relative;
  height: 400px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid var(--white-05);
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.featured-tag-bottom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--blue);
  letter-spacing: 1px;
}

.featured-product-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--white);
}

.featured-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tag-blue {
  padding: 4px 12px;
  background: var(--navy-900);
  border: 1px solid rgba(0, 168, 255, 0.4);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.tag-orange {
  padding: 4px 12px;
  background: var(--navy-900);
  border: 1px solid rgba(241, 90, 39, 0.4);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.featured-product-info > p {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
}

.featured-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--white-05);
}

.featured-spec-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--white-50);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.featured-spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.featured-actions {
  display: flex;
  gap: 12px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-icon:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px var(--blue-glow);
}

/* ---------- Product Cards Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-card {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
}

.prod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.2);
}

.prod-card:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.prod-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-900);
}

.prod-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-card-image img {
  transform: scale(1.08);
}

.prod-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  background: rgba(8, 15, 26, 0.8);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.prod-card-tag.tag-blue {
  color: var(--blue);
  border: 1px solid rgba(0, 168, 255, 0.3);
  background: rgba(8, 15, 26, 0.8);
}

.prod-card-tag.tag-orange {
  color: var(--orange);
  border: 1px solid rgba(241, 90, 39, 0.3);
  background: rgba(8, 15, 26, 0.8);
}

.prod-card-body {
  padding: 24px;
}

.prod-card-body h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--white);
  transition: color 0.3s ease;
}

.prod-card:hover .prod-card-body h3 {
  color: var(--blue);
}

.prod-card-body > p {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 50px;
}

.prod-card-specs {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.7rem;
  margin-bottom: 20px;
}

.prod-card-specs .spec-dim {
  color: var(--white-50);
}

.prod-card-specs span:not(.spec-dim) {
  color: var(--white);
  margin-left: 4px;
}

/* ---------- Comparison Table ---------- */
.comparison-table-wrapper {
  overflow-x: auto;
  position: relative;
}

.comparison-table-wrapper.is-scrollable::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--navy-900) 90%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.comparison-table-wrapper.scrolled-end::after {
  opacity: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead tr {
  border-bottom: 1px solid var(--blue-border);
}

.comparison-table th {
  text-align: left;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--white-05);
  transition: background 0.3s ease;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--navy-800);
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--white-70);
}

.comparison-table .platform-name {
  color: var(--white);
  font-weight: 600;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 2px;
}

.status-active {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-testing {
  background: rgba(241, 90, 39, 0.1);
  color: var(--orange);
  border: 1px solid rgba(241, 90, 39, 0.3);
}

.status-rnd {
  background: rgba(0, 168, 255, 0.1);
  color: var(--blue);
  border: 1px solid rgba(0, 168, 255, 0.3);
}

/* ---------- Charts ---------- */
.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.chart-panel {
  background: var(--navy-800);
  border: 1px solid rgba(0, 168, 255, 0.12);
  border-radius: 4px;
  padding: 24px;
}

.chart-panel h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.chart-panel > div {
  width: 100%;
  height: 320px;
}

/* ---------- Config Cards ---------- */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.config-card {
  background: var(--navy-800);
  border: 1px solid rgba(0, 168, 255, 0.15);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.config-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(0, 168, 255, 0.15);
}

.config-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

.config-icon i {
  font-size: 1.5rem;
}

.config-icon.blue {
  border: 1px solid var(--blue);
}

.config-icon.blue i {
  color: var(--blue);
}

.config-icon.orange {
  border: 1px solid var(--orange);
}

.config-icon.orange i {
  color: var(--orange);
}

.config-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--white);
}

.config-card p {
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 0;
}

/* ---------- Certifications ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.cert-item {
  text-align: center;
}

.cert-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cert-icon:hover {
  box-shadow: 0 0 20px var(--blue-glow);
}

.cert-icon i {
  font-size: 2rem;
  color: var(--blue);
}

.cert-item span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--white-70);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- CTA Block ---------- */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-block > p {
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Quote Request Modal
   ============================================ */

.quote-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 48px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
}

.quote-modal-overlay.active .quote-modal {
  transform: translateY(0) scale(1);
}

.quote-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-10);
  background: transparent;
  color: var(--white-50);
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quote-modal-close:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 168, 255, 0.08);
}

.quote-modal-header {
  margin-bottom: 36px;
}

.quote-modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}

.quote-modal-header p {
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.7;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.quote-form-group {
  display: flex;
  flex-direction: column;
}

.quote-form-group.full-width {
  margin-bottom: 20px;
}

.quote-form-group label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 8px;
}

.quote-form-group label .required {
  color: var(--orange);
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy-900);
  border: 1px solid var(--white-10);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
  color: var(--white-30);
}

.quote-form-group select option {
  background: var(--navy-900);
  color: var(--white);
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
}

.quote-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.quote-form-actions .btn-primary {
  flex: 1;
}

.quote-form-actions .btn-outline {
  flex: 0 0 auto;
}

.quote-modal-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.6s ease;
}

.success-icon i {
  font-size: 2rem;
  color: #22c55e;
}

@keyframes successPulse {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.quote-modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.quote-modal-success p {
  color: var(--white-50);
  font-size: 1rem;
  margin-bottom: 32px;
}

.quote-modal::-webkit-scrollbar { width: 4px; }
.quote-modal::-webkit-scrollbar-track { background: transparent; }
.quote-modal::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ---------- News Flash Banner ---------- */
.news-flash-banner {
  background: linear-gradient(90deg, rgba(241, 90, 39, 0.08) 0%, rgba(241, 90, 39, 0.15) 50%, rgba(241, 90, 39, 0.08) 100%);
  border-top: 1px solid rgba(241, 90, 39, 0.25);
  border-bottom: 1px solid rgba(241, 90, 39, 0.25);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}

.news-flash-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(241, 90, 39, 0.08), transparent);
  animation: newsFlashShimmer 4s ease-in-out infinite;
}

@keyframes newsFlashShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.news-flash-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.news-flash-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f15a27;
  background: rgba(241, 90, 39, 0.15);
  border: 1px solid rgba(241, 90, 39, 0.3);
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-flash-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}

.news-flash-text strong {
  color: #fff;
}

.news-flash-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.news-flash-link:hover {
  color: #fff;
}

/* ---------- Project Card Expand/Collapse ---------- */
.project-teaser {
  margin-bottom: 0;
}

.project-expanded {
  display: none;
}

.project-card.expanded .project-expanded {
  display: block;
}

.project-expanded p {
  margin-bottom: 16px;
  color: var(--white-70);
  line-height: 1.8;
}

.project-expanded .btn-secondary {
  margin-top: 8px;
}

.btn-readmore {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--blue);
  background: none;
  border: 1px solid rgba(0, 168, 255, 0.2);
  padding: 8px 20px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-readmore:hover {
  background: rgba(0, 168, 255, 0.08);
  border-color: var(--blue);
}

.btn-readmore i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.project-card.expanded .btn-readmore i {
  transform: rotate(180deg);
}

/* ---------- Product Category Sections ---------- */
.product-category-section {
  border-bottom: 1px solid var(--blue-border);
}

.category-intro {
  max-width: 700px;
  color: var(--white-70);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ---------- Common Features Table ---------- */
.common-features-table-wrapper {
  margin-bottom: 48px;
  overflow-x: auto;
}

.common-features-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  overflow: hidden;
}

.common-features-table thead th {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 168, 255, 0.06);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--blue-border);
}

.common-features-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--white-70);
}

.common-features-table tbody tr:last-child td {
  border-bottom: none;
}

.common-features-table tbody tr:hover {
  background: rgba(0, 168, 255, 0.03);
}

.common-features-table tbody td:first-child {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  white-space: nowrap;
}

/* ---------- Product Variant Cards ---------- */
.variant-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.variant-card {
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.variant-card:hover {
  border-color: rgba(0, 168, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 168, 255, 0.08);
}

.variant-card-image {
  height: 200px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  margin: -32px -32px 24px -32px;
  background: var(--navy-900);
}

.variant-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.variant-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.variant-card-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.variant-badge {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.variant-badge.blue {
  color: var(--blue);
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.25);
}

.variant-badge.orange {
  color: var(--orange);
  background: rgba(241, 90, 39, 0.1);
  border: 1px solid rgba(241, 90, 39, 0.25);
}

.variant-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.variant-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--white-70);
}

.variant-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  color: var(--blue);
  position: absolute;
  left: 0;
  top: 4px;
}

.variant-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.variant-spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.variant-spec-table tr:last-child {
  border-bottom: none;
}

.variant-spec-table td {
  padding: 8px 0;
  font-size: 0.8rem;
}

.variant-spec-table td:first-child {
  color: var(--white-50);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 45%;
}

.variant-spec-table td:last-child {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}

/* ---------- BCI In-Development Card ---------- */
.bci-dev-card {
  background: var(--navy-800);
  border: 1px solid rgba(241, 90, 39, 0.25);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bci-dev-card .bci-dev-image {
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}

.bci-dev-card .bci-dev-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bci-dev-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.bci-dev-card p {
  color: var(--white-70);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.bci-dev-card .variant-badge {
  display: inline-block;
  margin-bottom: 20px;
}

/* ============================================
   Accessibility Widget
   ============================================ */

.a11y-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.a11y-toggle:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}

.a11y-panel {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 9989;
  width: 280px;
  background: var(--navy-800);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all 0.3s ease;
}

.a11y-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-10);
}

.a11y-panel-header h4 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

.a11y-panel-close {
  background: none;
  border: none;
  color: var(--white-50);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.a11y-panel-close:hover {
  color: var(--white);
}

.a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--white-05);
}

.a11y-option:last-child {
  border-bottom: none;
}

.a11y-option-label {
  font-size: 0.78rem;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 8px;
}

.a11y-option-label i {
  width: 18px;
  text-align: center;
  color: var(--blue);
  font-size: 0.75rem;
}

.a11y-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--blue-border);
  background: var(--navy-900);
  color: var(--white-70);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.a11y-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.a11y-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.a11y-size-value {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--white);
  min-width: 32px;
  text-align: center;
}

.a11y-reset {
  width: 100%;
  margin-top: 16px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--white-10);
  background: transparent;
  color: var(--white-50);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.a11y-reset:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* High Contrast Mode */
html.a11y-high-contrast body {
  background-color: #000;
}

html.a11y-high-contrast .navbar,
html.a11y-high-contrast .footer {
  background: #000;
}

html.a11y-high-contrast p,
html.a11y-high-contrast li,
html.a11y-high-contrast td,
html.a11y-high-contrast span {
  color: #fff !important;
}

html.a11y-high-contrast a {
  color: #ffff00 !important;
}

html.a11y-high-contrast h1,
html.a11y-high-contrast h2,
html.a11y-high-contrast h3,
html.a11y-high-contrast h4 {
  color: #fff !important;
}

/* Dyslexia-Friendly Font */
html.a11y-dyslexia body,
html.a11y-dyslexia p,
html.a11y-dyslexia li,
html.a11y-dyslexia td,
html.a11y-dyslexia span,
html.a11y-dyslexia a,
html.a11y-dyslexia input,
html.a11y-dyslexia textarea,
html.a11y-dyslexia label {
  font-family: 'Verdana', 'Tahoma', sans-serif !important;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}

/* Reduced Motion */
html.a11y-reduced-motion *,
html.a11y-reduced-motion *::before,
html.a11y-reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* Large Cursor */
html.a11y-large-cursor,
html.a11y-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='M4 2 L4 28 L10 22 L16 30 L20 28 L14 20 L22 20 Z' fill='%23fff' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") 4 2, auto !important;
}
