/* =============================================
   CONSULTSAKSHAM V3.5 — SHARED DESIGN SYSTEM
   Navy + Electric Blue + Emerald Green + Silver/White
   Stripe design sense, Appinventiv content depth
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A2540;
  --navy-deep: #061B2E;
  --navy-light: #0F3058;

  --blue: #0080FF;
  --blue-bright: #00A3FF;
  --blue-deep: #0060CC;
  --blue-glow: rgba(0,128,255,0.1);

  --cyan: #00D4FF;

  --green: #10B981;
  --green-bright: #34D399;
  --green-deep: #059669;
  --green-glow: rgba(16,185,129,0.1);
  --teal: #0D9488;

  --silver: #94A3B8;
  --grey-50: #F8FAFC;
  --grey-100: #F1F5F9;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E1;
  --grey-400: #94A3B8;
  --grey-500: #64748B;
  --grey-600: #475569;
  --grey-700: #334155;

  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  --text-white-soft: rgba(255,255,255,0.82);

  --section-gap: 80px;
  --container: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(.19,1,.22,1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--bg-white);
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease), -webkit-backdrop-filter 0.4s var(--ease), top 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,255,255,0.5) inset;
}
.navbar.scrolled .nav-links a:not(.nav-cta) { color: var(--text-secondary); }
.navbar.scrolled .nav-links a:not(.nav-cta):hover { color: var(--text-primary); }
.navbar.scrolled .nav-cta { color: var(--text-white); }
.navbar.scrolled .logo-text { color: var(--text-primary); }
.navbar.scrolled .logo-text span { color: var(--blue); }
/* Keep mega-dropdown text light on scrolled navbar (dark dropdown on light nav) */
.navbar.scrolled .mega-dropdown { background: linear-gradient(165deg, rgba(10,28,52,0.98) 0%, rgba(8,22,42,0.99) 100%); }
.navbar.scrolled .nav-links .mega-dropdown-item,
.navbar.scrolled .mega-dropdown a.mega-dropdown-item { color: rgba(255,255,255,0.82); }
.navbar.scrolled .nav-links .mega-dropdown-item h4,
.navbar.scrolled .mega-dropdown a.mega-dropdown-item h4 { color: #fff; }
.navbar.scrolled .nav-links .mega-dropdown-item:hover,
.navbar.scrolled .mega-dropdown a.mega-dropdown-item:hover { color: #fff; }
.navbar.scrolled .nav-links .mega-dropdown-item p,
.navbar.scrolled .mega-dropdown a.mega-dropdown-item p { color: rgba(255,255,255,0.42); }
.navbar.scrolled .mega-dropdown-section-label { color: rgba(255,255,255,0.28); }
.navbar.scrolled .mega-dropdown-footer-text { color: rgba(255,255,255,0.38); }
.navbar.scrolled .mega-dropdown-footer-link { color: var(--green-bright); }
.nav-chevron { display: inline-block; vertical-align: middle; margin-left: 2px; opacity: 0.6; transition: transform 0.2s ease; }

.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Text-only logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-text {
  font-size: 1.25rem; font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
  transition: color 0.3s var(--ease);
}
.logo-text span { color: var(--green-bright); transition: color 0.3s var(--ease); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: var(--text-white);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 0.85rem;
  text-decoration: none; transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(0,128,255,0.25);
}
.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,128,255,0.35);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    #061B2E 0%, #0A2540 20%, #0D3B66 40%,
    #064E3B 55%, #0F3058 70%, #0060CC 85%, #0A2540 100%
  );
  background-size: 400% 400%;
  animation: heroShift 20s ease-in-out infinite;
}
@keyframes heroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 80%, rgba(16,185,129,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 20%, rgba(0,128,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 60%);
}

/* Animated grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(0,128,255,0.12); top: 10%; left: -5%; animation: orbFloat 14s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(16,185,129,0.1); bottom: 10%; right: -5%; animation: orbFloat 14s ease-in-out infinite -5s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(0,163,255,0.08); top: 40%; left: 50%; animation: orbFloat 14s ease-in-out infinite -9s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--green-bright);
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: var(--green-bright);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1;
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text-white); margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--green-bright) 50%, var(--blue-bright) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s ease-in-out infinite;
}
@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero p {
  font-size: 1.12rem; color: var(--text-white-soft);
  line-height: 1.7; margin-bottom: 36px; max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: var(--text-white); border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 20px rgba(0,128,255,0.3);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,128,255,0.35);
  filter: brightness(1.08);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: transparent;
  color: var(--text-white); border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.25s var(--ease);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.btn-blue {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--blue); color: var(--text-white);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 14px rgba(0,128,255,0.25);
}
.btn-blue:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,128,255,0.35); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--text-white); color: var(--navy);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.arrow-icon { width: 16px; height: 16px; }

/* Hero dashboard */
.hero-dashboard {
  background: var(--bg-white); border-radius: 16px; padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  color: var(--text-primary); position: relative;
}
.hero-dashboard::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
  background-size: 300% 300%;
  animation: borderGlow 4s ease-in-out infinite;
  z-index: -1; opacity: 0.4;
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-top h3 { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.dash-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; background: #ECFDF5; color: var(--green-deep); }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.dash-metric { padding: 14px; border-radius: 10px; background: var(--grey-50); transition: all 0.2s var(--ease); }
.dash-metric:hover { background: var(--grey-100); transform: translateY(-2px); }
.dash-metric-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.dash-metric-val { font-size: 1.4rem; font-weight: 800; }
.dash-metric-change { font-size: 0.68rem; font-weight: 700; margin-top: 2px; color: var(--green-deep); }
.dash-chart { background: var(--grey-50); border-radius: 10px; padding: 16px; height: 100px; }
.dash-chart svg { width: 100%; height: 100%; }

/* =============================================
   CLIENTS (clean text wordmarks)
   ============================================= */
.clients-section {
  background: var(--bg-white); padding: 56px 0;
  border-bottom: 1px solid var(--grey-200);
}
.clients-label {
  text-align: center; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); margin-bottom: 32px; font-weight: 600;
}
.clients-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 40px 48px; max-width: 1000px; margin: 0 auto;
}
.client-name {
  font-size: 1.1rem; font-weight: 700;
  color: var(--grey-300); letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.client-name:hover { color: var(--grey-500); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p { font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); }

.dark-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 25%, #0D3B66 50%, #064E3B 75%, var(--navy) 100%);
  background-size: 300% 300%;
  animation: heroShift 22s ease-in-out infinite;
  color: var(--text-white);
}
.dark-section .section-header p { color: var(--text-white-soft); }
.dark-section .section-header h2 { color: var(--text-white); }
.dark-section .section-eyebrow { color: var(--green-bright); }
@keyframes heroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.light-section { background: var(--bg-light); }
.white-section { background: var(--bg-white); }

/* Premium texture overlay */
.textured-bg {
  position: relative;
}
.textured-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   USP: What Sets ConsultSaksham Apart
   ============================================= */
.usp-section { padding: var(--section-gap) 0; }
.usp-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.usp-col { padding: 40px 36px; }
.usp-col-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid;
}
.usp-them { background: var(--grey-50); }
.usp-them .usp-col-label { color: var(--text-muted); border-color: var(--grey-200); }
.usp-them ul { list-style: none; }
.usp-them li {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
  padding: 10px 0 10px 24px; position: relative;
  border-bottom: 1px solid var(--grey-200);
}
.usp-them li:last-child { border-bottom: none; }
.usp-them li::before {
  content: '\2715'; position: absolute; left: 0; top: 10px;
  color: #ccc; font-size: 0.8rem;
}
.usp-us {
  background: var(--bg-white);
  border-left: 3px solid var(--green);
}
.usp-us .usp-col-label { color: var(--green-deep); border-color: var(--green); }
.usp-us ul { list-style: none; }
.usp-us li {
  font-size: 0.9rem; color: var(--text-primary); line-height: 1.6;
  padding: 10px 0 10px 24px; position: relative;
  border-bottom: 1px solid var(--grey-100);
}
.usp-us li:last-child { border-bottom: none; }
.usp-us li::before {
  content: '\2713'; position: absolute; left: 0; top: 10px;
  color: var(--green); font-weight: 700; font-size: 0.85rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { padding: var(--section-gap) 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-md); padding: 36px;
  transition: all 0.4s var(--ease-bounce);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--blue-glow);
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.85rem; font-weight: 600;
  color: var(--blue); text-decoration: none;
  transition: gap 0.2s var(--ease);
}
.service-link:hover { gap: 10px; }
.service-link svg,
.service-link .arrow-icon {
  transition: transform 0.3s var(--ease-bounce);
}
.service-link:hover svg,
.service-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* =============================================
   ECOSYSTEM: ConsultSaksham + Acropolis + EnginR
   ============================================= */
