/* ==========================================================================
   BINDRA ENTERPRISES — DIGITAL MARKETING & PERFORMANCE GROWTH
   Theme: Next-Gen Digital Marketing, Performance Media & Creative Solutions
   Typography: Multi-Font Architecture:
     - Hero & Main Display: 'Outfit'
     - Key Metrics & Data: 'Space Grotesk'
     - Capabilities & Services: 'Outfit'
     - Case Studies & Testimonials: 'Cormorant Garamond' (Editorial Serif)
     - Blueprint, UI & Body: 'Plus Jakarta Sans'
   ========================================================================== */

/* ---- DESIGN TOKENS & PALETTE ---- */
:root {
  /* Dark Canvas */
  --bg-primary: #07090e;
  --bg-secondary: #0d111a;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(26, 34, 52, 0.85);
  --bg-glass: rgba(13, 17, 26, 0.75);

  /* Vibrant Accents */
  --violet-primary: #7c3aed;
  --violet-light: #9061f9;
  --violet-glow: rgba(124, 58, 237, 0.35);
  --indigo-primary: #4f46e5;
  --indigo-light: #6366f1;
  --cyan-accent: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.25);
  --mint-accent: #10b981;
  --amber-accent: #f59e0b;

  /* Neutral Slates */
  --text-white: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-focus: rgba(124, 58, 237, 0.5);

  /* Multi-Font System: Clean, Proportional, Refined */
  --font-hero: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-data: 'Space Grotesk', monospace, sans-serif;
  --font-service: 'Outfit', sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #06b6d4 100%);
  --grad-text: linear-gradient(135deg, #ffffff 20%, #9061f9 60%, #06b6d4 100%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

  /* Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--violet-glow);
  --shadow-glow-cyan: 0 0 35px var(--cyan-glow);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-base);
  word-break: break-word;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Background Atmospheric Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
}

.ambient-glow-1 {
  top: -100px;
  right: 0;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: rgba(124, 58, 237, 0.18);
}

.ambient-glow-2 {
  top: 35%;
  left: 0;
  width: min(550px, 80vw);
  height: min(550px, 80vw);
  background: rgba(6, 182, 212, 0.12);
}

/* ---- TOP ANNOUNCEMENT BAR ---- */
.top-bar {
  background: rgba(13, 17, 26, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  padding: 8px 0;
  color: var(--text-secondary);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-light);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.top-bar-link:hover {
  color: var(--text-white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.partner-tag i {
  color: var(--cyan-accent);
}

/* ---- SITE HEADER & NAVIGATION ---- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--trans-base);
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(124, 58, 237, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--trans-base);
}

.site-header.scrolled .header-inner {
  height: 70px;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--trans-fast);
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  transition: transform var(--trans-fast);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

/* Logo Theme Display based on system theme */
.logo-dark {
  display: block;
}
.logo-light {
  display: none;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) .logo-dark {
    display: none !important;
  }
  :root:not([data-theme="dark"]) .logo-light {
    display: block !important;
  }
}

:root[data-theme="light"] .logo-dark {
  display: none !important;
}
:root[data-theme="light"] .logo-light {
  display: block !important;
}

:root[data-theme="dark"] .logo-dark {
  display: block !important;
}
:root[data-theme="dark"] .logo-light {
  display: none !important;
}

.logo-symbol {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--violet-primary) 0%, var(--indigo-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.25rem;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-hero);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--cyan-accent);
  text-transform: uppercase;
}

/* Nav Menu */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--trans-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-primary), var(--cyan-accent));
  transition: width var(--trans-base);
}

.nav-link:hover {
  color: var(--text-white);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header-audit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--violet-primary) 0%, var(--indigo-primary) 100%);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px var(--violet-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--trans-base);
  text-decoration: none;
}

.btn-header-audit span,
.btn-header-audit i,
.btn-header-audit strong {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.btn-header-audit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.55);
  border-color: var(--cyan-accent);
  color: #ffffff !important;
}

