/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0b1d3a;
  --blue-800: #0f2a52;
  --blue-700: #14376b;
  --blue-600: #1a4a8a;
  --blue-500: #2563eb;
  --blue-400: #4f8df7;
  --blue-300: #93bbfd;
  --blue-200: #bdd5fe;
  --blue-100: #e8f0fe;
  --blue-50:  #f4f8ff;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white:    #ffffff;
  --accent:   #f59e0b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--transition); }
ul  { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { color: var(--blue-900); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-sub {
  max-width: 640px;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue-500);
  border: 2px solid var(--blue-500);
}
.btn-outline:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-900);
}
.btn-white:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-900);
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-logo.has-logo {
  font-size: 0;
  gap: 0;
}

.nav-logo.has-logo img {
  height: 64px;
}

.nav-logo span { color: var(--blue-500); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}

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

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

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

.nav-cta {
  margin-left: 12px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .chevron {
  width: 16px; height: 16px;
  stroke: currentColor;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.04));
}

/* Invisible bridge so hover doesn't break */
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-600);
}

.dropdown-menu a .dd-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu a .dd-icon svg {
  width: 16px; height: 16px;
  stroke: var(--blue-500);
}

.dropdown-menu a .dd-text .dd-title {
  display: block;
  font-weight: 600;
  color: var(--blue-900);
  font-size: 0.875rem;
}

.dropdown-menu a .dd-text .dd-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 1px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(170deg, var(--blue-50) 0%, var(--white) 60%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
}

.hero h1 { margin-bottom: 20px; }

.hero p {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11, 29, 58, 0.12);
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 0.9rem;
  text-align: center;
  padding: 40px;
}

.image-placeholder svg {
  width: 48px; height: 48px;
  stroke: var(--gray-300);
}

.hero-stat-bar {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--blue-900);
  font-weight: 800;
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== VIDEO HERO ===== */
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 29, 58, 0.82) 0%,
    rgba(15, 42, 82, 0.65) 50%,
    rgba(20, 55, 107, 0.5) 100%
  );
  z-index: 1;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 720px;
}

.video-hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.video-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.video-hero .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.video-hero .hero-stat-bar {
  background: none;
  border: none;
}

.video-hero .hero-stat strong {
  color: #fff;
}

.video-hero .hero-stat span {
  color: rgba(255, 255, 255, 0.7);
}

.btn-white {
  background: #fff;
  color: var(--blue-900);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}

.btn-white:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-alt { background: var(--gray-100); }
.section-dark {
  background: var(--blue-900);
  color: var(--gray-300);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark .section-label { color: var(--blue-300); }
.section-dark .section-sub { color: var(--gray-400); }

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--blue-200);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue-500);
}

.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 0; }

/* ===== SPLIT SECTIONS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.split-content .section-label { margin-bottom: 12px; }
.split-content h2 { margin-bottom: 16px; }
.split-content > p { color: var(--gray-500); margin-bottom: 24px; }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--gray-600);
}
.check-list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  stroke: var(--blue-500);
  margin-top: 2px;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
}

.stat-card .number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ===== SPEC TABLE ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.spec-table th,
.spec-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.spec-table thead {
  background: var(--blue-900);
  color: var(--white);
}

.spec-table th { font-weight: 600; font-size: 0.9rem; }

.spec-table tbody tr:nth-child(even) { background: var(--blue-50); }
.spec-table tbody tr:hover { background: var(--blue-100); }

.spec-table td { font-size: 0.95rem; }
.spec-table td:first-child { font-weight: 600; color: var(--blue-900); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-900) 100%);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: var(--blue-200); max-width: 500px; margin: 0 auto 32px; }
.cta-buttons   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PROCESS / TIMELINE ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--gray-200);
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-600);
  font-size: 0.9rem;
}

.testimonial-author .name { font-weight: 600; color: var(--blue-900); }
.testimonial-author .role { font-size: 0.85rem; color: var(--gray-500); }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}

.contact-info-card .icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--white);
}

.contact-info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p  { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
.contact-info-card a  { color: var(--blue-500); font-weight: 500; }
.contact-info-card a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .nav-logo img {
  height: 56px !important;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.9rem;
  color: var(--gray-400);
}
.footer ul a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--blue-500);
}

.footer-socials a svg {
  width: 18px; height: 18px;
  fill: var(--gray-400);
}

.footer-socials a:hover svg { fill: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 130px 0 60px;
  background: linear-gradient(170deg, var(--blue-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-header p {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--blue-100);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-600);
  font-size: 1.5rem;
}

.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--blue-500); font-size: 0.875rem; font-weight: 600; }
.team-card p { color: var(--gray-500); font-size: 0.9rem; margin-top: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .video-hero { min-height: 90vh; }
  .video-hero-content { padding: 120px 0 60px; text-align: center; }
  .video-hero-content p { margin-left: auto; margin-right: auto; }
  .video-hero .hero-buttons { justify-content: center; }
  .video-hero .hero-stat-bar { justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stat-bar { justify-content: center; }
  .hero-image { order: -1; }

  .split { grid-template-columns: 1fr; }
  .split-image { order: -1; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    min-width: auto;
  }
  .dropdown-menu::before { display: none; }
  .nav-dropdown:hover .dropdown-menu { transform: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .cta-banner { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .video-hero .hero-stat-bar { flex-direction: column; gap: 20px; align-items: center; }
  .video-hero .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stat-bar { flex-direction: column; gap: 20px; align-items: center; }
  .stats-row { grid-template-columns: 1fr; }
}