.ecosystem-section {
  padding: var(--section-gap) 0;
  position: relative; overflow: hidden;
}
.ecosystem-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--green), var(--blue), transparent);
  background-size: 200% 100%;
  animation: lineGlow 3s linear infinite;
}
@keyframes lineGlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.eco-bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,128,255,0.06) 0%, transparent 50%);
}
.eco-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; position: relative;
}
.eco-card {
  border-radius: 16px; padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.4s var(--ease);
  text-align: center;
}
.eco-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.eco-card.eco-primary {
  border-color: rgba(0,128,255,0.2);
  background: rgba(0,128,255,0.05);
}
.eco-badge {
  display: inline-block; padding: 4px 12px;
  border-radius: 6px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.badge-advisory { background: rgba(0,128,255,0.15); color: var(--blue-bright); }
.badge-engineering { background: rgba(16,185,129,0.15); color: var(--green-bright); }
.badge-product { background: rgba(0,212,255,0.15); color: var(--cyan); }
.eco-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.eco-card p { font-size: 0.88rem; color: var(--text-white-soft); line-height: 1.6; }
.eco-tag { font-size: 0.75rem; color: var(--silver); margin-top: 16px; font-weight: 500; }

/* =============================================
   STATS (dark cards)
   ============================================= */
.stats-section {
  position: relative; overflow: hidden;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; text-align: center; max-width: 900px; margin: 0 auto;
}
.stat-card {
  padding: 40px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: all 0.4s var(--ease-bounce);
}
.stat-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.stat-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: rgba(0,128,255,0.08);
}
.stat-icon-wrap svg { width: 22px; height: 22px; stroke: var(--blue-bright); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-number {
  font-size: clamp(1.8rem, 2.8vw, 3rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  word-break: break-word; overflow-wrap: break-word;
}
.stat-label { font-size: 0.9rem; color: var(--text-white-soft); font-weight: 500; line-height: 1.5; }

/* =============================================
   PROOF / Charts
   ============================================= */
.proof-section { padding: var(--section-gap) 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proof-card {
  background: var(--bg-white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-md); padding: 32px;
  transition: all 0.4s var(--ease);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.proof-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.proof-top h4 { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.proof-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.proof-big { font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.proof-sub { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; }
.proof-chart { height: 110px; position: relative; }

.bars { display: flex; align-items: flex-end; gap: 5px; height: 100%; }
.bars .bar { flex: 1; border-radius: 4px 4px 0 0; transition: all 0.3s var(--ease); }
.bars .bar:hover { opacity: 0.75; transform: scaleY(1.06); transform-origin: bottom; }

.donut-wrap { display: flex; align-items: center; justify-content: center; gap: 24px; height: 100%; }
.donut { width: 100px; height: 100px; position: relative; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--green); }
.donut-legend { font-size: 0.78rem; color: var(--text-muted); line-height: 2.2; }
.legend-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }

.sparkline { height: 100%; }
.sparkline svg { width: 100%; height: 100%; }

/* =============================================
   EBOOK LEAD MAGNET
   ============================================= */
.ebook-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--grey-50) 0%, #ECFDF5 50%, var(--grey-50) 100%);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.ebook-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 960px; margin: 0 auto;
}
.ebook-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 14px;
}
.ebook-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.ebook-highlights { list-style: none; margin-bottom: 8px; }
.ebook-highlights li {
  font-size: 0.88rem; color: var(--text-secondary);
  padding: 5px 0; display: flex; align-items: center; gap: 10px;
}
.ebook-highlights li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.ebook-form { background: var(--bg-white); border-radius: 16px; padding: 36px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); border: 1px solid var(--grey-200); }
.ebook-form h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--grey-200); border-radius: 8px;
  font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s var(--ease);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,128,255,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-400); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-download {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: var(--text-white); border: none; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-download:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,128,255,0.3); }
.form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* =============================================
   DUAL CTA: Free + Paid
   ============================================= */
.consult-section { padding: var(--section-gap) 0; }
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 960px; margin: 0 auto; }
.consult-card { border-radius: 16px; padding: 44px 36px; transition: all 0.4s var(--ease); }
.consult-card:hover { transform: translateY(-4px); }

.consult-free { background: var(--bg-white); border: 1px solid var(--grey-200); }
.consult-free:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: var(--blue); }
.consult-paid { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--text-white); border: 1px solid rgba(16,185,129,0.2); }
.consult-paid:hover { box-shadow: 0 20px 50px rgba(16,185,129,0.12); }
.consult-paid .consult-desc { color: var(--text-white-soft); }
.consult-paid .consult-features li { color: var(--text-white-soft); }
.consult-paid .consult-features li::before { color: var(--green-bright); }

.consult-tag {
  display: inline-block; padding: 4px 12px;
  border-radius: 6px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.tag-free { background: var(--blue-glow); color: var(--blue); }
.tag-paid { background: rgba(16,185,129,0.15); color: var(--green-bright); }

.consult-card h3 { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.consult-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.consult-features { list-style: none; margin-bottom: 28px; }
.consult-features li {
  font-size: 0.86rem; color: var(--text-secondary);
  padding: 5px 0; display: flex; align-items: flex-start; gap: 10px;
}
.consult-features li::before { content: '\2713'; color: var(--blue); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

/* =============================================
   FOUNDER
   ============================================= */
.founder-section { padding: var(--section-gap) 0; }
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.founder-img-wrap { position: relative; }
.founder-img-wrap img { width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 3/4; }
.founder-img-wrap::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  z-index: -1; opacity: 0.25;
}
.founder-badge-float {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--bg-white); border: 1px solid var(--grey-200);
  border-radius: 12px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.founder-badge-float .fb-num { font-size: 1.4rem; font-weight: 800; color: var(--blue); }
.founder-badge-float .fb-txt { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.3; }

.founder-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.3rem; font-weight: 700; line-height: 1.2;
  margin-bottom: 12px;
}
.founder-role { font-size: 1rem; color: var(--blue); font-weight: 600; margin-bottom: 20px; }
.founder-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }

.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.f-stat {
  padding: 16px; border-radius: 10px;
  border: 1px solid var(--grey-200); background: var(--bg-light);
  transition: all 0.2s var(--ease);
}
.f-stat:hover { border-color: rgba(0,128,255,0.2); background: rgba(0,128,255,0.03); }
.f-stat-num { font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; color: var(--blue); }
.f-stat-label { font-size: 0.78rem; color: var(--text-muted); }

.founder-sig {
  margin-top: 32px; display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--grey-200);
}
.founder-sig img {
  height: 48px; mix-blend-mode: multiply;
  filter: contrast(1.3) brightness(0.85); opacity: 1;
}
.sig-text { font-size: 0.85rem; color: var(--text-secondary); }
.sig-text strong { display: block; color: var(--text-primary); font-weight: 700; }

/* =============================================
   PROCESS (dark)
   ============================================= */