.btn-header-audit:hover span,
.btn-header-audit:hover i {
  color: #ffffff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  position: relative;
  transition: all var(--trans-base);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

/* Morph hamburger into '✕' when menu is open */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU: TOP DROPDOWN (NOT SIDEBAR) ---- */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  max-height: calc(100dvh - 80px);
  background: rgba(13, 17, 26, 0.98);
  color: var(--text-white);
  z-index: 999;
  padding: 20px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-card);
  border-left: none;
  border-right: none;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease,
              visibility 0.35s ease;
  overflow-y: auto;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(7, 9, 14, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* In top dropdown, the header above already displays the logo and hamburger toggle */
.mobile-drawer-top {
  display: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--trans-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(124, 58, 237, 0.12);
  color: var(--violet-light);
  padding-left: 18px;
}

.mobile-nav-link i {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--trans-fast);
}

.mobile-nav-link:hover i {
  color: var(--violet-light);
  transform: translateX(3px);
}


/* ==========================================================================
   SECTION 1: HERO SECTION
   Unique Font: 'Syne' (Display) + 'Plus Jakarta Sans' (Lead)
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 50% 15%, #15102a 0%, #07090e 70%);
  padding: 95px 0 115px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--violet-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-service);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-accent);
  box-shadow: 0 0 10px var(--mint-accent);
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* HERO TITLE: SLEEK, ELEGANT & BALANCED */
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.018em;
  color: var(--text-white);
  margin-bottom: 20px;
}

.hero-title span.grad-highlight {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--violet-primary) 0%, var(--indigo-primary) 100%);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 25px var(--violet-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--trans-base);
  text-decoration: none;
}

.btn-primary-action span,
.btn-primary-action i,
.btn-primary-action strong {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
  border-color: var(--cyan-accent);
  color: #ffffff !important;
}

.btn-primary-action:hover span,
.btn-primary-action:hover i {
  color: #ffffff !important;
}

.btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  padding: 16px 28px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: all var(--trans-base);
}

.btn-secondary-action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--violet-light);
  color: var(--violet-light);
}

/* Hero Trust Strip */
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.hero-trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.hero-trust-point i {
  color: var(--mint-accent);
  font-size: 0.95rem;
}

/* Hero Right Side: Real-Time Performance Dashboard Mockup */
.hero-visual {
  position: relative;
}

.hero-dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124, 58, 237, 0.2);
  position: relative;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.dash-brand-tag {
  font-family: var(--font-service);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-time-tag {
  font-size: 0.75rem;
  color: var(--mint-accent);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.dash-main-stat {
  margin-bottom: 20px;
}

.dash-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* Data font for dashboard numbers */
.dash-stat-value {
  font-family: var(--font-data);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.dash-stat-gain {
  font-size: 0.95rem;
  color: var(--mint-accent);
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Mini sparkline chart bar */
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.dash-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--violet-primary), var(--indigo-primary));
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
  position: relative;
}

.dash-bar:hover {
  background: linear-gradient(180deg, var(--cyan-accent), var(--violet-primary));
}

.dash-bar:nth-child(1) { height: 35%; }
.dash-bar:nth-child(2) { height: 48%; }
.dash-bar:nth-child(3) { height: 42%; }
.dash-bar:nth-child(4) { height: 65%; }
.dash-bar:nth-child(5) { height: 58%; }
.dash-bar:nth-child(6) { height: 82%; }
.dash-bar:nth-child(7) { height: 74%; }
.dash-bar:nth-child(8) { height: 96%; background: linear-gradient(180deg, var(--cyan-accent), var(--violet-primary)); }

.dash-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.dash-metric-num {
  font-family: var(--font-data);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cyan-accent);
}

.dash-metric-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Floating ROAS badge */
.floating-roas-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(13, 17, 26, 0.95);
  border: 1.5px solid var(--violet-primary);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg), 0 0 25px var(--violet-glow);
  animation: float-slow 5s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.floating-roas-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.floating-roas-text strong {
  display: block;
  font-family: var(--font-data);
  font-size: 1.1rem;
  color: var(--text-white);
}

.floating-roas-text span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 2: BRAND & CHANNEL TICKER BAR
   Unique Font: 'Space Grotesk'
   ========================================================================== */