.process-section { padding: var(--section-gap) 0; position: relative; overflow: hidden; }
.process-bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,128,255,0.06) 0%, transparent 50%);
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 44px; left: 14%; right: 14%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
  background-size: 200% 100%;
  animation: lineGlow 4s linear infinite;
  opacity: 0.2;
}
.process-step { text-align: center; padding: 20px 16px; border-radius: 12px; position: relative; transition: all 0.3s var(--ease); }
.process-step:hover { background: rgba(255,255,255,0.04); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  margin: 0 auto 18px; position: relative; z-index: 2;
  background: var(--navy); color: var(--blue-bright);
  border: 2px solid rgba(0,128,255,0.25);
  box-shadow: 0 0 0 6px var(--navy);
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-white-soft); line-height: 1.5; }

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-section { padding: var(--section-gap) 0; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  padding: 28px; border-radius: 12px;
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--blue);
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--grey-50) 100%);
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.industry-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,255,0.04) 0%, transparent 70%);
  transform: translate(30%, -30%);
  transition: all 0.4s var(--ease);
}
.industry-card:hover {
  border-left-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, var(--bg-white) 0%, rgba(0,128,255,0.02) 100%);
}
.industry-card:hover::after {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,128,255,0.06) 0%, transparent 70%);
}
.ind-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(0,128,255,0.08) 0%, rgba(16,185,129,0.06) 100%);
}
.ind-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.industry-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; position: relative; }
.industry-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; position: relative; }
.industries-grid-sm {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ind-card-sm {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 20px; border-radius: var(--radius-md);
  border: 1px solid var(--grey-200); background: var(--bg-white);
  text-decoration: none; text-align: left;
  transition: all 0.3s var(--ease);
  position: relative;
  border-left: 3px solid var(--blue);
  background: linear-gradient(135deg, rgba(0,128,255,0.02) 0%, rgba(255,255,255,1) 100%);
}
.ind-card-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: rgba(0,128,255,0.06);
  margin-top: 2px;
}
.ind-card-sm:hover {
  border-color: rgba(0,128,255,0.2); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--green);
  background: linear-gradient(135deg, rgba(0,128,255,0.04) 0%, rgba(255,255,255,1) 100%);
}
.ind-card-sm h4 {
  font-size: 0.88rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 6px;
}
.ind-card-sm p {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
}
.ind-card-sm::after {
  content: '\2192';
  position: absolute; top: 50%; right: 16px;
  transform: translateY(-50%);
  color: var(--blue); font-size: 1rem; opacity: 0;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.ind-card-sm:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(2px);
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: transparent;
  color: var(--blue); border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--blue);
  cursor: pointer; transition: all 0.25s var(--ease);
}
.btn-outline-dark:hover {
  background: var(--blue); color: var(--text-white);
}

/* =============================================
   CTA (gradient dark)
   ============================================= */
.cta-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 25%, #0D3B66 50%, #064E3B 75%, var(--navy) 100%);
  background-size: 300% 300%;
  animation: heroShift 18s ease-in-out infinite;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,128,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(16,185,129,0.08) 0%, transparent 50%);
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridDrift 30s linear infinite;
}
.cta-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-white);
  margin-bottom: 16px; position: relative;
}
.cta-section p { font-size: 1.05rem; color: var(--text-white-soft); max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-section .btn-primary { position: relative; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deep); padding: 0 0 32px;
  color: var(--text-white-soft);
  border-top: none;
}
.footer-inner {
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-white-soft); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-white-soft); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--text-white); }
.footer .logo-text { color: rgba(255,255,255,0.8); }
.footer .logo-text span { color: var(--green-bright); }

/* =============================================
   EXIT INTENT POPUP
   ============================================= */
.exit-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,37,64,0.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.exit-overlay.active { display: flex; opacity: 1; }
.exit-modal {
  background: var(--bg-white); border-radius: 20px;
  padding: 48px; max-width: 520px; width: 90%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalSlide 0.4s var(--ease);
}
.exit-modal-wide {
  max-width: 880px; padding: 0; overflow: hidden;
}
@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.exit-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.06);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: rgba(255,255,255,0.45);
  transition: all 0.2s var(--ease); z-index: 2;
}
.exit-close:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.12); }
.exit-dismiss-link {
  display: block; text-align: center; margin-top: 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  cursor: pointer; background: none; border: none;
  font-family: 'Inter', sans-serif; transition: color 0.2s;
}
.exit-dismiss-link:hover { color: rgba(255,255,255,0.5); }
.exit-split {
  display: grid; grid-template-columns: 1fr 1fr;
}
.exit-left {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 40%, #0D3B66 100%);
  padding: 40px 36px; color: var(--text-white);
  display: flex; flex-direction: column; justify-content: center;
}
.exit-left h2 {
  font-family: 'Inter', sans-serif; font-size: 1.6rem;
  font-weight: 700; margin-bottom: 4px; color: var(--text-white);
}
.exit-left-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.exit-testimonial {
  background: rgba(255,255,255,0.06); border-radius: 12px;
  padding: 20px; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.exit-quote-mark {
  font-family: 'Inter', sans-serif; font-size: 2.4rem;
  color: var(--blue-bright); line-height: 1; margin-bottom: 4px;
}
.exit-quote-text {
  font-size: 0.84rem; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 12px;
}
.exit-quote-author strong {
  display: block; font-size: 0.82rem; color: var(--text-white);
}
.exit-quote-author span {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}
.exit-trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; text-align: center;
}
.exit-trust-item strong {
  display: block; font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue-bright), var(--green-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exit-trust-item span {
  font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.05em;
}
.exit-right {
  padding: 40px 36px; display: flex; flex-direction: column; justify-content: center;
}
.exit-right h3 {
  font-family: 'Inter', sans-serif; font-size: 1.3rem;
  font-weight: 700; margin-bottom: 6px; color: var(--text-primary);
}
.exit-right-sub {
  font-size: 0.84rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5;
}
.exit-contact-form { display: flex; flex-direction: column; gap: 12px; }
.exit-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exit-contact-form input,
.exit-contact-form textarea {
  padding: 12px 16px; border: 1px solid var(--grey-200); border-radius: 8px;
  font-size: 0.88rem; font-family: inherit; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.exit-contact-form input:focus,
.exit-contact-form textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,128,255,0.1);
}
.exit-contact-form textarea { resize: vertical; min-height: 72px; }
.exit-contact-form button {
  padding: 13px 24px; width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--text-white); border: none; border-radius: 8px;
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: all 0.2s var(--ease);
}
.exit-contact-form button:hover { filter: brightness(1.1); transform: translateY(-1px); }
.exit-form-note {
  font-size: 0.75rem; color: var(--text-muted); text-align: center;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-bounce), transform 0.8s var(--ease-bounce); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HAMBURGER MENU
   ============================================= */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-white); border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.nav-hamburger span::before,
.nav-hamburger span::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; background: inherit;
  border-radius: 2px; transition: all 0.3s var(--ease);
}
.nav-hamburger span::before { top: -7px; }
.nav-hamburger span::after { top: 7px; }

.navbar.scrolled .nav-hamburger span { background: var(--text-primary); }

/* Hamburger active state (X) */
.nav-hamburger.active span { background: transparent; }
.nav-hamburger.active span::before { top: 0; transform: rotate(45deg); background: var(--text-white); }
.nav-hamburger.active span::after { top: 0; transform: rotate(-45deg); background: var(--text-white); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0D3B66 100%);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
@media (max-width: 768px) {
  .mobile-menu { display: flex; }
}
.mobile-menu.active { opacity: 1; visibility: visible; display: flex; }
.mobile-menu a {
  color: var(--text-white); text-decoration: none;
  font-size: 1.4rem; font-weight: 600;
  padding: 16px 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.2s;
}
.mobile-menu.active a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu a:hover { color: var(--green-bright); }
.mobile-menu .mobile-cta {
  margin-top: 24px; padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,128,255,0.3);
}
/* Stagger animation for mobile menu items */
.mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.4s; }

/* =============================================
   NDA TRUST CARDS
   ============================================= */
.trust-section {
  background: var(--bg-white); padding: 56px 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust-label {
  text-align: center; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); margin-bottom: 32px; font-weight: 600;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1000px; margin: 0 auto;
}
.trust-card {
  padding: 20px; border-radius: 12px;
  border: 1px solid var(--grey-200); background: var(--grey-50);
  transition: all 0.3s var(--ease); position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.trust-card:hover { border-color: rgba(0,128,255,0.15); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.trust-card:hover::before { opacity: 1; }
.trust-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.trust-nda-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
  padding: 2px 8px; border-radius: 4px;
  background: var(--grey-100); border: 1px solid var(--grey-200);
}
.trust-nda-badge svg { width: 10px; height: 10px; stroke: var(--text-muted); fill: none; stroke-width: 2; }
.trust-type {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue); opacity: 0.8;
}
.trust-card h4 {
  font-size: 0.88rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px; line-height: 1.3;
}
.trust-card p {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}
.trust-metric {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--grey-200);
  font-size: 0.72rem; color: var(--green-deep); font-weight: 700;
}

/* =============================================
   PAGE HEADER (for internal pages)
   ============================================= */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-h) + 80px) 0 72px;
  position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #061B2E 0%, #0A2540 40%, #0D3B66 70%, #0A2540 100%);
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 80%, rgba(16,185,129,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 20%, rgba(0,128,255,0.1) 0%, transparent 50%);
}
.page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-white-soft);
  margin-bottom: 20px;
}
.page-header .breadcrumb a {
  color: var(--text-white-soft); text-decoration: none;
  transition: color 0.2s var(--ease);
}
.page-header .breadcrumb a:hover { color: var(--text-white); }
.page-header .breadcrumb .sep { opacity: 0.4; }
.page-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 700;
  color: var(--text-white); line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1.05rem; color: var(--text-white-soft);
  line-height: 1.7; max-width: 640px;
}

/* =============================================
   INTERNAL PAGE CONTENT
   ============================================= */
.page-content { padding: var(--section-gap) 0; }
.page-content-narrow { max-width: 800px; margin: 0 auto; }
.page-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 16px;
}
.page-content h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 12px; margin-top: 32px;
}
.page-content p {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 16px;
}

/* Feature grid (used on advisory, about, industry pages) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }
.feature-card {
  padding: 32px; border-radius: var(--radius-md);
  border: 1px solid var(--grey-200); background: var(--bg-white);
  transition: all 0.4s var(--ease-bounce);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--blue-glow);
}
.feature-card .icon-wrap svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; margin-top: 0; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }

/* Two-column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { margin-bottom: 14px; }
.two-col-visual { position: relative; }
.two-col-visual img { width: 100%; border-radius: 16px; object-fit: cover; }

/* Asset placeholder slot */
.asset-slot {
  width: 100%; border-radius: 16px;
  background: linear-gradient(135deg, var(--grey-50) 0%, var(--grey-100) 100%);
  border: 2px dashed var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--text-muted); font-size: 0.85rem;
  min-height: 280px; padding: 32px;
  transition: all 0.3s var(--ease);
}
.asset-slot:hover { border-color: var(--blue); background: rgba(0,128,255,0.02); }
.asset-slot svg { width: 40px; height: 40px; stroke: var(--grey-300); fill: none; stroke-width: 1.5; }
.asset-slot-dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-white-soft);
}
.asset-slot-dark svg { stroke: rgba(255,255,255,0.2); }

/* Testimonial cards (for results page) */
.testimonial-card {
  padding: 32px; border-radius: 14px;
  border: 1px solid var(--grey-200); background: var(--bg-white);
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.testimonial-quote { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-glow); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blue); font-size: 1rem;
}
.testimonial-info h4 { font-size: 0.88rem; font-weight: 700; }
.testimonial-info p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }

/* Timeline (for about page) */
.timeline { position: relative; padding-left: 32px; margin: 48px 0; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  opacity: 0.3;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -37px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--blue);
  border: 3px solid var(--bg-white);
}
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.timeline-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; margin-top: 0; }
.timeline-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }

/* Cookie Consent */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9998; padding: 16px 0;
  background: rgba(10,37,64,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cookie-bar p { color: var(--text-white-soft); font-size: 0.85rem; line-height: 1.5; flex: 1; }
.cookie-bar p a { color: var(--blue-bright); text-decoration: underline; }
.cookie-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn-sm {
  padding: 8px 20px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s var(--ease);
}
.cookie-accept {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--text-white);
}
.cookie-accept:hover { filter: brightness(1.1); }
.cookie-decline {
  background: transparent; color: var(--text-white-soft);
  border: 1px solid rgba(255,255,255,0.15) !important;
}
.cookie-decline:hover { background: rgba(255,255,255,0.05); }

/* Bain-style Interactive Selector */
.selector-section {
  padding: 64px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--grey-200);
}
.selector-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.selector-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; font-weight: 700;
  margin-bottom: 8px;
}
.selector-inner > p {
  font-size: 0.95rem; color: var(--text-secondary);
  margin-bottom: 36px;
}
.selector-step { display: none; }
.selector-step.active { display: block; }
.selector-question {
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 20px; color: var(--text-primary);
}
.selector-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.selector-option {
  padding: 20px; border-radius: 12px;
  border: 1px solid var(--grey-200); background: var(--bg-white);
  cursor: pointer; transition: all 0.3s var(--ease);
  text-align: left;
}
.selector-option:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.selector-option.selected { border-color: var(--blue); background: rgba(0,128,255,0.04); box-shadow: 0 0 0 3px rgba(0,128,255,0.1); }
.selector-option h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.selector-option p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0; }
.selector-result {
  padding: 32px; border-radius: 16px;
  border: 1px solid rgba(0,128,255,0.15);
  background: rgba(0,128,255,0.03);
  text-align: left;
}
.selector-result h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 12px; margin-top: 0;
}
.selector-result p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.selector-other-input {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--grey-200); border-radius: 8px;
  font-size: 0.9rem; font-family: inherit; outline: none;
  margin-top: 12px;
  transition: border-color 0.2s var(--ease);
}
.selector-other-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,128,255,0.1); }

/* Contact form styles */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { background: var(--bg-white); border-radius: 16px; padding: 40px; border: 1px solid var(--grey-200); box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.contact-info-card {
  padding: 28px; border-radius: 14px;
  border: 1px solid var(--grey-200); background: var(--grey-50);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.contact-info-card:hover { border-color: rgba(0,128,255,0.15); }
.contact-info-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0; }

/* Coming soon page */
.coming-soon-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--navy); position: relative; overflow: hidden;
}
.coming-soon-content {
  text-align: center; position: relative; z-index: 2;
  max-width: 560px; padding: 40px 24px;
}
.coming-soon-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 16px;
}
.coming-soon-content p {
  font-size: 1.05rem; color: var(--text-white-soft);
  line-height: 1.7; margin-bottom: 36px;
}