.brand-ticker {
  background: var(--bg-secondary);
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ticker-label {
  font-family: var(--font-data);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.ticker-brands {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ticker-brand-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-service);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
}

.ticker-brand-item i {
  font-size: 1.1rem;
  color: var(--violet-light);
}

.ticker-brand-item:hover {
  color: var(--text-white);
}

/* ==========================================================================
   COMMON SECTION HEADER STYLES
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-service);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan-accent);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-hero);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.28;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   SECTION 3: CORE SERVICES & CAPABILITIES
   Unique Font: 'Outfit' for Titles and Service Tags
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--trans-base);
  backdrop-filter: blur(16px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-primary), var(--cyan-accent));
  opacity: 0;
  transition: opacity var(--trans-base);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(124, 58, 237, 0.2);
  background: var(--bg-card-hover);
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all var(--trans-base);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--violet-primary), var(--indigo-primary));
  color: var(--text-white);
  box-shadow: 0 0 20px var(--violet-glow);
}

/* SECTION 3 UNIQUE FONT: OUTFIT FOR SERVICE HEADINGS */
.service-title {
  font-family: var(--font-service);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-tag {
  font-family: var(--font-service);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-accent);
  margin-bottom: 8px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-features li i {
  color: var(--mint-accent);
  font-size: 0.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-service);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--violet-light);
  transition: var(--trans-fast);
}

.service-link i {
  font-size: 0.8rem;
  transition: transform var(--trans-fast);
}

.service-link:hover {
  color: var(--cyan-accent);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 4: KEY GROWTH METRICS & ROI STRIP
   Unique Font: 'Space Grotesk' for High-Impact Data
   ========================================================================== */
.metrics-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 85px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.metric-card {
  text-align: center;
  padding: 32px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  transition: transform var(--trans-base), border-color var(--trans-base);
}

.metric-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* SECTION 4 UNIQUE FONT: SPACE GROTESK */
.stat-counter {
  font-family: var(--font-data);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.metric-title {
  font-family: var(--font-service);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.metric-sub {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 5: CLIENT CASE STUDIES & BREAKTHROUGH STORIES
   Unique Font: 'Cormorant Garamond' Editorial + 'Space Grotesk' Data Badges
   ========================================================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-base);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(6, 182, 212, 0.15);
}

.case-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-card:hover .case-img-wrap img {
  transform: scale(1.05);
}

.case-category-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cyan-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-service);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.case-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* SECTION 5 UNIQUE FONT: CORMORANT GARAMOND EDITORIAL TITLES */
.case-title {
  font-family: var(--font-editorial);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.case-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: auto;
}

.case-kpi-item {
  text-align: left;
}

.case-kpi-val {
  font-family: var(--font-data);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mint-accent);
}

.case-kpi-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   SECTION 6: 4-STEP GROWTH BLUEPRINT
   Unique Font: 'Plus Jakarta Sans' (Clean Execution Architecture)
   ========================================================================== */
.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blueprint-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  transition: all var(--trans-base);
}

.blueprint-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-primary);
  box-shadow: var(--shadow-md);
}

.step-badge {
  font-family: var(--font-data);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 14px;
  transition: color var(--trans-base);
}

.blueprint-card:hover .step-badge {
  color: var(--violet-light);
}

.blueprint-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.blueprint-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 7: DIRECT GROWTH CONSULTATION & CONTACT
   Unique Font: 'Outfit' (Headings) + 'Plus Jakarta Sans' (Body)
   ========================================================================== */