/* Mega dropdown nav (Appinventiv-style) */
.nav-dropdown-trigger { position: relative; cursor: pointer; }
.nav-dropdown-trigger::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px; vertical-align: middle;
  transition: transform 0.2s var(--ease);
}
.nav-dropdown-trigger:hover::after { transform: rotate(180deg); }
.mega-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--bg-white); border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--grey-200);
  padding: 28px 32px; min-width: 480px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
  z-index: 1001;
}
.nav-dropdown-trigger:hover .mega-dropdown { opacity: 1; visibility: visible; }
.mega-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-dropdown-item {
  padding: 12px 16px; border-radius: 10px;
  text-decoration: none; color: var(--text-primary);
  transition: background 0.2s var(--ease);
  display: block;
}
.mega-dropdown-item:hover { background: var(--grey-50); }
.mega-dropdown-item h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; color: var(--text-primary); }
.mega-dropdown-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 200px; height: 200px; }
  .hero-orb-3 { width: 150px; height: 150px; }
  .usp-compare { grid-template-columns: 1fr; }
  .usp-us { border-left: none; border-top: 3px solid var(--green); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-img-wrap { max-width: 400px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid-sm { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .consult-grid { grid-template-columns: 1fr; }
  .ebook-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mega-dropdown { min-width: 360px; }
  .page-header h1 { font-size: 2.2rem; }
  .selector-options { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-gap: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-orb-1 { width: 200px; height: 200px; }
  .hero-orb-2 { width: 150px; height: 150px; }
  .hero-orb-3 { width: 100px; height: 100px; }
  .services-grid, .proof-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid-sm { grid-template-columns: 1fr 1fr; }
  .cta-section h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-header h2 { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .exit-split { grid-template-columns: 1fr; }
  .exit-left { padding: 28px 24px; border-radius: 20px 20px 0 0; }
  .exit-right { padding: 28px 24px; border-radius: 0 0 20px 20px; }
  .exit-modal-wide { max-width: 480px; max-height: 90vh; overflow-y: auto; border-radius: 20px; }
  .exit-close { background: rgba(255,255,255,0.15); color: var(--text-white); }
  .feature-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.8rem; }
  .page-header { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .cookie-bar-inner { flex-direction: column; text-align: center; }
  .mega-dropdown { min-width: auto; max-width: calc(100vw - 32px); }
  .mega-dropdown-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-orb-1, .hero-orb-2, .hero-orb-3 { opacity: 0.4; }
  .hero-orb-1 { width: 140px; height: 140px; }
  .hero-orb-2 { width: 100px; height: 100px; }
  .hero-orb-3 { width: 80px; height: 80px; }
  .stats-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
  .founder-stats { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.7rem; }
  .consult-card { padding: 32px 24px; }
  .page-header h1 { font-size: 1.6rem; }
  .coming-soon-content h1 { font-size: 2rem; }
  .exit-left { padding: 24px 20px; }
  .exit-right { padding: 24px 20px; }
  .exit-form-row { grid-template-columns: 1fr; }
  .exit-trust-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .exit-left h2 { font-size: 1.3rem; }
  .footer-grid { gap: 24px; }
  .industries-grid-sm { grid-template-columns: 1fr; }
  .ind-card-sm { padding: 18px 14px; }
  .ind-card-sm h4 { font-size: 0.82rem; }
  .ind-card-sm p { font-size: 0.72rem; }
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 36px; z-index: 1001;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  display: flex; align-items: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  border-bottom: none; margin-bottom: 0;
}
.announcement-bar.dismissed { transform: translateY(-100%); opacity: 0; }
.announcement-inner {
  display: flex; align-items: center; width: 100%; position: relative;
}
.announcement-track {
  display: flex; align-items: center;
  animation: announcementScroll 40s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-track:hover { animation-play-state: paused; }
@keyframes announcementScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px;
  font-size: 0.78rem; color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.announcement-item strong { color: var(--text-white); }
.announcement-item a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.announcement-item a:hover { text-decoration: underline; }
.announcement-dot {
  color: var(--cyan); font-size: 0.5rem; opacity: 0.5;
}
.announcement-close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.5);
  font-size: 1rem; cursor: pointer; padding: 2px 8px; border-radius: 4px;
  transition: all 0.2s; z-index: 2;
}
.announcement-close:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }

/* =============================================
   TRUST BAR (all pages)
   ============================================= */
.trust-bar {
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-bar-stat {
  font-size: 0.82rem; color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.trust-bar-stat strong {
  color: var(--navy); font-weight: 700; font-size: 0.92rem;
  margin-right: 4px;
}
.trust-bar-divider {
  width: 1px; height: 16px;
  background: var(--grey-300);
}

/* =============================================
   FOOTER ENHANCEMENTS
   ============================================= */
.footer-stats-bar {
  display: flex; justify-content: center; gap: 64px;
  padding: 48px 0 44px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-stat {
  text-align: center; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-stat strong {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: var(--text-white); margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-stat span {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500;
}
.footer-grid-5 {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
}
.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--text-white);
}
.footer-offices li {
  font-size: 0.8rem; line-height: 1.5;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-offices strong {
  color: rgba(255,255,255,0.8); font-weight: 600;
  font-size: 0.78rem;
}
.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 0.8rem; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   TESTIMONIAL CAROUSEL
   ============================================= */
.testimonial-carousel {
  position: relative; overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.testimonial-track {
  display: flex; transition: transform 0.5s var(--ease);
}
.testimonial-slide {
  flex: 0 0 100%; min-width: 100%;
  padding: 0 20px;
}
.testimonial-slide .glass-card {
  text-align: center; padding: 48px 40px;
}
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem; font-style: italic;
  line-height: 1.7; color: var(--text-white);
  margin-bottom: 24px;
  padding-top: 32px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C'; position: absolute;
  top: -48px; left: 50%; transform: translateX(-50%);
  font-size: 4rem; color: rgba(0,212,255,0.3);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.testimonial-author {
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-white);
}
.testimonial-role {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.testimonial-service-tag {
  display: inline-block; margin-top: 12px;
  padding: 4px 12px; border-radius: 4px;
  background: rgba(0,212,255,0.15); color: var(--cyan);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.carousel-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none;
  cursor: pointer; padding: 0;
  transition: all 0.3s var(--ease);
}
.carousel-dot.active {
  background: var(--cyan); width: 24px;
  border-radius: 4px;
}
.carousel-arrows {
  position: absolute; top: 50%; left: 0; right: 0;
  display: flex; justify-content: space-between;
  transform: translateY(-50%); pointer-events: none;
  padding: 0 0;
}
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: rgba(255,255,255,0.7); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: all 0.2s var(--ease);
}
.carousel-arrow:hover {
  background: rgba(255,255,255,0.2); color: var(--text-white);
}

/* =============================================
   CLIENT LOGO MARQUEE
   ============================================= */
.logo-marquee-section {
  padding: 40px 0;
  background: var(--bg-white);
}
.logo-marquee-label {
  text-align: center; font-size: 0.95rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-secondary);
  margin-bottom: 24px;
}
.logo-marquee-wrapper {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.logo-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marquee-item {
  flex-shrink: 0;
  font-size: 0.85rem; font-weight: 600;
  color: var(--grey-400);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.logo-marquee-item:hover { opacity: 1; }
.logo-marquee-item svg { width: 24px; height: 24px; }

/* =============================================
   COUNTER ANIMATION
   ============================================= */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* =============================================
   CONTACT PAGE ENHANCEMENTS
   ============================================= */
.contact-process-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.contact-process-step {
  text-align: center; padding: 24px 16px;
  background: var(--grey-50); border-radius: 12px;
  border: 1px solid var(--grey-200);
  position: relative;
  transition: all 0.3s var(--ease);
}
.contact-process-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.contact-process-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: var(--text-white);
  font-size: 0.8rem; font-weight: 700;
  margin-bottom: 12px;
}
.contact-process-step h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.contact-process-step p {
  font-size: 0.8rem; color: var(--text-secondary);
  line-height: 1.5;
}
.contact-testimonial {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px; padding: 28px;
  margin-top: 24px; color: var(--text-white);
}
.contact-testimonial blockquote {
  font-style: italic; font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}
.contact-testimonial cite {
  font-style: normal; font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.contact-testimonial cite strong {
  color: rgba(255,255,255,0.85); display: block;
}

/* FAQ Accordion for Advisory Pages */
.advisory-faq { margin-top: 80px; }
.advisory-faq h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  text-align: center; margin-bottom: 40px;
  color: var(--navy);
}

/* =============================================
   SITEWIDE FAQ / DETAILS ACCORDION
   ============================================= */
details {
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
details[open] {
  border-color: rgba(0,128,255,0.15);
  box-shadow: 0 2px 8px rgba(0,128,255,0.06);
}
details summary {
  padding: 18px 24px;
  font-weight: 600; font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  transition: background 0.2s;
}
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; content: ''; }
details summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--blue); transition: transform 0.3s ease;
  flex-shrink: 0; margin-left: 16px;
}
details[open] summary::after {
  content: '\2212'; /* minus sign */
  transform: rotate(180deg);
}
details summary:hover { background: rgba(0,128,255,0.03); }
details > div,
details > p {
  padding: 0 24px 18px;
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-secondary);
}

/* Dark section FAQ variant */
.dark-section details {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.dark-section details[open] {
  border-color: rgba(0,128,255,0.2);
  box-shadow: 0 2px 8px rgba(0,128,255,0.08);
}
.dark-section details summary { color: var(--text-white); }
.dark-section details summary::after { color: var(--green-bright); }
.dark-section details summary:hover { background: rgba(255,255,255,0.04); }
.dark-section details > div,
.dark-section details > p { color: rgba(255,255,255,0.6); }

/* =============================================
   INSIGHTS PAGE ENHANCEMENTS
   ============================================= */
.insights-search-bar {
  max-width: 600px; margin: 0 auto 40px;
  position: relative;
}
.insights-search-bar input {
  width: 100%; padding: 14px 20px 14px 48px;
  border: 2px solid var(--grey-200);
  border-radius: 12px; font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--bg-white); color: var(--text-primary);
  transition: all 0.2s var(--ease);
}
.insights-search-bar input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,128,255,0.1);
}
.insights-search-bar input::placeholder {
  color: var(--grey-400);
}
.insights-search-icon {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--grey-400);
}
.insights-filters {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.insights-filter-btn {
  padding: 8px 18px; border-radius: 20px;
  border: 1px solid var(--grey-200);
  background: var(--bg-white); color: var(--text-secondary);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s var(--ease);
  font-family: 'Inter', sans-serif;
}
.insights-filter-btn:hover,
.insights-filter-btn.active {
  background: var(--blue); color: var(--text-white);
  border-color: var(--blue);
}

/* Responsive additions for new components */
@media (max-width: 1024px) {
  .footer-grid-5 { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .footer-grid-5 > div:nth-child(4),
  .footer-grid-5 > div:nth-child(5) { grid-column: span 1; }
  .contact-process-strip { gap: 16px; }
}
@media (max-width: 768px) {
  .announcement-item { font-size: 0.72rem; padding: 0 24px; }
  .trust-bar-inner { gap: 16px; }
  .trust-bar-stat { font-size: 0.75rem; }
  .trust-bar-divider { display: none; }
  .footer-grid-5 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-stats-bar { gap: 32px; flex-wrap: wrap; }
  .footer-stat strong { font-size: 1.8rem; }
  .contact-process-strip { grid-template-columns: 1fr; gap: 12px; }
  .carousel-arrows { display: none; }
  .testimonial-quote { font-size: 1rem; }
  .testimonial-slide .glass-card { padding: 32px 24px; }
  .insights-filters { gap: 6px; }
  .insights-filter-btn { padding: 6px 14px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .announcement-track { animation-duration: 30s; }
  .announcement-item { font-size: 0.68rem; padding: 0 20px; }
  .footer-grid-5 { grid-template-columns: 1fr; gap: 24px; }
  .footer-stats-bar { gap: 20px; justify-content: space-around; }
  .footer-stat strong { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .trust-bar-inner { gap: 12px; justify-content: space-around; }
}

/* =============================================
   PATCH v3.6 — STRUCTURAL & UTILITY FIXES
   Fixes page-header, utility classes, dropdown
   ============================================= */

/* ------------------------------------------
   PAGE HEADER — FULL REWRITE (both patterns)
   Pattern A: <div class="page-header">
                 <div class="page-header-bg"></div>
                 <div class="page-header-grid"></div>
                 <div class="container">…</div>
               </div>
   Pattern B: <section class="page-header page-header-bg">
                 <div class="container">
                   <div class="page-header-grid">…content…</div>
                 </div>
               </section>
   ------------------------------------------ */

/* Reset the base page-header — now accounts for announcement bar (36px) */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: calc(var(--nav-h) + 96px) 0 72px;
  /* 96 = 36px announcement bar + 60px breathing room */
}

/* Pattern A: empty decorative children */
.page-header > .page-header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #061B2E 0%, #0A2540 40%, #0D3B66 70%, #0A2540 100%);
  z-index: 0;
}
.page-header > .page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 80%, rgba(16,185,129,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 15%, rgba(0,128,255,0.12) 0%, transparent 50%);
}
.page-header > .page-header-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Container inside page-header sits above decorative layers */
.page-header > .container,
.page-header .container { position: relative; z-index: 2; }

/* Pattern B: when page-header-bg is on the section itself */
.page-header.page-header-bg {
  background: linear-gradient(135deg, #061B2E 0%, #0A2540 40%, #0D3B66 70%, #0A2540 100%);
}
.page-header.page-header-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 25% 80%, rgba(16,185,129,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 15%, rgba(0,128,255,0.12) 0%, transparent 50%);
}
.page-header.page-header-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Pattern B: page-header-grid used as content wrapper — strip absolute positioning */
.page-header .container > .page-header-grid {
  position: static !important;
  background: none !important;
  z-index: auto !important;
}

/* Page header text elements (both class names supported) */
.page-header h1,
.page-header .page-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--text-white); line-height: 1.15;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.page-header p,
.page-header .page-subtitle {
  font-size: 1.05rem; color: var(--text-white-soft);
  line-height: 1.7; max-width: 640px; margin-bottom: 0;
}
.page-header .breadcrumb { margin-bottom: 24px; }
/* Unified breadcrumb separator class names */
.breadcrumb-sep, .breadcrumb .sep { opacity: 0.4; }