.contact-cta-wrap {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124, 58, 237, 0.16);
  backdrop-filter: blur(20px);
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.contact-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  color: var(--violet-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.contact-cta-headline {
  font-family: var(--font-hero);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.contact-cta-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cta-highlight-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--mint-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-highlight-item strong {
  display: block;
  font-family: var(--font-service);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.cta-highlight-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.contact-cta-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.cta-card-header {
  margin-bottom: 24px;
}

.cta-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint-accent);
  font-family: var(--font-data);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cta-card-header h4 {
  font-family: var(--font-service);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.cta-card-header p {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.contact-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-cta-block {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.94rem;
}

.cta-btn-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  transition: transform var(--trans-fast);
}

.btn-cta-block:hover .cta-btn-arrow {
  transform: translateX(4px);
}

.contact-card-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.contact-footer-item i {
  color: var(--cyan-accent);
}

/* ==========================================================================
   SECTION 8: CLIENT TESTIMONIALS & EXECUTIVE QUOTES
   Unique Font: 'Cormorant Garamond' (Italic Luxury Quotes)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testi-quote-icon {
  font-size: 2rem;
  color: var(--violet-light);
  opacity: 0.4;
  margin-bottom: 14px;
}

/* SECTION 8 UNIQUE FONT: CORMORANT GARAMOND */
.testi-text {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-primary), var(--indigo-primary));
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testi-meta strong {
  display: block;
  font-family: var(--font-service);
  font-size: 0.94rem;
  color: var(--text-white);
}

.testi-meta span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 9: FAQ ACCORDION
   Unique Font: 'Outfit' for Questions + 'Plus Jakarta Sans' for Answers
   ========================================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open {
  border-color: var(--violet-primary);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-service);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  background: none;
  transition: color var(--trans-fast);
}

.faq-question:hover {
  color: var(--violet-light);
}

.faq-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: transform var(--trans-base), background var(--trans-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--violet-primary);
  color: #ffffff !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ==========================================================================
   SECTION 10: HIGH-CONVERTING CLOSING CTA BANNER
   Unique Font: 'Outfit' (Display)
   ========================================================================== */
.cta-banner-section {
  background: radial-gradient(circle at 50% 50%, #171033 0%, #07090e 100%);
  padding: 95px 0;
  border-top: 1.5px solid rgba(124, 58, 237, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.cta-banner-text {
  max-width: 680px;
}

/* SECTION 10: CLOSING CTA TITLE */
.cta-banner-title {
  font-family: var(--font-hero);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.cta-banner-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 11: FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  padding: 80px 0 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 18px 0 22px 0;
  max-width: 320px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--trans-fast);
}

.social-icon:hover {
  background: var(--violet-primary);
  color: #ffffff !important;
  border-color: var(--violet-primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-service);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--cyan-accent);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--cyan-accent);
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.88rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--violet-light);
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--violet-light);
}

/* ==========================================================================
   SUPPORTING PAGES COMMON STYLES
   ========================================================================== */
.content-hero {
  background: radial-gradient(circle at 50% 20%, #15102a 0%, #07090e 80%);
  color: var(--text-white);
  padding: 70px 0 60px 0;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.content-hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.content-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

.content-body {
  padding: 75px 0;
  background: var(--bg-primary);
}

.content-body .container {
  max-width: 920px;
}

.content-body h2 {
  font-family: var(--font-service);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 40px 0 18px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.content-body h3 {
  font-family: var(--font-service);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--violet-light);
  margin: 26px 0 12px 0;
}

.content-body p,
.content-body li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-body ul {
  padding-left: 24px;
  margin-bottom: 22px;
}

/* Contact Cards Grid */
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--trans-base);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-primary);
  box-shadow: var(--shadow-md), 0 0 25px var(--violet-glow);
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px auto;
}

.contact-card h3 {
  font-family: var(--font-service);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Booking Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: 32px;
  backdrop-filter: blur(16px);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-service);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--trans-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--violet-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

select.form-control option {
  background: var(--bg-secondary);
  color: var(--text-white);
}

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