/* ------------------------------------------
   UTILITY CLASSES — SPACING
   ------------------------------------------ */
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-120 { padding-top: 80px; padding-bottom: 80px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pt-120 { padding-top: 120px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }
.mb-80 { margin-bottom: 80px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ------------------------------------------
   UTILITY CLASSES — TYPOGRAPHY
   ------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-title,
.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-title.white,
.section-heading.white { color: var(--text-white); }

.section-label,
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
}
.section-label.green,
.section-eyebrow.green { color: var(--green); }

.section-header { margin-bottom: 56px; }
.section-header p {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 600px; margin: 8px auto 0; line-height: 1.7;
}

.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.85rem; }
.text-base { font-size: 0.95rem; line-height: 1.7; }
.text-lg   { font-size: 1.05rem; line-height: 1.7; }
.text-xl   { font-size: 1.2rem;  line-height: 1.5; }
.text-2xl  { font-size: 1.5rem;  line-height: 1.35; }
.text-3xl  { font-size: 1.875rem; line-height: 1.25; }

.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }

.text-white      { color: var(--text-white); }
.text-white-soft { color: var(--text-white-soft); }
.text-primary    { color: var(--text-primary); }
.text-secondary  { color: var(--text-secondary); }
.text-muted      { color: var(--text-muted); }
.text-blue       { color: var(--blue); }
.text-green      { color: var(--green); }
.text-navy       { color: var(--navy); }
.text-gray-600   { color: var(--grey-600); }
.text-gray-500   { color: var(--grey-500); }

/* ------------------------------------------
   UTILITY CLASSES — LAYOUT
   ------------------------------------------ */
.white-section  { background: var(--bg-white); }
.light-section  { background: var(--bg-light); }
/* .dark-section gradient is defined at line 347 with heroShift animation — do NOT override here */
.border-top     { border-top: 1px solid var(--grey-200); }
.border-bottom  { border-bottom: 1px solid var(--grey-200); }

/* Two-col grid children */
.two-col-left,
.two-col-right { min-width: 0; }

/* Flex helpers */
.flex       { display: flex; }
.flex-col   { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap  { flex-wrap: wrap; }

/* ------------------------------------------
   MEGA-DROPDOWN — PREMIUM REDESIGN v2
   Glass-morphism panel, gradient icons, refined hovers,
   layered shadows, prominent CTA strip
   ------------------------------------------ */

/* Remove old chevron-via-::after (conflicts with inline SVG chevron in HTML) */
.nav-dropdown-trigger::after { display: none; }

/* Chevron rotation on hover */
.nav-dropdown-trigger:hover .nav-chevron,
.nav-dropdown-trigger.open .nav-chevron { transform: rotate(180deg); opacity: 1; }
.nav-chevron { transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s; }

/* Active state for nav trigger when dropdown is open */
.nav-dropdown-trigger:hover > a,
.nav-dropdown-trigger.open > a { color: #fff; }

/* Dropdown panel — layered glass with depth */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: linear-gradient(165deg, rgba(10, 28, 52, 0.97) 0%, rgba(8, 22, 42, 0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.24),
    0 32px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 6px;
  min-width: 520px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s,
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

/* Invisible bridge above panel for mouse travel */
.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
  background: transparent;
}

/* Subtle top-edge glow accent */
.mega-dropdown::after {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 128, 255, 0.3) 30%, rgba(16, 185, 129, 0.3) 70%, transparent 100%);
  border-radius: 1px;
}

.nav-dropdown-trigger:hover .mega-dropdown,
.nav-dropdown-trigger.open .mega-dropdown {
  opacity: 1; visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Grid inside dropdown */
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px 6px;
}
.mega-dropdown-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Each link item — refined hover with left-edge accent */
.mega-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.2s ease, color 0.2s, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* Hover glow background */
.mega-dropdown-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.08) 0%, rgba(16, 185, 129, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mega-dropdown-item:hover::before { opacity: 1; }

.mega-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(2px);
}

/* Focus-visible for keyboard nav */
.mega-dropdown-item:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: -2px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Icon container — gradient background with glow on hover */
.mdi-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright);
  transition: color 0.22s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
  position: relative;
  z-index: 1;
}
.mdi-icon svg { width: 18px; height: 18px; }

.mega-dropdown-item:hover .mdi-icon {
  color: var(--green-bright);
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.18) 0%, rgba(16, 185, 129, 0.14) 100%);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.12);
}

/* Text content */
.mega-dropdown-item-text { flex: 1; position: relative; z-index: 1; }
.mega-dropdown-item h4 {
  font-size: 0.88rem; font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: inherit; margin-bottom: 4px; line-height: 1.3;
  letter-spacing: -0.01em;
}
.mega-dropdown-item p {
  font-size: 0.76rem; color: rgba(255, 255, 255, 0.42);
  line-height: 1.45; margin-bottom: 0;
  transition: color 0.2s;
}
.mega-dropdown-item:hover p { color: rgba(255, 255, 255, 0.62); }

/* Divider */
.mega-dropdown-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 4px 12px;
}

/* Section label */
.mega-dropdown-section-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 10px 16px 4px;
  display: block;
}

/* Bottom CTA strip — gradient accent border */
.mega-dropdown-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 0 14px 14px;
  position: relative;
}
/* Gradient line above footer */
.mega-dropdown-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.2), rgba(16, 185, 129, 0.2), transparent);
}

.mega-dropdown-footer-text {
  font-size: 0.74rem; color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}
.mega-dropdown-footer-link {
  font-size: 0.78rem; font-weight: 700;
  color: var(--green-bright); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: gap 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.mega-dropdown-footer-link:hover {
  gap: 9px;
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}
.mega-dropdown-footer-link:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 2px;
}

/* Mobile: hide mega-dropdown, mobile menu handles navigation */
@media (max-width: 1024px) {
  .mega-dropdown { display: none; }
  .nav-chevron { display: none; }
}

/* ------------------------------------------
   RESPONSIVE — patch
   ------------------------------------------ */
@media (max-width: 1024px) {
  .page-header h1,
  .page-header .page-title { font-size: 2.2rem; }
  .mega-dropdown { min-width: 340px; }
}
@media (max-width: 768px) {
  .page-header h1,
  .page-header .page-title { font-size: 1.8rem; }
  .page-header { padding: calc(var(--nav-h) + 80px) 0 48px; }
  .py-120 { padding-top: 60px; padding-bottom: 60px; }
  .section-title,
  .section-heading { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .page-header h1,
  .page-header .page-title { font-size: 1.6rem; }
}

/* =============================================
   PATCH v3.7 — UTILITY & CONSISTENCY ADDITIONS
   ============================================= */

/* Max-width utilities (used by ecosystem & other pages) */
.max-w-xl  { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.mx-auto   { margin-left: auto; margin-right: auto; }

/* Section header bottom margin utility */
.mb-56 { margin-bottom: 56px; }

/* Industry card icon wrap — match ind-icon style so both classes work */
.industry-card .icon-wrap,
.industry-card .ind-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; background: var(--blue-glow);
  flex-shrink: 0;
}
.industry-card .icon-wrap svg,
.industry-card .ind-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
/* Allow fill-based icons (play triangle etc.) inside ind-icon */
.industry-card .ind-icon svg polygon,
.industry-card .ind-icon svg circle[fill="currentColor"] {
  fill: var(--blue);
  stroke: none;
}

/* Industries grid section spacing */
.industries-grid-section {
  background: var(--bg-white);
  padding: var(--section-gap) 0;
}

/* Dark section padding — same as py-120 now */

/* Stats grid refinement — industry sub-pages (3 items, number inside icon-wrap) */
.stats-grid .stat-icon-wrap:has(.stat-number) {
  width: auto; height: auto; border-radius: 0;
  background: none; margin: 0 0 8px;
}
.stats-grid .stat-icon-wrap .stat-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem); font-weight: 700;
  color: var(--text-white); line-height: 1.1;
  margin-bottom: 0;
  word-break: break-word; overflow-wrap: break-word;
}

/* CTA section eyebrow refinement */
.cta-section .section-eyebrow { position: relative; z-index: 2; }

/* Consistent feature-card arrow link */
.feature-card-link {
  margin-top: 20px; color: var(--blue);
  font-weight: 600; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: gap 0.15s;
}
.feature-card-link:hover { gap: 10px; }

/* Section header p max-width when centered */
.section-header.text-center p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Image in two-col layout (actual img, not asset-slot) */
.two-col img {
  width: 100%; border-radius: 16px;
  object-fit: cover; display: block;
}

/* Asset slot — when an img is injected inside it, remove placeholder look */
.asset-slot.has-image {
  border: none; background: none; padding: 0;
  min-height: 0;
}
.asset-slot img {
  width: 100%; border-radius: 16px;
  object-fit: cover; display: block;
}

/* ==========================================
   PATCH v3.8 — Industry sub-page styles
   ========================================== */

/* Page header subtitle */
.page-header-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.6;
  margin-top: 8px;
}

/* Overview section */
.overview-section {
  background: var(--bg-white);
  padding: var(--section-gap) 0;
}
.overview-content {
  max-width: 800px;
  margin: 0 auto;
}
.overview-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.overview-content p:last-child { margin-bottom: 0; }

/* Features section (industry sub-pages) */
.features-section {
  background: var(--bg-light);
  padding: var(--section-gap) 0;
}
.features-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
  text-align: center;
}