/* Form Success / Direct Email Banner */
.form-success-banner {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

.form-success-banner .success-icon {
  font-size: 1.8rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success-banner .success-content {
  flex-grow: 1;
}

.form-success-banner h4 {
  font-family: var(--font-service);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.form-success-banner p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 10px;
}

.form-success-banner .success-sub {
  margin-bottom: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.direct-mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-accent);
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
}

.direct-mail-btn:hover {
  color: var(--violet-light);
}

/* Form Fail Banner */
.form-fail-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

.form-fail-banner .fail-icon {
  font-size: 1.5rem;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-fail-banner .fail-content {
  flex-grow: 1;
}

.form-fail-banner h4 {
  font-family: var(--font-service);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 4px;
}

.form-fail-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.form-fail-banner a {
  color: var(--violet-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header-nav,
  .btn-header-audit {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 0 80px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary-action,
  .btn-secondary-action {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .ambient-glow-1,
  .ambient-glow-2 {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
    filter: blur(80px);
    opacity: 0.6;
  }

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

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

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    width: 100%;
  }

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

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .floating-roas-badge {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 45px 0 60px 0;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.26;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metric-card {
    padding: 24px 20px;
  }

  .service-card {
    padding: 24px 18px;
  }

  .case-body {
    padding: 20px 16px;
  }

  .case-results-bar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 12px;
  }

  .testi-card {
    padding: 24px 18px;
  }

  .contact-cta-wrap {
    padding: 24px 16px;
  }

  .contact-cta-card {
    padding: 22px 14px;
  }

  .contact-cta-headline {
    font-size: 1.35rem;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .btn-primary-action,
  .btn-secondary-action {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .btn-cta-block {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .hero-dashboard-card {
    padding: 18px 14px;
  }

  .dash-stat-value {
    font-size: 1.8rem;
    flex-wrap: wrap;
  }

  .dash-metrics-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ticker-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ticker-brands {
    gap: 16px 20px;
  }

  .content-hero {
    padding: 50px 0 40px 0;
  }

  .content-hero h1 {
    font-size: 1.7rem;
  }

  .content-hero p {
    font-size: 0.95rem;
  }

  .contact-card {
    padding: 22px 16px;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .btn-primary-action,
  .btn-secondary-action {
    padding: 12px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }

  .logo-img {
    max-width: 140px;
  }

  .contact-form,
  .contact-cta-wrap,
  .contact-cta-card {
    padding: 18px 12px;
  }
}

@media (max-width: 900px) {
  .contact-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   SYSTEM THEME SUPPORT (LIGHT THEME ADAPTATION)
   Determined dynamically by system theme (prefers-color-scheme: light)
   and data-theme attribute
   ========================================================================== */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);

    --text-white: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-card: rgba(15, 23, 42, 0.12);
    --border-focus: rgba(124, 58, 237, 0.6);

    --grad-text: linear-gradient(135deg, #0f172a 20%, #7c3aed 70%, #06b6d4 100%);
    --grad-card: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  }

  :root:not([data-theme="dark"]) .top-bar {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .top-bar-link {
    color: #475569;
  }

  :root:not([data-theme="dark"]) .top-pill {
    background: rgba(124, 58, 237, 0.1);
    color: var(--violet-primary);
  }

  :root:not([data-theme="dark"]) .site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  :root:not([data-theme="dark"]) .nav-link {
    color: #475569;
  }

  :root:not([data-theme="dark"]) .nav-link:hover,
  :root:not([data-theme="dark"]) .nav-link.active {
    color: var(--violet-primary);
  }

  :root:not([data-theme="dark"]) .btn-secondary-action {
    background: rgba(15, 23, 42, 0.05);
    color: #1e293b;
    border-color: rgba(15, 23, 42, 0.15);
  }

  :root:not([data-theme="dark"]) .btn-secondary-action:hover {
    background: rgba(15, 23, 42, 0.09);
    border-color: var(--violet-primary);
    color: var(--violet-primary);
  }

  :root:not([data-theme="dark"]) .ambient-glow {
    opacity: 0.1;
  }

  :root:not([data-theme="dark"]) .brand-ticker {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .ticker-brand-item {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
    color: #334155;
  }

  :root:not([data-theme="dark"]) .service-card,
  :root:not([data-theme="dark"]) .metric-card,
  :root:not([data-theme="dark"]) .case-card,
  :root:not([data-theme="dark"]) .blueprint-card,
  :root:not([data-theme="dark"]) .contact-card,
  :root:not([data-theme="dark"]) .contact-form,
  :root:not([data-theme="dark"]) .contact-cta-wrap {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  :root:not([data-theme="dark"]) .contact-cta-card {
    background: rgba(241, 245, 249, 0.85);
    border-color: rgba(124, 58, 237, 0.2);
  }

  :root:not([data-theme="dark"]) .hero-dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  }

  :root:not([data-theme="dark"]) .dash-stat-box,
  :root:not([data-theme="dark"]) .dash-graph-preview {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .faq-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
  }

  :root:not([data-theme="dark"]) .faq-question {
    color: #0f172a;
  }

  :root:not([data-theme="dark"]) .faq-chevron {
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
  }

  :root:not([data-theme="dark"]) .cta-banner-section {
    background: radial-gradient(circle at 50% 50%, #f3e8ff 0%, #f8fafc 100%);
    border-top: 1.5px solid rgba(124, 58, 237, 0.25);
  }

  :root:not([data-theme="dark"]) .site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
  }

  :root:not([data-theme="dark"]) .footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .mobile-drawer {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    border-left: none;
    border-right: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  :root:not([data-theme="dark"]) .mobile-nav-link {
    color: #0f172a;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  :root:not([data-theme="dark"]) .mobile-nav-link:hover,
  :root:not([data-theme="dark"]) .mobile-nav-link:active {
    background: rgba(124, 58, 237, 0.08);
    color: var(--violet-primary);
  }

  :root:not([data-theme="dark"]) .hamburger span {
    background: #0f172a;
  }

  :root:not([data-theme="dark"]) .form-control {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.15);
    color: #0f172a;
  }

  :root:not([data-theme="dark"]) .form-control:focus {
    border-color: var(--violet-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  }

  :root:not([data-theme="dark"]) .site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .hero {
    background: radial-gradient(circle at 50% 15%, #ede9fe 0%, #f8fafc 70%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .hero-lead {
    color: #475569;
  }

  :root:not([data-theme="dark"]) .hero-trust-strip {
    border-top-color: rgba(15, 23, 42, 0.1);
  }

  :root:not([data-theme="dark"]) .hero-trust-point {
    color: #334155;
  }

  :root:not([data-theme="dark"]) .hero-badge-pill {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.25);
    color: var(--violet-primary);
  }

  :root:not([data-theme="dark"]) .dash-bars {
    background: #f1f5f9;
    border-color: rgba(15, 23, 42, 0.06);
  }

  :root:not([data-theme="dark"]) .dash-metric-box {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .floating-roas-badge {
    background: #ffffff;
    border-color: var(--violet-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  :root:not([data-theme="dark"]) .floating-roas-badge strong {
    color: #0f172a;
  }

  :root:not([data-theme="dark"]) .floating-roas-badge span {
    color: #64748b;
  }

  :root:not([data-theme="dark"]) .content-hero {
    background: radial-gradient(circle at 50% 30%, #ede9fe 0%, #f8fafc 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  /* BUTTONS: Enforce pure white text & icons across all gradient primary buttons */
  :root:not([data-theme="dark"]) .btn-primary-action,
  :root:not([data-theme="dark"]) .btn-primary-action *,
  :root:not([data-theme="dark"]) .btn-header-audit,
  :root:not([data-theme="dark"]) .btn-header-audit * {
    color: #ffffff !important;
    fill: #ffffff !important;
  }

  :root:not([data-theme="dark"]) .btn-primary-action:hover,
  :root:not([data-theme="dark"]) .btn-primary-action:hover *,
  :root:not([data-theme="dark"]) .btn-header-audit:hover,
  :root:not([data-theme="dark"]) .btn-header-audit:hover * {
    color: #ffffff !important;
  }

  /* SECTION 4 METRICS ON LIGHT THEME */
  :root:not([data-theme="dark"]) .metrics-section {
    background: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .stat-counter {
    background: linear-gradient(135deg, #312e81 0%, #6366f1 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #312e81;
  }

  :root:not([data-theme="dark"]) .section-badge {
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    border-color: rgba(2, 132, 199, 0.25);
  }

  :root:not([data-theme="dark"]) .case-results-bar {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
  }

  :root:not([data-theme="dark"]) .step-badge {
    color: rgba(124, 58, 237, 0.22);
  }

  :root:not([data-theme="dark"]) .blueprint-card:hover .step-badge {
    color: var(--violet-primary);
  }

  :root:not([data-theme="dark"]) .form-success-banner {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
  }

  :root:not([data-theme="dark"]) .form-success-banner h4 {
    color: #0f172a;
  }

  :root:not([data-theme="dark"]) .form-success-banner p {
    color: #334155;
  }

  :root:not([data-theme="dark"]) .direct-mail-btn {
    color: var(--violet-primary);
  }
}

:root[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.9);

  --text-white: #0f172a;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-card: rgba(15, 23, 42, 0.12);
  --border-focus: rgba(124, 58, 237, 0.6);

  --grad-text: linear-gradient(135deg, #0f172a 20%, #7c3aed 70%, #06b6d4 100%);
  --grad-card: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .top-bar {
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .top-bar-link {
  color: #475569;
}

:root[data-theme="light"] .top-pill {
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet-primary);
}

:root[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .nav-link {
  color: #475569;
}

:root[data-theme="light"] .nav-link:hover,
:root[data-theme="light"] .nav-link.active {
  color: var(--violet-primary);
}

:root[data-theme="light"] .btn-secondary-action {
  background: rgba(15, 23, 42, 0.05);
  color: #1e293b;
  border-color: rgba(15, 23, 42, 0.15);
}

:root[data-theme="light"] .btn-secondary-action:hover {
  background: rgba(15, 23, 42, 0.09);
  border-color: var(--violet-primary);
  color: var(--violet-primary);
}

:root[data-theme="light"] .ambient-glow {
  opacity: 0.1;
}

:root[data-theme="light"] .brand-ticker {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .ticker-brand-item {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.08);
  color: #334155;
}

:root[data-theme="light"] .service-card,
:root[data-theme="light"] .metric-card,
:root[data-theme="light"] .case-card,
:root[data-theme="light"] .blueprint-card,
:root[data-theme="light"] .contact-card,
:root[data-theme="light"] .contact-form,
:root[data-theme="light"] .contact-cta-wrap {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .contact-cta-card {
  background: rgba(241, 245, 249, 0.85);
  border-color: rgba(124, 58, 237, 0.2);
}

:root[data-theme="light"] .hero-dashboard-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .dash-stat-box,
:root[data-theme="light"] .dash-graph-preview {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .faq-question {
  color: #0f172a;
}

:root[data-theme="light"] .faq-chevron {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
}

:root[data-theme="light"] .cta-banner-section {
  background: radial-gradient(circle at 50% 50%, #f3e8ff 0%, #f8fafc 100%);
  border-top: 1.5px solid rgba(124, 58, 237, 0.25);
}

:root[data-theme="light"] .site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .mobile-drawer {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  border-left: none;
  border-right: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .mobile-nav-link {
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

:root[data-theme="light"] .mobile-nav-link:hover,
:root[data-theme="light"] .mobile-nav-link:active {
  background: rgba(124, 58, 237, 0.08);
  color: var(--violet-primary);
}

:root[data-theme="light"] .hamburger span {
  background: #0f172a;
}

:root[data-theme="light"] .form-control {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

:root[data-theme="light"] .form-control:focus {
  border-color: var(--violet-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

:root[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .hero {
  background: radial-gradient(circle at 50% 15%, #ede9fe 0%, #f8fafc 70%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .hero-lead {
  color: #475569;
}

:root[data-theme="light"] .hero-trust-strip {
  border-top-color: rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .hero-trust-point {
  color: #334155;
}

:root[data-theme="light"] .hero-badge-pill {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--violet-primary);
}

:root[data-theme="light"] .dash-bars {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.06);
}

:root[data-theme="light"] .dash-metric-box {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .floating-roas-badge {
  background: #ffffff;
  border-color: var(--violet-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .floating-roas-badge strong {
  color: #0f172a;
}

:root[data-theme="light"] .floating-roas-badge span {
  color: #64748b;
}

:root[data-theme="light"] .content-hero {
  background: radial-gradient(circle at 50% 30%, #ede9fe 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

/* BUTTONS: Enforce pure white text & icons across all gradient primary buttons */
:root[data-theme="light"] .btn-primary-action,
:root[data-theme="light"] .btn-primary-action *,
:root[data-theme="light"] .btn-header-audit,
:root[data-theme="light"] .btn-header-audit * {
  color: #ffffff !important;
  fill: #ffffff !important;
}

:root[data-theme="light"] .btn-primary-action:hover,
:root[data-theme="light"] .btn-primary-action:hover *,
:root[data-theme="light"] .btn-header-audit:hover,
:root[data-theme="light"] .btn-header-audit:hover * {
  color: #ffffff !important;
}

/* SECTION 4 METRICS ON LIGHT THEME */
:root[data-theme="light"] .metrics-section {
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .stat-counter {
  background: linear-gradient(135deg, #312e81 0%, #6366f1 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #312e81;
}

:root[data-theme="light"] .section-badge {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
}

:root[data-theme="light"] .case-results-bar {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .step-badge {
  color: rgba(124, 58, 237, 0.22);
}

:root[data-theme="light"] .blueprint-card:hover .step-badge {
  color: var(--violet-primary);
}

:root[data-theme="light"] .form-success-banner {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

:root[data-theme="light"] .form-success-banner h4 {
  color: #0f172a;
}

:root[data-theme="light"] .form-success-banner p {
  color: #334155;
}

:root[data-theme="light"] .direct-mail-btn {
  color: var(--violet-primary);
}