/* Asset section & placeholder — HIDDEN (no real assets yet) */
.asset-section {
  display: none !important;
}
.asset-placeholder {
  display: none !important;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats icon wrap in industry pages */
.stat-icon-wrap {
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid .stat-number { font-size: 1.8rem; }
  .page-header-subtitle { font-size: 1rem; }
  .overview-content { max-width: 100%; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================
   PATCH v3.9 — Responsive polish + layout gaps
   ========================================== */

/* Timeline responsive */
@media (max-width: 768px) {
  .timeline-item { padding-left: 24px; }
  .timeline-year { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .py-120 { padding-top: 48px; padding-bottom: 48px; }
  .mb-80 { margin-bottom: 48px; }
  .section-title { font-size: 1.6rem; }
  .text-lg { font-size: 0.95rem; }
  .text-2xl { font-size: 1.3rem; }
  .glass-card.p-48 { padding: 28px 20px; }
}

/* Eco grid cards — ensure no overflow */
.eco-card { overflow: hidden; }

/* About page stat section — center cards on mobile */
@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-number { font-size: 2.2rem !important; }
  .stat-label { font-size: 0.78rem; }
}

/* Two-col image side — constrain on stacked mobile */
@media (max-width: 1024px) {
  .two-col-left .asset-slot,
  .two-col-left img {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Contact grid form area */
@media (max-width: 768px) {
  .contact-grid { gap: 40px; }
}

/* CTA section padding tighten on mobile */
@media (max-width: 480px) {
  .cta-section { padding: 64px 0; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.95rem; }
}

/* Insights page article grid */
@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; gap: 24px; }
  .article-card { flex-direction: column; }
}

/* Topics cloud wrapping */
.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Fix any orphan border-top on first visible section after page-header */
.page-header + .light-section.border-top,
.page-header + .white-section.border-top {
  border-top: none;
}

/* Fix white patch between announcement bar and navbar on internal pages.
   When announcement bar is visible, body bg peeks through between the bar
   and the page-header. A pseudo-element fills that gap with navy. */
body:has(.announcement-bar:not(.dismissed)):has(.page-header)::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: calc(36px + var(--nav-h) + 20px);
  background: var(--navy);
  z-index: 0;
  pointer-events: none;
}
/* Ensure page-header sits above the pseudo-element */
.page-header { position: relative; z-index: 1; }

/* Fix dropdown "Book a Call" and "View All" button text color on scrolled navbar.
   These buttons are inside the mega-dropdown which has a dark background,
   so their text must stay white/green regardless of scroll state. */
.navbar.scrolled .mega-dropdown .mega-dropdown-footer-link {
  color: var(--green-bright);
}
.navbar.scrolled .mega-dropdown .nav-cta,
.navbar.scrolled .mega-dropdown a.nav-cta {
  color: var(--text-white);
}
/* Ensure all mega-dropdown links stay light on scrolled nav */
.navbar.scrolled .mega-dropdown a {
  color: rgba(255,255,255,0.82);
}
.navbar.scrolled .mega-dropdown a:hover {
  color: #fff;
}
.navbar.scrolled .mega-dropdown h4 {
  color: #fff;
}
.navbar.scrolled .mega-dropdown p {
  color: rgba(255,255,255,0.42);
}

/* Mobile hamburger menu link spacing */
@media (max-width: 768px) {
  .mobile-menu a {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* =============================================
   GLOBAL FAQ STYLES — works on ALL pages
   ============================================= */
.faq-container,
.advisory-faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item,
details.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg-white);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item:hover { border-color: var(--blue); }
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s var(--ease);
}
.faq-item summary:hover { background: var(--grey-50); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item-content,
.faq-item .faq-item-content {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item-content p { margin: 0; }

/* Advisory FAQ — hide duplicate + icons from manual spans */
.advisory-faq details summary span[style*="font-size"] { display: none; }
.advisory-faq details summary::after { display: inline-block !important; }

/* FAQ section heading */
.advisory-faq h3,
.faq-section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

/* =============================================
   DECORATIVE SVG VISUAL (replaces asset-placeholder)
   ============================================= */
.visual-break {
  background: linear-gradient(135deg, var(--grey-50) 0%, rgba(0,128,255,0.03) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.visual-break .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.visual-break-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
}
.visual-break-item svg {
  width: 48px;
  height: 48px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.6;
}
.visual-break-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   RESPONSIVE FIXES FOR 3-STAT LAYOUTS
   ============================================= */
@media (max-width: 768px) {
  .stats-grid .stat-icon-wrap { margin: 0 auto 8px; }
}

/* =============================================
   GLOBAL FORM STYLING — polished inputs across all pages
   ============================================= */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Light-background form styling */
.light-section input[type="text"],
.light-section input[type="email"],
.light-section input[type="tel"],
.light-section input[type="url"],
.light-section textarea,
.light-section select,
.page-content input[type="text"],
.page-content input[type="email"],
.page-content input[type="tel"],
.page-content input[type="url"],
.page-content textarea,
.page-content select {
  padding: 14px 18px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-primary);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.light-section input:focus,
.light-section textarea:focus,
.light-section select:focus,
.page-content input:focus,
.page-content textarea:focus,
.page-content select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,128,255,0.1);
}

/* Dark-background form styling */
.dark-section input[type="text"],
.dark-section input[type="email"],
.dark-section input[type="tel"],
.dark-section textarea,
.dark-section select {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--text-white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.dark-section input::placeholder,
.dark-section textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.dark-section input:focus,
.dark-section textarea:focus,
.dark-section select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,128,255,0.15);
}

/* Custom select arrow */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* =============================================
   DROPDOWN FOOTER BUTTON COLOR FIX ON SCROLLED NAV
   ============================================= */
.navbar.scrolled .mega-dropdown-footer-link {
  color: var(--green-bright);
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
}
.navbar.scrolled .mega-dropdown-footer-link:hover {
  color: var(--green-bright);
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.28);
}

/* =============================================
   v5.0 RESPONSIVE FIXES — Tablet & Mobile
   Added to ensure all agent-created inline
   styles degrade gracefully. Desktop untouched.
   ============================================= */

/* --- TABLET (768px - 1024px) --- */
@media (max-width: 1024px) {
  /* Advisory CTA grid: stack on tablet */
  .advisory-cta-grid {
    grid-template-columns: 1fr !important;
  }

  /* Homepage Love section: allow wrapping */
  .love-layout {
    flex-wrap: wrap !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Ecosystem flow arrows: hide on stack */
  .eco-flow-arrow { display: none; }

  /* About page timeline: adjust padding */
  .timeline-item { margin-left: 0 !important; }

  /* Trust bar: wrap on tablet */
  .trust-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
  }

  /* Announcement bar: smaller text on tablet */
  .announcement-item { font-size: 0.72rem; padding: 0 20px; }
}

/* --- MOBILE (below 768px) --- */
@media (max-width: 768px) {
  /* Homepage Love section: full stack */
  .love-layout {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center !important;
  }
  .love-layout > img {
    width: 140px !important;
    height: 140px !important;
  }

  /* Advisory page ICP cards: single column */
  .feature-grid[style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* Ecosystem page flow: vertical stack */
  div[style*="justify-content: space-between"][style*="flex-wrap"] {
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Ecosystem flow arrows: hide when stacked */
  div[style*="justify-content: space-between"][style*="flex-wrap"] > div[style*="flex: 0 0 40px"] {
    display: none !important;
  }

  /* About page: timeline items tighter on mobile */
  .timeline-item { padding: 24px 20px; }

  /* Build Different: heading sizes on mobile */
  .build-diff-hero h1 { font-size: 1.8rem; }

  /* Ecosystem "Why This Matters" cards */
  div[style*="repeat(auto-fit, minmax(240px"] {
    grid-template-columns: 1fr !important;
  }

  /* Industry cards: 1 column on mobile */
  .industries-grid-sm {
    grid-template-columns: 1fr !important;
  }

  /* Industry card arrow: always visible on mobile for touch affordance */
  .ind-card-sm::after {
    opacity: 0.5;
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    gap: 8px;
  }
  .trust-bar-divider { display: none; }

  /* Footer stats: 2x2 on mobile */
  .footer-stats-bar {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Announcement bar: tighter */
  .announcement-bar { height: 32px; }
  .announcement-item { font-size: 0.68rem; padding: 0 16px; }

  /* Page header: tighter padding */
  .page-header { padding: calc(var(--nav-h) + 32px) 0 32px; }

  /* Section headers: smaller on mobile */
  .section-eyebrow { font-size: 0.72rem; }

  /* Buttons: full width on small screens */
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Exit popup: smaller on mobile */
  .exit-trust-row { gap: 12px; }
  .exit-trust-item strong { font-size: 1.2rem; }

  /* Contact process steps: stack */
  .contact-process-step { padding: 20px 16px; }

  /* Cookie bar: smaller */
  .cookie-bar-actions { gap: 8px; }
}

/* --- SMALL MOBILE (below 480px) --- */
@media (max-width: 480px) {
  /* Love section thumbnails: smaller */
  .love-layout img[style*="64px"] {
    width: 48px !important;
    height: 48px !important;
  }

  /* Advisory CTA cards: tighter padding */
  .advisory-cta-grid > div {
    padding: 24px 20px !important;
  }

  /* Footer stats: single column */
  .footer-stats-bar {
    grid-template-columns: 1fr !important;
  }

  /* Page header */
  .page-header h1 { font-size: 1.5rem; }

  /* Founder stats grid: single column */
  .founder-stats { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Container padding */
  .container { padding: 0 16px; }
}
