/* ═══════════════════════════════════════════════════════════
   BrandElevationHub — Frontend CSS
   Design: Deep Indigo + Electric Gold | 2026 Premium UI
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --indigo-950: #05071a;
  --indigo-900: #0D0F2B;
  --indigo-800: #131640;
  --indigo-700: #1a1f5e;
  --indigo-600: #2130a0;
  --gold-500: #F4C842;
  --gold-400: #f7d66a;
  --gold-300: #fae59a;
  --white: #ffffff;
  --slate-50: #F8F9FF;
  --slate-100: #eef0f8;
  --slate-200: #d8daf0;
  --slate-400: #8689b0;
  --slate-600: #4a4d72;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 12px rgba(13,15,43,0.08);
  --shadow-md: 0 8px 32px rgba(13,15,43,0.14);
  --shadow-lg: 0 20px 60px rgba(13,15,43,0.22);
  --shadow-gold: 0 8px 32px rgba(244,200,66,0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--indigo-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Utility ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold  { color: var(--gold-500); }
.text-white { color: var(--white); }
.text-slate { color: var(--slate-400); }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold-500); color: var(--indigo-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-400); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244,200,66,0.35);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold-500); color: var(--gold-500);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--indigo-800); color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover { background: var(--indigo-700); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ─── Section Labels ────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,200,66,0.12); border: 1px solid rgba(244,200,66,0.3);
  color: var(--gold-500); padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
  font-family: var(--font-head);
}
.section-label-dark {
  background: rgba(13,15,43,0.08); border-color: rgba(13,15,43,0.15);
  color: var(--indigo-700);
}

/* ─── Section Titles ────────────────────────────────────── */
.section-title {
  font-family: var(--font-head); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-title-xl { font-size: clamp(2.5rem, 5vw, 4rem); }
.section-title-lg { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-title-md { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.section-sub {
  font-size: 1.05rem; color: var(--slate-400); line-height: 1.7;
  max-width: 600px;
}

/* ─── Top Promo Bar ─────────────────────────────────────── */
:root { --promo-h: 40px; --nav-top: calc(var(--promo-h) + 16px); }
body.no-promo { --promo-h: 0px; --nav-top: 16px; }
body.no-scroll { overflow: hidden; }

.topbar-promo {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--promo-h); display: flex; align-items: center;
  background: linear-gradient(100deg, #ec4899 0%, #F4C842 50%, #6366f1 100%);
  color: var(--indigo-900);
  font-family: var(--font-head); font-weight: 600;
  box-shadow: 0 2px 12px rgba(244,200,66,.2);
  transition: transform .35s cubic-bezier(0.4,0,0.2,1), opacity .25s ease, height .25s ease;
  will-change: transform;
}
body.nav-hidden .topbar-promo { transform: translateY(-100%); }
.topbar-promo.is-closing { transform: translateY(-100%); opacity: 0; }
.topbar-promo-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 24px; display: flex; align-items: center; gap: 14px;
  font-size: 0.82rem; justify-content: center;
}
.topbar-promo-tag {
  background: var(--indigo-900); color: var(--gold-400);
  padding: 2px 10px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.topbar-promo-link {
  color: var(--indigo-900); font-weight: 700;
  border-bottom: 1px solid rgba(13,15,43,0.4);
  padding-bottom: 1px;
}
.topbar-promo-link:hover { border-color: var(--indigo-900); }
.topbar-promo-close {
  background: transparent; border: none; cursor: pointer;
  color: rgba(13,15,43,0.7); font-size: 0.9rem; padding: 4px 8px;
  margin-left: auto; border-radius: 6px; transition: var(--transition);
}
.topbar-promo-close:hover { background: rgba(13,15,43,0.12); color: var(--indigo-900); }

/* ─── Floating Pill Navbar ──────────────────────────────── */
.navbar {
  position: fixed; top: var(--nav-top); left: 24px; right: 24px; z-index: 1000;
  max-width: 1240px; margin: 0 auto; height: 64px; padding: 0 6px 0 22px;
  display: flex; align-items: center;
  background: rgba(13,15,43,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition:
    top .25s ease,
    height .25s ease,
    box-shadow .25s ease,
    transform .35s cubic-bezier(0.4,0,0.2,1),
    opacity .25s ease;
  will-change: transform;
}
/* Auto-hide dock behavior — slides above the viewport when scrolling down */
body.nav-hidden .navbar {
  transform: translateY(calc(-100% - var(--nav-top) - 12px));
  opacity: 0.85;
  pointer-events: none;
}
.navbar.scrolled {
  top: 12px; height: 56px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  border-color: rgba(244,200,66,0.12);
}
.navbar-inner {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.navbar-brand {
  display: flex; align-items: center;
  font-family: var(--font-head); font-weight: 800; color: var(--white);
  transition: var(--transition);
}
.navbar-brand img { height: 36px; width: auto; display: block; }

/* Desktop nav links */
.navbar-nav {
  display: flex; align-items: center; gap: 4px; list-style: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px; border-radius: 999px;
}
.navbar-nav a {
  position: relative; display: inline-block;
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500;
  padding: 8px 16px; border-radius: 999px;
  transition: var(--transition); letter-spacing: 0.01em;
}
.navbar-nav a::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 999px; opacity: 0;
  background: linear-gradient(135deg, rgba(244,200,66,0.22), rgba(244,200,66,0.05));
  transition: opacity .3s ease;
}
.navbar-nav a:hover { color: var(--white); }
.navbar-nav a:hover::before { opacity: 1; }
.navbar-nav a.is-active {
  color: var(--indigo-900);
  background: linear-gradient(135deg, var(--gold-500), #ffd966);
  box-shadow: 0 4px 14px rgba(244,200,66,0.35);
}
.navbar-nav a.is-active::before { opacity: 0; }
.navbar-nav a > * { position: relative; z-index: 1; }

.navbar-actions { display: flex; align-items: center; gap: 8px; }
.btn-nav-ghost {
  display: inline-flex; align-items: center; padding: 8px 14px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.85); border-radius: 999px;
  transition: var(--transition); text-decoration: none;
  border: 1px solid transparent;
}
.btn-nav-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }

.btn-nav-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border: none;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  color: var(--indigo-900); border-radius: 999px; cursor: pointer;
  background: linear-gradient(110deg, var(--gold-500) 0%, #ffe08a 50%, var(--gold-500) 100%);
  box-shadow: 0 8px 22px rgba(244,200,66,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(244,200,66,0.5); }
.btn-nav-cta:hover .btn-nav-cta-arrow { transform: translateX(3px); }
.btn-nav-cta-arrow { transition: transform .25s ease; }

.navbar-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; width: 40px; height: 40px; border-radius: 999px;
  position: relative; padding: 0;
}
.navbar-toggle span {
  position: absolute; left: 50%; width: 18px; height: 1.5px;
  background: var(--white); transition: transform .3s ease, top .3s ease, opacity .2s ease;
  transform: translateX(-50%);
}
.navbar-toggle span:nth-child(1) { top: 14px; }
.navbar-toggle span:nth-child(2) { top: 19px; }
.navbar-toggle span:nth-child(3) { top: 24px; }
.navbar-toggle.is-open span:nth-child(1) { top: 19px; transform: translateX(-50%) rotate(45deg); }
.navbar-toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar-toggle.is-open span:nth-child(3) { top: 19px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1200;
  background: #05071a;
  transform: translateX(100%); transition: transform .3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 28px 24px 32px; gap: 24px;
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu-brand {
  font-family: var(--font-head); font-weight: 800; color: var(--gold-500);
  font-size: 1.1rem; letter-spacing: 0.02em;
}
.mobile-menu-close {
  background: rgba(255,255,255,0.08); border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 999px; color: var(--white);
  font-size: 1.1rem; transition: var(--transition);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.15); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.9); font-family: var(--font-head);
  font-weight: 700; font-size: 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu-links a:hover { background: rgba(255,255,255,0.08); border-color: rgba(244,200,66,0.25); }
.mobile-menu-links a.is-active {
  background: linear-gradient(135deg, var(--gold-500), #ffd966);
  color: var(--indigo-900); border-color: transparent;
}
.mobile-menu-arrow { color: var(--gold-500); }
.mobile-menu-links a.is-active .mobile-menu-arrow { color: var(--indigo-900); }
.mobile-menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.mm-btn {
  display: block; width: 100%; text-align: center;
  padding: 14px 20px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  border: none; cursor: pointer;
}
.mm-btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
.mm-btn-primary { background: linear-gradient(135deg, var(--gold-500), #e8a800); color: var(--indigo-900); text-decoration: none; }

/* ─── Hero V2 ───────────────────────────────────────────── */
.hero-v2 {
  position: relative; overflow: hidden;
  background: #05071a;
  padding: calc(var(--nav-top) + 80px) 24px 0;
  color: var(--white);
  min-height: 100vh; display: flex; flex-direction: column;
}
.hero-v2 .hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-v2-inner {
  position: relative; z-index: 2;
  max-width: 1240px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px;
  align-items: center; padding: 40px 0 40px;
}
.hero-v2-content { max-width: 640px; }
.hero-badge-v2 {
  background: rgba(255,255,255,0.05); color: var(--gold-400);
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}
.hero-v2-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.8rem, 5.4vw, 4.8rem); line-height: 1.03;
  letter-spacing: -0.035em; margin-bottom: 28px;
}
.hero-v2-title .line {
  display: block; opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-v2-title .line:nth-child(1) { animation-delay: 0.05s; }
.hero-v2-title .line:nth-child(2) { animation-delay: 0.18s; }
.hero-v2-title .line:nth-child(3) { animation-delay: 0.32s; }
.hero-v2-sub {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.62); max-width: 540px; margin-bottom: 36px;
  opacity: 0; animation: fadeInUp 0.7s ease 0.5s forwards;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeInUp 0.7s ease 0.6s forwards; }

.btn-ghost-glass {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}
.btn-ghost-glass:hover { background: rgba(255,255,255,0.12); border-color: rgba(244,200,66,0.3); transform: translateY(-2px); }
.btn-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-500); color: var(--indigo-900);
  font-size: 0.65rem; padding-left: 2px;
}

.hero-v2-meta {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; animation: fadeInUp 0.7s ease 0.75s forwards;
}
.hero-avatar-stack { display: flex; align-items: center; }
.hero-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid #05071a; object-fit: cover;
  margin-left: -10px; background: var(--indigo-800);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar-more {
  margin-left: -10px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid #05071a;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
}
.hero-meta-text { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-stars {
  color: var(--gold-500); letter-spacing: 2px; font-size: 0.9rem;
  text-shadow: 0 0 12px rgba(244,200,66,0.45);
}
.hero-trust-stars span { color: rgba(255,255,255,0.85); margin-left: 4px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0; }
.hero-trust-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* Visual: card deck */
.hero-v2-visual {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeInUp 0.8s ease 0.35s forwards;
}
.hero-deck {
  position: relative; width: 100%; max-width: 480px;
  aspect-ratio: 5/4; perspective: 1400px;
}
.hero-card-pick {
  position: absolute; inset: 0; margin: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  cursor: pointer;
  /* --rel: 0 = top, 1 = second, 2 = third, etc. */
  transform:
    translate3d(calc(var(--rel, 0) * -18px), calc(var(--rel, 0) * 22px), 0)
    rotateZ(calc(var(--rel, 0) * -2deg));
  opacity: calc(1 - var(--rel, 0) * 0.16);
  transition: transform .55s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity .4s ease;
  z-index: calc(10 - var(--rel, 0));
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-card-pick.is-top { pointer-events: auto; }
.hero-card-pick img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
}
.hero-card-pick figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5,7,26,0.96) 80%);
  color: var(--white);
}
.hero-card-pick-label {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: rgba(5,7,26,0.78);
  color: var(--gold-400);
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(244,200,66,0.25);
  backdrop-filter: blur(8px);
}

.hero-deck-dots {
  position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-deck-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.hero-deck-dots button:hover { background: rgba(255,255,255,0.55); }
.hero-deck-dots button.is-active {
  background: var(--gold-500); width: 24px; border-radius: 100px;
  box-shadow: 0 0 12px rgba(244,200,66,0.6);
}

.floating-chip {
  position: absolute; z-index: 4;
  background: var(--white); border-radius: var(--radius-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  animation: float 5s ease-in-out infinite;
}
.floating-chip-1 { top: -6px; left: -38px; }
.floating-chip-2 { bottom: 12px; right: -48px; animation-delay: -2.5s; }
.floating-chip .floating-icon { font-size: 1.3rem; }
.floating-chip .floating-text strong {
  display: block; font-weight: 700; color: var(--indigo-900); font-size: 0.85rem; font-family: var(--font-head);
}
.floating-chip .floating-text span { color: var(--slate-400); font-size: 0.78rem; }

/* Stats strip */
.hero-stats-strip {
  position: relative; z-index: 2;
  max-width: 1180px; width: calc(100% - 48px);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 14px;
  padding: 18px 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
}
.stat-item {
  display: flex; align-items: center; gap: 12px;
  text-align: left; min-width: 0;
}
.stat-icon-mini {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(244,200,66,0.18), rgba(244,200,66,0.04));
  border: 1px solid rgba(244,200,66,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.05rem, 1.55vw, 1.4rem); line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--gold-300) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex; align-items: baseline; gap: 2px;
  white-space: nowrap;
}
.stat-value span {
  font-size: 0.7em; color: var(--gold-500);
  -webkit-text-fill-color: var(--gold-500);
}
.stat-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
  margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 600;
}
.stat-divider {
  width: 1px; height: 34px; background: rgba(255,255,255,0.08);
}

/* Ticker */
.hero-ticker {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 28px auto 0; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
  color: rgba(255,255,255,0.35); font-size: 0.88rem;
}
.hero-ticker-label {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0;
}
.hero-ticker-track {
  flex: 1; overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  display: flex; gap: 28px;
}
.hero-ticker-group {
  display: flex; align-items: center; gap: 28px; flex-shrink: 0;
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55); white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}
.hero-ticker-group span { flex-shrink: 0; }

/* Mouse spotlight (opt-in: only enabled when body has .beh-spotlight via JS) */
.hero-spotlight {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0;
  background: radial-gradient(
    500px circle at var(--mx, 50%) var(--my, 30%),
    rgba(244,200,66,0.12) 0%,
    rgba(167,139,250,0.06) 40%,
    transparent 65%
  );
}
body.beh-spotlight .hero-spotlight { opacity: 1; }
.hero-noise { display: none; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Legacy hero shell (kept for visual fallback, unused by hero-v2 markup) */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--indigo-900);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(at 18% 22%, rgba(244,200,66,0.22) 0%, transparent 45%),
    radial-gradient(at 82% 18%, rgba(99,102,241,0.28) 0%, transparent 50%),
    radial-gradient(at 68% 82%, rgba(236,72,153,0.18) 0%, transparent 45%),
    radial-gradient(at 12% 78%, rgba(34,211,238,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0D0F2B 0%, #131640 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%; opacity: 0.18;
  background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
  will-change: auto;
}
.hero-orb-1 {
  width: 520px; height: 520px; right: -140px; top: -120px;
  background: radial-gradient(circle, rgba(244,200,66,0.55) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 440px; height: 440px; left: -100px; bottom: -160px;
  background: radial-gradient(circle, rgba(99,102,241,0.55) 0%, transparent 70%);
  opacity: 0.22;
}
.hero-orb-3 { display: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-sparkle { display: none; }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,200,66,0.1); border: 1px solid rgba(244,200,66,0.25);
  color: var(--gold-400); padding: 8px 18px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 28px;
  font-family: var(--font-head); width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500); animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.08;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-500) 0%, #e8a800 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-animate {
  background: linear-gradient(110deg, #F4C842 0%, #ffe08a 30%, #ec4899 60%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 40px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value {
  font-family: var(--font-head); font-weight: 800; font-size: 2rem;
  color: var(--gold-500); line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.hero-visual-glow {
  position: absolute; inset: 10% 0;
  background: radial-gradient(ellipse at center,
    rgba(244,200,66,0.3) 0%,
    rgba(167,139,250,0.18) 40%,
    transparent 70%);
  z-index: 0;
}
.hero-mockup {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.15);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-mockup:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.hero-mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: rgba(13,15,43,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-mockup-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.hero-mockup-label {
  margin-left: 14px; font-family: var(--font-head); font-size: 0.78rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
}
.hero-mockup-body { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hero-mockup-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-mockup:hover .hero-mockup-img { transform: scale(1.05); }
.hero-mockup-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(5,7,26,0.92) 80%);
  color: var(--white);
}
.hero-mockup-title {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #fff 0%, var(--gold-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-mockup-sub { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

.hero-trust-row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
}
.hero-avatar-stack { display: flex; }
.hero-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--indigo-900); object-fit: cover;
  margin-left: -10px; background: var(--indigo-800);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-trust-stars {
  color: var(--gold-500); letter-spacing: 2px; font-size: 0.95rem;
  text-shadow: 0 0 14px rgba(244,200,66,0.5);
}
.hero-trust-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 2px;
}

.floating-badge {
  position: absolute; z-index: 2;
  background: var(--white); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: float 4s ease-in-out infinite;
}
.floating-badge-1 { top: 24px; left: -30px; animation-delay: 0s; }
.floating-badge-2 { bottom: 40px; right: -30px; animation-delay: 2s; }
.floating-badge-3 { top: 46%; right: -50px; animation-delay: 1s; }
.floating-icon { font-size: 1.3rem; }
.floating-text { font-size: 0.78rem; }
.floating-text strong { display: block; font-weight: 700; color: var(--indigo-900); font-size: 0.85rem; }
.floating-text span { color: var(--slate-400); }

/* ─── Gradient CTA Button ──────────────────────────────── */
.btn-gradient {
  position: relative; overflow: hidden;
  background: linear-gradient(110deg, var(--gold-500) 0%, #ffb547 50%, var(--gold-500) 100%);
  color: var(--indigo-900);
  box-shadow: 0 12px 30px rgba(244,200,66,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gradient::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.9s ease;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(244,200,66,0.5); }
.btn-gradient:hover::before { transform: translateX(120%); }
.btn-gradient .btn-arrow { transition: transform 0.3s ease; }
.btn-gradient:hover .btn-arrow { transform: translateX(4px); }

/* ─── Sections ──────────────────────────────────────────── */
section { padding: 100px 0; }
.section-dark { background: var(--indigo-900); }
.section-light { background: var(--slate-50); }
.section-white { background: var(--white); }

/* ─── What You Get ──────────────────────────────────────── */
.deliverables-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.deliverable-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.deliverable-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--indigo-600));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.deliverable-card:hover::before { transform: scaleX(1); }
.deliverable-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.deliverable-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(244,200,66,0.15), rgba(244,200,66,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  border: 1px solid rgba(244,200,66,0.2);
}
.deliverable-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--indigo-900); margin-bottom: 10px;
}
.deliverable-desc { font-size: 0.9rem; color: var(--slate-400); line-height: 1.65; }

/* ─── Blueprint Pages Preview ───────────────────────────── */
.bpages-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 56px;
}
.bpage {
  margin: 0; position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.bpage-hero { grid-column: 1 / -1; }
.bpage-lg { grid-column: span 1; }
.bpage:hover { transform: translateY(-4px); }
.bpage-paper {
  position: relative; height: 100%;
  background: var(--white); border-radius: 20px;
  border: 1px solid #e6e8f5;
  padding: 30px 32px;
  box-shadow: 0 10px 30px rgba(13,15,43,0.06);
  transition: box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
}
.bpage-paper::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  opacity: 0; transition: opacity .35s ease;
}
.bpage:hover .bpage-paper::before { opacity: 1; }

/* Hero card — horizontal 3-panel layout */
.bpage-hero .bpage-paper {
  padding: 36px 40px;
  background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}
.bpage-hero-grid {
  display: grid;
  grid-template-columns: 110px 1fr 280px;
  gap: 36px; align-items: center;
}
.bpage-hero-num {
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid #f0f1f8; padding-right: 24px;
}
.bpage-hero-num .bpage-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: 3.5rem; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
}
.bpage-hero-num .bpage-label {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.74rem; color: var(--slate-600);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.bpage-hero-quote .bpage-eyebrow {
  margin-bottom: 12px;
}
.bpage-hero-quote .bpage-quote {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  margin: 0;
}
.bpage-hero-meta {
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 28px; border-left: 1px solid #f0f1f8;
}
.bpage-hero-meta > div { display: flex; flex-direction: column; gap: 3px; }
.bpage-hero-meta span {
  font-size: 0.66rem; color: var(--slate-400);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.bpage-hero-meta strong {
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--indigo-900); line-height: 1.3;
}
.bpage-paper::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(244,200,66,0) 0%, rgba(244,200,66,0.0) 100%);
  transition: background .35s ease;
}
.bpage:hover .bpage-paper {
  box-shadow: 0 24px 60px rgba(13,15,43,0.12);
  border-color: rgba(244,200,66,0.35);
}

.bpage-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #e2e5f2;
}
.bpage-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.8rem; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.bpage-label {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; color: var(--slate-600);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.bpage-eyebrow {
  font-size: 0.75rem; color: var(--slate-400);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; font-family: var(--font-head);
}
.bpage-quote {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.25rem; line-height: 1.4; color: var(--indigo-900);
  letter-spacing: -0.01em;
}
.bpage-quote em {
  font-style: normal; background: linear-gradient(transparent 60%, rgba(244,200,66,0.45) 60%);
  padding: 0 2px;
}
.bpage-meta-grid {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding-top: 18px; border-top: 1px solid #edeff8;
}
.bpage-meta-grid > div { display: flex; flex-direction: column; gap: 4px; }
.bpage-meta-grid span {
  font-size: 0.68rem; color: var(--slate-400);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.bpage-meta-grid strong {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--indigo-900); line-height: 1.3;
}

/* Voice page */
.bpage-voice {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 6px;
}
.voice-col {
  border-radius: 14px; padding: 16px 18px;
  border: 1px solid #e6e8f5;
  background: var(--slate-50);
}
.voice-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.voice-col li {
  font-size: 0.86rem; color: var(--indigo-900); font-weight: 500;
  padding-left: 18px; position: relative;
}
.voice-col-head {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.voice-do .voice-col-head { color: #16a34a; }
.voice-do li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.voice-dont .voice-col-head { color: #dc2626; }
.voice-dont li::before { content: '✕'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* Visual direction: swatches + type */
.bpage-swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.swatch {
  background: var(--c); color: #fff;
  border-radius: 12px; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 2px; min-height: 80px;
  justify-content: flex-end;
}
.swatch span { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; }
.swatch em { font-family: monospace; font-style: normal; font-size: 0.7rem; opacity: 0.8; }

.bpage-type { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 2px; }
.type-sample {
  background: var(--slate-50); border-radius: 12px;
  padding: 14px 16px; border: 1px solid #edeff8;
}
.type-sample > span {
  display: block;
  font-size: 0.7rem; color: var(--slate-400);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 6px;
}
.type-preview { font-size: 1.4rem; color: var(--indigo-900); }

/* Content pillars */
.bpage-pillars { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bpage-pillars li {
  display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center;
  padding: 10px 14px; background: var(--slate-50);
  border-radius: 12px; border: 1px solid #edeff8;
}
.bpage-pillars strong {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--indigo-900);
}
.bpage-pillars em {
  font-style: normal; font-size: 0.78rem; color: var(--slate-400);
  text-align: right;
}
.pill-ico { font-size: 1.1rem; text-align: center; }

/* Platform strategy */
.bpage-platforms { display: flex; flex-direction: column; gap: 14px; }
.platform-row {
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  grid-template-rows: auto auto;
  grid-template-areas:
    "name bar pct"
    "note note note";
  gap: 6px 14px; align-items: center;
}
.platform-name {
  grid-area: name;
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--indigo-900);
}
.platform-bar {
  grid-area: bar; position: relative;
  height: 10px; background: #edeff8; border-radius: 100px; overflow: hidden;
}
.platform-bar > span {
  display: block; height: 100%; border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.platform-pct {
  grid-area: pct; text-align: right;
  font-family: var(--font-head); font-weight: 700; font-size: 0.86rem;
  color: var(--indigo-700);
}
.platform-note {
  grid-area: note;
  font-size: 0.78rem; color: var(--slate-400); padding-left: 124px;
  margin-top: -2px;
}

/* ─── Team / Strategists ────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.team-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.team-card::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), #ec4899, #6366f1);
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card:hover::after { transform: scaleX(1); }
.team-avatar {
  width: 104px; height: 104px; border-radius: 50%;
  margin: 0 auto 18px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  padding: 3px; box-shadow: 0 14px 40px rgba(244,200,66,0.25);
}
.team-avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  display: block;
}
.team-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--indigo-900); margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold-500); margin-bottom: 12px;
}
.team-bio { font-size: 0.88rem; color: var(--slate-400); line-height: 1.6; }

/* ─── How It Works ──────────────────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 64px;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--gold-500), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.process-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--indigo-900);
  border: 3px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  color: var(--gold-500); transition: var(--transition);
  box-shadow: 0 0 0 8px rgba(244,200,66,0.08);
}
.process-step:hover .process-step-num {
  background: var(--gold-500); color: var(--indigo-900);
  box-shadow: 0 0 0 12px rgba(244,200,66,0.15);
}
.process-step-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 10px;
}
.process-step-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ─── Who It's For ──────────────────────────────────────── */
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px;
}
.audience-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: var(--transition); cursor: default;
}
.audience-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(244,200,66,0.3);
  transform: translateY(-4px);
}
.audience-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.audience-title {
  font-family: var(--font-head); font-weight: 700; color: var(--white);
  font-size: 1rem; margin-bottom: 8px;
}
.audience-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ─── Pricing Cards ──────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 60px; align-items: end;
}
.pricing-card {
  background: var(--white); border: 2px solid var(--slate-100);
  border-radius: var(--radius-xl); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--slate-200);
}
.pricing-card.featured {
  background: var(--indigo-900); border-color: var(--gold-500);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(13,15,43,0.3), 0 0 0 1px rgba(244,200,66,0.3);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold-500); color: var(--indigo-900);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; font-family: var(--font-head);
}
.pricing-card.featured .pricing-badge {
  background: rgba(244,200,66,0.15); color: var(--gold-400);
  border: 1px solid rgba(244,200,66,0.3);
}
.pricing-plan-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  color: var(--indigo-900); margin-bottom: 8px;
}
.pricing-card.featured .pricing-plan-name { color: var(--white); }
.pricing-desc { font-size: 0.85rem; color: var(--slate-400); margin-bottom: 28px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }
.pricing-amount {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px;
}
.pricing-currency {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--indigo-700);
}
.pricing-card.featured .pricing-currency { color: var(--gold-400); }
.pricing-number {
  font-family: var(--font-head); font-weight: 900; font-size: 3rem;
  line-height: 1; color: var(--indigo-900);
}
.pricing-card.featured .pricing-number { color: var(--white); }
.pricing-period { font-size: 0.85rem; color: var(--slate-400); }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--slate-600);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-features li::before {
  content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0;
  width: 18px; height: 18px; background: rgba(34,197,94,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; margin-top: 2px;
}
.pricing-divider {
  height: 1px; background: var(--slate-100); margin-bottom: 28px;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-meta { font-size: 0.78rem; color: var(--slate-400); margin-top: 16px; text-align: center; }
.pricing-card.featured .pricing-meta { color: rgba(255,255,255,0.4); }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--slate-100); border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(244,200,66,0.3); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; gap: 16px; text-align: left;
  transition: var(--transition);
}
.faq-question:hover { background: var(--slate-50); }
.faq-q-text {
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  color: var(--indigo-900); line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--slate-100); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--slate-600);
  transition: var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--gold-500); color: var(--indigo-900); transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px; font-size: 0.92rem;
  color: var(--slate-600); line-height: 1.75;
  border-top: 1px solid var(--slate-100);
  padding-top: 16px;
}

/* ─── CTA Banner ────────────────────────────────────────── */
/* Dark card floating on body bg — premium feel, clearly distinct from footer */
.cta-banner {
  position: relative; overflow: hidden;
  max-width: 1180px;
  margin: 64px auto;
  padding: 48px 56px;
  border-radius: 24px;
  text-align: left;
  background:
    radial-gradient(at 88% 22%, rgba(244,200,66,0.22) 0%, transparent 45%),
    radial-gradient(at 12% 88%, rgba(99,102,241,0.18) 0%, transparent 45%),
    linear-gradient(135deg, #1a1f5e 0%, #0a0c22 100%);
  border: 1px solid rgba(244,200,66,0.28);
  box-shadow:
    0 30px 80px rgba(13,15,43,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  color: var(--white);
  /* CTA layout: text on left, action buttons on right */
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-banner::before {
  /* Subtle vertical gold accent on left edge */
  content: ''; position: absolute; left: 0; top: 24px; bottom: 24px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}
.cta-banner-orb {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,200,66,0.18) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.cta-banner > .cta-title,
.cta-banner > .cta-sub,
.cta-banner > .cta-actions { position: relative; z-index: 1; }
.cta-banner > .cta-title { grid-column: 1; grid-row: 1; }
.cta-banner > .cta-sub   { grid-column: 1; grid-row: 2; }
.cta-banner > .cta-actions {
  grid-column: 2; grid-row: 1 / span 2;
  flex-direction: column; align-items: stretch;
}
.cta-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em; line-height: 1.2;
  color: var(--white);
  margin: 0 0 8px;
  max-width: 620px;
}
.cta-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  max-width: 580px; line-height: 1.6;
  margin: 0;
}
.cta-actions {
  display: flex; gap: 10px; flex-wrap: nowrap;
}
.cta-banner .btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(244,200,66,0.5);
  color: var(--gold-400); transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px;
    margin: 40px 14px;
  }
  .cta-banner > .cta-title    { grid-column: 1; grid-row: auto; }
  .cta-banner > .cta-sub      { grid-column: 1; grid-row: auto; }
  .cta-banner > .cta-actions  { grid-column: 1; grid-row: auto; flex-direction: row; justify-content: center; }
}

/* ─── Footer V2 ─────────────────────────────────────────── */
.footer {
  position: relative; isolation: isolate;
  background: radial-gradient(ellipse at top, #0D0F2B 0%, #05071a 80%);
  color: rgba(255,255,255,0.6);
  padding: 64px 24px 32px;
}
/* Orbs clipped here, separate from footer's stacking ctx. */
.footer-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.footer-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.16;
}
.footer-orb-1 {
  width: 500px; height: 500px; top: -180px; right: -120px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
}
.footer-orb-2 {
  width: 500px; height: 500px; bottom: -220px; left: -120px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  opacity: 0.2;
}

/* CTA strip on top of footer */
.footer-cta {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto 64px;
  background: linear-gradient(135deg, #1f2670 0%, #0a0c22 100%);
  border: 1px solid rgba(244,200,66,0.35);
  border-radius: 28px;
  padding: 44px 52px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45),
              inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.footer-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(at 80% 20%, rgba(244,200,66,0.22), transparent 55%);
  pointer-events: none;
}
.footer-cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: center;
}
.footer-cta-label {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  color: var(--gold-500); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-cta-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white); line-height: 1.15; letter-spacing: -0.02em;
  max-width: 520px;
}
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 56px;
  max-width: 1240px; margin: 0 auto;
  padding-bottom: 56px;
}
.footer-brand-col { max-width: 360px; }
.footer-brand-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  color: var(--white); margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.footer-brand-desc {
  font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}

.footer-newsletter { margin-bottom: 22px; }
.footer-newsletter-label {
  display: block;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.76rem; color: var(--gold-500);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
.footer-newsletter-row {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px; padding: 4px;
  transition: var(--transition);
}
.footer-newsletter-row:focus-within {
  border-color: rgba(244,200,66,0.4);
  box-shadow: 0 0 0 4px rgba(244,200,66,0.08);
}
.footer-newsletter-row input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); padding: 10px 14px;
  font-family: var(--font-body); font-size: 0.88rem;
}
.footer-newsletter-row input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-row button {
  width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900); border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.footer-newsletter-row button:hover { transform: translateX(2px); box-shadow: 0 8px 22px rgba(244,200,66,0.4); }
.footer-newsletter-ok {
  font-size: 0.8rem; color: var(--success);
  margin-top: 10px; opacity: 0; height: 0; overflow: hidden;
  transition: opacity .4s ease, height .4s ease;
}
.footer-newsletter-ok.show { opacity: 1; height: auto; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  transition: var(--transition); text-decoration: none;
}
.footer-social a:hover {
  color: var(--indigo-900);
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  border-color: transparent; transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244,200,66,0.3);
}

.footer-col-title {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--gold-500); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.footer-links, .footer-contact-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  transition: var(--transition);
  position: relative; padding-left: 0;
}
.footer-links a::before {
  content: '→'; position: absolute; left: -12px; opacity: 0;
  color: var(--gold-500); transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 16px; }
.footer-links a:hover::before { opacity: 1; left: 0; }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.6;
}
.footer-contact-list a { color: inherit; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--gold-500); }
.footer-contact-ico {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px;
  background: rgba(244,200,66,0.1);
  border: 1px solid rgba(244,200,66,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom-copy { flex: 1 1 280px; }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-500); }
.footer-bottom-sep { color: rgba(255,255,255,0.2); }
.footer-bottom-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-trust-chip {
  padding: 4px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6); font-size: 0.74rem; font-weight: 600;
}

/* ─── Alert / Flash ─────────────────────────────────────── */
.flash {
  padding: 14px 20px; border-radius: var(--radius-md);
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; font-weight: 500;
}
.flash-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.flash-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #dc2626; }
.flash-info    { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); color: #2563eb; }

/* ─── Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--indigo-700); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 13px 16px; border: 2px solid var(--slate-200);
  border-radius: var(--radius-md); font-size: 0.95rem; font-family: var(--font-body);
  color: var(--indigo-900); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(244,200,66,0.12); }
.form-control.error { border-color: var(--danger); }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 6px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── Auth Pages ─────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--indigo-900); padding: 80px 24px;
}
.auth-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; max-width: 460px; width: 100%; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  text-align: center; margin-bottom: 36px;
}
.auth-logo-mark {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--indigo-900); margin: 0 auto 16px;
}
.auth-title { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--indigo-900); }
.auth-sub { font-size: 0.9rem; color: var(--slate-400); margin-bottom: 32px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--slate-400); }
.auth-footer a { color: var(--indigo-700); font-weight: 600; }

/* ─── Checkout ───────────────────────────────────────────── */
.checkout-page {
  min-height: 100vh; background: var(--slate-50); padding: 100px 24px 60px;
}
.checkout-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px; gap: 32px;
}
.checkout-form-box, .checkout-summary {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; border: 1px solid var(--slate-100);
}
.checkout-title { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--indigo-900); margin-bottom: 28px; }
.checkout-card-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.plan-summary-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--indigo-900); }
.plan-summary-price { font-family: var(--font-head); font-weight: 900; font-size: 2.4rem; color: var(--gold-500); margin: 12px 0; }
.plan-summary-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.plan-summary-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--slate-600); }
.plan-summary-features li::before { content: '✓'; color: var(--success); font-weight: 700; }
.secure-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--slate-100); }
.secure-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--slate-400); font-weight: 500;
}
.secure-badge-icon { font-size: 0.9rem; }

/* ─── Checkout extras: note toggle + terms agreement ──── */
.checkout-extras {
  margin: 18px 0 22px;
  padding: 18px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
}
.checkout-extra-row {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; padding: 4px 0;
  font-size: 0.88rem; color: var(--slate-600); line-height: 1.55;
  user-select: none;
}
.checkout-extra-row input[type="checkbox"] {
  flex-shrink: 0; margin-top: 2px;
  width: 18px; height: 18px;
  accent-color: var(--gold-500);
  cursor: pointer;
}
.checkout-terms-row {
  border-top: 1px dashed var(--slate-200);
  margin-top: 12px; padding-top: 14px;
}
.checkout-terms-row a {
  color: var(--indigo-700); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgba(99,102,241,0.35);
  transition: var(--transition);
}
.checkout-terms-row a:hover { color: var(--gold-500); border-color: var(--gold-500); }
.checkout-terms-row strong { color: var(--indigo-900); font-weight: 700; }
.checkout-note-wrap {
  margin: 10px 0 14px 30px;
}

/* Pay button — gradient, large, with icon + amount */
.checkout-pay-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px 24px;
  background: linear-gradient(135deg, #6366f1 0%, #38bdf8 100%);
  color: var(--white); border: none; cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(99,102,241,0.35);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.checkout-pay-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(99,102,241,0.45);
}
.checkout-pay-btn:disabled,
.checkout-pay-btn.is-processing { opacity: 0.7; cursor: wait; transform: none; }
.checkout-pay-btn .pay-btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
}
.checkout-secure-line {
  text-align: center; margin-top: 14px;
  font-size: 0.82rem; color: var(--slate-400); font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.checkout-secure-lock { font-size: 0.85rem; }

/* ─── Legal Pages ────────────────────────────────────────── */
.legal-page { padding: 120px 24px 80px; min-height: 100vh; }
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal-badge {
  display: inline-block; background: rgba(244,200,66,0.12);
  color: var(--gold-500); padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 20px;
  border: 1px solid rgba(244,200,66,0.25);
}
.legal-title { font-family: var(--font-head); font-weight: 900; font-size: 2.4rem; color: var(--indigo-900); margin-bottom: 16px; }
.legal-date { font-size: 0.88rem; color: var(--slate-400); margin-bottom: 48px; }
.legal-body { font-size: 0.95rem; line-height: 1.85; color: #3d4065; }
.legal-body h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--indigo-900); margin: 40px 0 14px; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--indigo-700); text-decoration: underline; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-page { padding: 120px 24px 80px; min-height: 100vh; background: var(--slate-50); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-box { background: var(--indigo-900); border-radius: var(--radius-xl); padding: 44px; }
.contact-info-box h2 { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.contact-info-box p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(244,200,66,0.12); border: 1px solid rgba(244,200,66,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-detail-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-bottom: 4px; }
.contact-detail-value { color: var(--white); font-size: 0.92rem; line-height: 1.5; }
.contact-form-box { background: var(--white); border-radius: var(--radius-xl); padding: 44px; border: 1px solid var(--slate-100); }
.contact-form-title { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--indigo-900); margin-bottom: 8px; }
.contact-form-sub { color: var(--slate-400); font-size: 0.9rem; margin-bottom: 32px; }

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
  background: var(--indigo-900); padding: 120px 24px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--header-bg, url('https://picsum.photos/seed/beh-header-default/1600/600'));
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(244,200,66,0.22) 0%, transparent 45%),
    radial-gradient(at 80% 70%, rgba(99,102,241,0.28) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13,15,43,0.88) 0%, rgba(13,15,43,0.96) 100%);
}
.page-header-orb {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(244,200,66,0.1) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.page-header > *:not(.page-header-orb) { position: relative; z-index: 2; }
.page-header h1 {
  font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); position: relative; letter-spacing: -0.02em;
}
.page-header p {
  color: rgba(255,255,255,0.55); font-size: 1rem; margin-top: 14px; position: relative;
}
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.4); position: relative;
}
.page-breadcrumb a { color: rgba(255,255,255,0.5); }
.page-breadcrumb a:hover { color: var(--gold-500); }
.page-breadcrumb span { color: var(--gold-500); }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes meshShift {
  0%, 100% { background-position: 0% 0%; }
  33% { background-position: 100% 50%; }
  66% { background-position: 50% 100%; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.4); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes mockupFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateY(-14px); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes gradientBtn {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .hero-orb, .hero-sparkle, .hero-visual-glow,
  .hero-mockup, .gradient-animate, .btn-gradient, .floating-badge {
    animation: none !important;
  }
}

/* Feature comparison table */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.comparison-table th {
  background: var(--indigo-900); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  padding: 16px 20px; text-align: center;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.featured-col { color: var(--gold-500); }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; text-align: center; }
.comparison-table td:first-child { text-align: left; color: var(--indigo-900); font-weight: 500; }
.comparison-table tr:hover td { background: var(--slate-50); }
.check { color: var(--success); font-weight: 700; font-size: 1rem; }
.cross { color: var(--slate-200); }

/* ─── Responsive ─────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   TIER 1 — Marketing pages
═══════════════════════════════════════════════════════════ */

/* ─── About ─────────────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 64px; align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(13,15,43,0.15);
}
.about-photo-badge {
  position: absolute; left: -20px; bottom: 24px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  border: 1px solid var(--slate-100);
}
.about-photo-badge span {
  font-size: 0.72rem; color: var(--gold-500); font-family: var(--font-head);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.about-photo-badge strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  color: var(--indigo-900); margin-top: 4px;
}
.about-lede {
  font-size: 1.12rem; color: var(--indigo-900);
  line-height: 1.65; margin: 28px 0 18px; font-weight: 500;
}
.about-body {
  font-size: 1rem; line-height: 1.75; color: var(--slate-600);
  margin-bottom: 16px;
}
.about-signature {
  display: flex; align-items: center; gap: 14px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--slate-100);
}
.about-signature img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.about-signature strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  color: var(--indigo-900); font-size: 0.96rem;
}
.about-signature span { font-size: 0.82rem; color: var(--slate-400); }

.principles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.principle {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(244,200,66,0.3); }
.principle-num {
  font-family: var(--font-head); font-weight: 900; font-size: 1.6rem;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.principle h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.15rem; color: var(--indigo-900);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.principle p { color: var(--slate-600); line-height: 1.7; font-size: 0.94rem; }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.about-stats > div {
  text-align: center; padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.about-stats strong {
  display: block; font-family: var(--font-head); font-weight: 900;
  font-size: 2.6rem; line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-stats strong span {
  font-size: 0.55em; color: var(--gold-500);
  -webkit-text-fill-color: var(--gold-500);
}
.about-stats em {
  display: block; font-style: normal; margin-top: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600;
}

/* ─── Process / Methodology ─────────────────────────────── */
.process-timeline { position: relative; }
.timeline-phase {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 28px; margin-bottom: 64px; position: relative;
}
.timeline-phase:last-child { margin-bottom: 0; }
.timeline-phase::before {
  content: ''; position: absolute; left: 49px; top: 96px; bottom: -64px;
  width: 2px; background: linear-gradient(var(--gold-500), transparent);
  opacity: 0.3;
}
.timeline-phase:last-child::before { display: none; }
.timeline-left { position: relative; z-index: 1; }
.timeline-dot {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-700));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.3rem;
  color: var(--gold-500); border: 3px solid var(--gold-500);
  box-shadow: 0 0 0 8px rgba(244,200,66,0.08), 0 14px 30px rgba(13,15,43,0.15);
}
.timeline-eyebrow {
  font-size: 0.78rem; color: var(--gold-500); font-family: var(--font-head);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.7rem; color: var(--indigo-900);
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.timeline-lede {
  font-size: 1.02rem; color: var(--slate-600);
  line-height: 1.7; margin-bottom: 18px;
}
.timeline-card {
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 22px 24px;
}
.timeline-card-head {
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  color: var(--indigo-700); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.timeline-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.timeline-card li {
  font-size: 0.92rem; color: var(--indigo-900); line-height: 1.55;
  padding-left: 22px; position: relative;
}
.timeline-card li::before {
  content: '→'; position: absolute; left: 0; color: var(--gold-500);
  font-weight: 700;
}
.timeline-card li em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(244,200,66,0.35) 60%);
  padding: 0 2px;
}

.ai-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 56px; max-width: 960px; margin-left: auto; margin-right: auto;
}
.ai-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.ai-col-head {
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
  color: rgba(255,255,255,0.55); margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ai-col-us { border-color: rgba(244,200,66,0.3); background: rgba(244,200,66,0.04); }
.ai-col-us .ai-col-head { color: var(--gold-400); }
.ai-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ai-col li {
  font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.6;
  padding-left: 22px; position: relative;
}
.ai-col:not(.ai-col-us) li::before {
  content: '✕'; position: absolute; left: 0;
  color: #ef4444; font-weight: 700;
}
.ai-col-us li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--success); font-weight: 700;
}

/* ─── Book a Call ────────────────────────────────────────── */
.bookcall-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: start;
}
.bookcall-feature {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 18px; margin-bottom: 28px; align-items: start;
}
.bookcall-feature-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(244,200,66,0.25);
}
.bookcall-feature h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  color: var(--indigo-900); margin-bottom: 6px; letter-spacing: -0.01em;
}
.bookcall-feature p {
  font-size: 0.96rem; color: var(--slate-600); line-height: 1.65;
}
.bookcall-foritnotfor {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 40px;
}
.fitfor {
  border-radius: var(--radius-lg); padding: 20px 22px;
  border: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.fitfor-head {
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.fitfor-yes .fitfor-head { color: #16a34a; }
.fitfor-no .fitfor-head { color: #dc2626; }
.fitfor ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fitfor li {
  font-size: 0.88rem; color: var(--indigo-900); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.fitfor-yes li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.fitfor-no  li::before { content: '✕'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.bookcall-form-wrap { position: sticky; top: 100px; }
.bookcall-form-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(13,15,43,0.08);
}
.bookcall-form-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--slate-100); }
.bookcall-form-title {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: var(--indigo-900);
}
.bookcall-form-sub { font-size: 0.88rem; color: var(--slate-400); margin-top: 4px; }
.bookcall-alt {
  margin-top: 20px; padding: 22px 24px;
  background: var(--indigo-900); color: var(--white);
  border-radius: var(--radius-lg);
}
.bookcall-alt-head {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; color: var(--gold-500);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.bookcall-alt p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }

/* ─── Sample Blueprint ─────────────────────────────────── */
.sample-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 56px; align-items: start;
}
.sample-mockup {
  background: #0D0F2B; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(13,15,43,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}
.sample-mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sample-mockup-label {
  margin-left: 14px; font-family: var(--font-head);
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}
.sample-mockup img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: saturate(0.95);
}
.sample-pages-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 16px;
}
.sample-pages-strip figure {
  margin: 0; background: var(--slate-50);
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--slate-100);
  transition: var(--transition);
}
.sample-pages-strip figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sample-pages-strip img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
}
.sample-pages-strip figcaption {
  padding: 8px 10px; font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700; color: var(--indigo-900);
  letter-spacing: 0.05em; text-transform: uppercase; text-align: center;
}

.sample-form-col { position: sticky; top: 100px; }
.sample-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px 28px; border: 1px solid var(--slate-100);
  box-shadow: 0 20px 50px rgba(13,15,43,0.08);
}
.sample-form-eyebrow {
  display: inline-block;
  background: rgba(244,200,66,0.15); color: var(--indigo-900);
  padding: 4px 12px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.sample-form-title {
  font-family: var(--font-head); font-weight: 900; font-size: 1.6rem;
  color: var(--indigo-900); letter-spacing: -0.02em; margin-bottom: 8px;
}
.sample-form-sub { font-size: 0.92rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 22px; }
.sample-faq { margin-top: 24px; border-top: 1px solid var(--slate-100); padding-top: 20px; }
.sample-faq details {
  border-bottom: 1px solid var(--slate-100); padding: 14px 0;
}
.sample-faq details:last-child { border-bottom: none; }
.sample-faq summary {
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--indigo-900); cursor: pointer; outline: none;
  list-style: none; position: relative; padding-right: 24px;
}
.sample-faq summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  color: var(--gold-500); font-size: 1.1rem; font-weight: 700;
  transition: transform 0.25s ease;
}
.sample-faq details[open] summary::after { transform: rotate(45deg); }
.sample-faq p {
  margin-top: 10px; font-size: 0.88rem; color: var(--slate-600);
  line-height: 1.7;
}

/* ─── Thanks page ───────────────────────────────────────── */
.thanks-card {
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-800));
  color: var(--white); border-radius: var(--radius-xl);
  padding: 48px 44px; text-align: center;
  border: 1px solid rgba(244,200,66,0.2);
  box-shadow: 0 40px 80px rgba(13,15,43,0.15);
  position: relative; overflow: hidden;
}
.thanks-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(at 70% 30%, rgba(244,200,66,0.15), transparent 60%);
  pointer-events: none;
}
.thanks-card > * { position: relative; z-index: 1; }
.thanks-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--gold-400); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 14px;
}
.thanks-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.thanks-sub {
  color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 28px;
  font-size: 1rem; line-height: 1.65;
}
.thanks-code {
  display: inline-block;
  background: var(--gold-500); color: var(--indigo-900);
  padding: 4px 12px; border-radius: 8px;
  font-family: monospace; font-weight: 700; letter-spacing: 0.1em;
}
.thanks-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.thanks-next { margin-top: 48px; }
.thanks-next-head {
  text-align: center; font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem; color: var(--slate-400);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.thanks-next-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.thanks-next-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center; transition: var(--transition); text-decoration: none; color: inherit;
  display: block;
}
.thanks-next-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(244,200,66,0.3); }
.thanks-next-ico { font-size: 1.8rem; margin-bottom: 10px; }
.thanks-next-card strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.98rem; color: var(--indigo-900); margin-bottom: 4px;
}
.thanks-next-card span { font-size: 0.84rem; color: var(--slate-400); line-height: 1.5; }

/* ─── Case Studies ──────────────────────────────────────── */
.cs-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0; background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 56px; text-decoration: none; color: inherit;
  transition: var(--transition);
}
.cs-featured:hover { box-shadow: var(--shadow-lg); border-color: rgba(244,200,66,0.3); }
.cs-featured:hover .cs-arrow { transform: translateX(4px); }
.cs-featured-photo { position: relative; overflow: hidden; min-height: 380px; }
.cs-featured-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: absolute; inset: 0;
}
.cs-featured:hover .cs-featured-photo img { transform: scale(1.05); }
.cs-featured-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.cs-featured-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900);
  padding: 5px 14px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  align-self: flex-start;
}
.cs-featured-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--indigo-900);
}
.cs-featured-sub { font-size: 0.98rem; color: var(--slate-600); line-height: 1.65; }
.cs-featured-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; padding: 16px 0; border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100);
}
.cs-featured-metrics > div { display: flex; flex-direction: column; }
.cs-featured-metrics span {
  font-size: 0.7rem; color: var(--slate-400);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 4px;
}
.cs-featured-metrics strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  color: var(--indigo-900);
}
.cs-featured-cta {
  font-family: var(--font-head); font-weight: 700;
  color: var(--gold-500); display: inline-flex; align-items: center; gap: 8px;
}
.cs-arrow { transition: transform 0.25s ease; display: inline-block; }

.cs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cs-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244,200,66,0.3); }
.cs-card:hover .cs-arrow { transform: translateX(4px); }
.cs-card-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cs-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cs-card:hover .cs-card-photo img { transform: scale(1.05); }
.cs-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,15,43,0.85); color: var(--gold-400);
  padding: 4px 12px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.cs-card-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.cs-card-name {
  font-size: 0.82rem; color: var(--gold-500);
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.cs-card-name span {
  color: var(--slate-400); text-transform: none; letter-spacing: 0;
  font-weight: 400; font-size: 0.82rem;
}
.cs-card-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.1rem; line-height: 1.3; color: var(--indigo-900);
  letter-spacing: -0.01em;
}
.cs-card-metrics {
  display: flex; gap: 16px; padding: 12px 0;
  border-top: 1px solid var(--slate-100);
}
.cs-card-metrics > span {
  display: flex; flex-direction: column; font-size: 0.72rem;
  color: var(--slate-400); letter-spacing: 0.04em;
}
.cs-card-metrics em {
  font-style: normal; font-family: var(--font-head);
  font-weight: 800; font-size: 0.95rem; color: var(--indigo-900);
}
.cs-card-cta {
  margin-top: auto; font-family: var(--font-head);
  font-weight: 700; color: var(--gold-500); font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Case study detail — hero card */
.cs-detail-hero {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--white); border: 1px solid var(--slate-100);
  box-shadow: 0 30px 80px rgba(13,15,43,0.10); margin-bottom: 56px;
}
.cs-detail-hero-photo {
  position: relative; aspect-ratio: 21 / 9; overflow: hidden;
  background: var(--slate-50);
}
.cs-detail-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.95);
}
.cs-detail-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,7,26,0.6) 100%);
  pointer-events: none;
}
.cs-detail-hero-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900);
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(244,200,66,0.35);
}
.cs-detail-hero-attr {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
}
.cs-detail-hero-attr img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.cs-detail-hero-attr-text { display: flex; flex-direction: column; }
.cs-detail-hero-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  color: var(--white); line-height: 1.2;
}
.cs-detail-hero-role { font-size: 0.82rem; color: rgba(255,255,255,0.78); margin-top: 2px; }
.cs-detail-hero-body { padding: 36px 40px 40px; display: flex; flex-direction: column; gap: 24px; }
.cs-detail-hero-headline {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.2;
  letter-spacing: -0.02em; color: var(--indigo-900); max-width: 720px;
}
.cs-detail-hero-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; padding: 22px 0 0;
  border-top: 1px solid var(--slate-100);
}
.cs-detail-hero-metric { display: flex; flex-direction: column; gap: 6px; }
.cs-detail-hero-metric span {
  font-size: 0.7rem; color: var(--slate-400);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.cs-detail-hero-metric strong {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.1rem; color: var(--indigo-900); line-height: 1.25;
}
.cs-detail-hero-metric-plan strong { color: var(--gold-500); }
@media (max-width: 768px) {
  .cs-detail-hero-photo { aspect-ratio: 16 / 9; }
  .cs-detail-hero-body { padding: 28px 24px 32px; }
  .cs-detail-hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cs-detail-hero-attr img { width: 48px; height: 48px; }
}

/* Case study detail — legacy block layout (kept for compat) */
.cs-hero {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 40px; align-items: center; margin-bottom: 72px;
  padding-bottom: 40px; border-bottom: 1px solid var(--slate-100);
}
.cs-hero-photo { border-radius: var(--radius-xl); overflow: hidden; }
.cs-hero-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.cs-hero-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cs-metric {
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 18px 20px;
}
.cs-metric span {
  display: block; font-size: 0.7rem; color: var(--slate-400);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px;
}
.cs-metric strong {
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  color: var(--indigo-900);
}
.cs-metric-plan strong { color: var(--gold-500); }
.cs-section { margin-bottom: 56px; }
.cs-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--gold-500); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.cs-h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em; color: var(--indigo-900); margin-bottom: 16px;
}
.cs-lede { font-size: 1.05rem; color: var(--slate-600); line-height: 1.75; }
.cs-positioning {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.4;
  padding: 28px 32px; border-left: 4px solid var(--gold-500);
  background: linear-gradient(135deg, rgba(244,200,66,0.08) 0%, transparent 100%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: var(--indigo-900); margin: 0;
}
.cs-positioning-meta {
  font-size: 0.82rem; color: var(--slate-400);
  margin-top: 12px; padding-left: 36px;
}
.cs-results { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cs-results li {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 14px; align-items: flex-start;
  font-size: 1rem; color: var(--indigo-900); line-height: 1.6;
}
.cs-results span {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: #16a34a;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.cs-quote {
  background: var(--indigo-900); color: var(--white);
  border-radius: var(--radius-xl); padding: 48px 44px;
  margin: 64px 0; position: relative; overflow: hidden;
}
.cs-quote::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(at 80% 20%, rgba(244,200,66,0.15), transparent 60%);
  pointer-events: none;
}
.cs-quote > * { position: relative; z-index: 1; }
.cs-quote-mark {
  font-family: var(--font-head); font-weight: 900; font-size: 5rem;
  line-height: 1; color: var(--gold-500); margin-bottom: -20px;
}
.cs-quote blockquote {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.5;
  letter-spacing: -0.01em; margin-bottom: 28px;
}
.cs-quote-attr { display: flex; align-items: center; gap: 14px; }
.cs-quote-attr img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.cs-quote-attr strong {
  display: block; font-family: var(--font-head);
  font-weight: 700; font-size: 0.98rem;
}
.cs-quote-attr span { color: rgba(255,255,255,0.55); font-size: 0.84rem; }

.cs-midcta {
  text-align: center; padding: 40px 32px;
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
}
.cs-midcta h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--indigo-900);
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.cs-midcta p { color: var(--slate-600); margin-bottom: 24px; }
.cs-midcta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Brand Audit ───────────────────────────────────────── */
.audit-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); padding: 48px 44px;
  box-shadow: 0 20px 50px rgba(13,15,43,0.06);
  min-height: 480px; position: relative;
}
.audit-screen { display: none; }
.audit-screen.is-active { display: block; animation: auditFade 0.35s ease; }
@keyframes auditFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.audit-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.76rem;
  color: var(--gold-500); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.audit-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em; color: var(--indigo-900); margin-bottom: 14px;
}
.audit-lede {
  font-size: 1.02rem; color: var(--slate-600);
  line-height: 1.65; margin-bottom: 28px; max-width: 560px;
}
.audit-dims {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 10px; margin-bottom: 32px;
}
.audit-dim {
  text-align: center; padding: 16px 10px;
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.audit-dim-ico { font-size: 1.4rem; }
.audit-dim strong {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--indigo-900);
}

.audit-progress { margin-bottom: 24px; }
.audit-progress-text {
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  color: var(--slate-400); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 10px;
}
.audit-progress-bar {
  height: 4px; background: var(--slate-100); border-radius: 100px; overflow: hidden;
}
.audit-progress-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-500), #e8a800);
  transition: width 0.4s ease;
}
.audit-q-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  color: var(--gold-500); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.audit-q-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.35;
  color: var(--indigo-900); margin-bottom: 28px; letter-spacing: -0.01em;
}
.audit-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.audit-opt {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 16px 20px; cursor: pointer;
  background: var(--slate-50); border: 2px solid var(--slate-100);
  border-radius: var(--radius-md); text-align: left;
  font-size: 0.96rem; color: var(--indigo-900);
  font-family: var(--font-body); font-weight: 500;
  transition: var(--transition);
}
.audit-opt:hover {
  border-color: var(--gold-400); background: rgba(244,200,66,0.05);
}
.audit-opt.is-selected {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, rgba(244,200,66,0.12), rgba(244,200,66,0.04));
}
.audit-opt-radio {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--slate-200); flex-shrink: 0;
  transition: var(--transition); position: relative;
}
.audit-opt.is-selected .audit-opt-radio {
  border-color: var(--gold-500); background: var(--gold-500);
}
.audit-opt.is-selected .audit-opt-radio::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo-900); font-size: 0.75rem; font-weight: 900;
}
.audit-q-foot { display: flex; justify-content: flex-start; }

.audit-result-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1;
  letter-spacing: -0.03em; color: var(--indigo-900);
  margin-bottom: 14px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.audit-result-title em {
  font-style: normal; font-size: 0.4em;
  color: var(--slate-400); font-weight: 700;
}
.audit-result-tier {
  font-size: 0.4em; padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-left: 4px;
}
.audit-result-tier.tier-a { background: rgba(34,197,94,0.12); color: #16a34a; }
.audit-result-tier.tier-b { background: rgba(244,200,66,0.15); color: #92400e; }
.audit-result-tier.tier-c { background: rgba(249,115,22,0.12); color: #ea580c; }
.audit-result-tier.tier-d { background: rgba(239,68,68,0.12); color: #dc2626; }
.audit-result-lede {
  font-size: 1.02rem; color: var(--slate-600);
  line-height: 1.65; margin-bottom: 32px; max-width: 580px;
}

.audit-breakdown { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.audit-row { }
.audit-row-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.audit-row-head span {
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--indigo-900);
}
.audit-row-head strong {
  font-family: var(--font-head); font-weight: 900; font-size: 1rem;
  color: var(--indigo-900);
}
.audit-row-head em { font-style: normal; color: var(--slate-400); font-weight: 400; }
.audit-row-bar {
  height: 8px; background: var(--slate-100); border-radius: 100px; overflow: hidden;
}
.audit-row-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-500), #e8a800);
  border-radius: 100px;
}

.audit-reco {
  padding: 32px 28px; background: var(--indigo-900);
  border-radius: var(--radius-xl); color: var(--white);
  position: relative; overflow: hidden;
}
.audit-reco::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(at 80% 30%, rgba(244,200,66,0.15), transparent 60%);
  pointer-events: none;
}
.audit-reco > * { position: relative; z-index: 1; }
.audit-reco-head {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--gold-400); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.audit-reco h3 {
  font-family: var(--font-head); font-weight: 900; font-size: 1.5rem;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.audit-reco p { color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 22px; }
.audit-reco-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Guarantee ─────────────────────────────────────────── */
.guarantee-seal {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px; margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(244,200,66,0.12), rgba(244,200,66,0.04));
  border: 1px solid rgba(244,200,66,0.3);
  border-radius: var(--radius-xl);
}
.guarantee-seal-ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--gold-500); color: var(--indigo-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(244,200,66,0.3);
}
.guarantee-seal-ring span {
  font-family: var(--font-head); font-weight: 900; font-size: 1.8rem;
  line-height: 1;
}
.guarantee-seal-ring em {
  font-style: normal; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.guarantee-seal-text strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: var(--indigo-900); margin-bottom: 2px;
}
.guarantee-seal-text span { color: var(--slate-600); font-size: 0.92rem; }

.guarantee-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--gold-500); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.guarantee-promise, .guarantee-how, .guarantee-why { margin-bottom: 48px; }
.guarantee-lede {
  font-size: 1.08rem; color: var(--indigo-900);
  line-height: 1.75; margin-bottom: 14px;
}
.guarantee-lede code {
  background: rgba(244,200,66,0.2); padding: 1px 8px;
  border-radius: 6px; font-weight: 700; color: var(--indigo-900);
}

.guarantee-columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 48px;
}
.guarantee-col {
  padding: 24px 26px; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100); background: var(--slate-50);
}
.guarantee-col-head {
  font-family: var(--font-head); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
}
.guarantee-col-yes .guarantee-col-head { color: #16a34a; }
.guarantee-col-no .guarantee-col-head  { color: #dc2626; }
.guarantee-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guarantee-col li {
  font-size: 0.9rem; color: var(--indigo-900); line-height: 1.55;
  padding-left: 22px; position: relative;
}
.guarantee-col-yes li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.guarantee-col-no li::before  { content: '✕'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.guarantee-steps {
  list-style: none; counter-reset: steps;
  display: flex; flex-direction: column; gap: 18px;
}
.guarantee-steps li {
  counter-increment: steps;
  padding: 20px 22px 20px 72px;
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); position: relative;
}
.guarantee-steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute; left: 22px; top: 20px;
  font-family: var(--font-head); font-weight: 900; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.guarantee-steps strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; color: var(--indigo-900); margin-bottom: 6px;
}
.guarantee-steps span { font-size: 0.92rem; color: var(--slate-600); line-height: 1.6; }
.guarantee-steps code {
  background: var(--slate-100); padding: 1px 6px; border-radius: 4px;
  font-size: 0.86em; color: var(--indigo-900);
}

.guarantee-why p { font-size: 1rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 14px; }

/* ─── Testimonials ──────────────────────────────────────── */
.tm-summary {
  display: grid; grid-template-columns: auto 1px 1fr;
  gap: 40px; align-items: center;
  padding: 40px 32px; margin-bottom: 48px;
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-800));
  border-radius: var(--radius-xl); color: var(--white);
}
.tm-summary-rating { text-align: center; }
.tm-summary-stars {
  color: var(--gold-500); font-size: 1.3rem; letter-spacing: 3px;
  margin-bottom: 8px; text-shadow: 0 0 16px rgba(244,200,66,0.4);
}
.tm-summary-score {
  font-family: var(--font-head); font-weight: 900;
  font-size: 3rem; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--gold-300));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tm-summary-score span { font-size: 0.5em; color: var(--gold-400); -webkit-text-fill-color: var(--gold-400); }
.tm-summary-meta { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.tm-summary-divider { width: 1px; height: 80%; background: rgba(255,255,255,0.1); }
.tm-summary-breakdown { display: flex; flex-direction: column; gap: 8px; }
.tm-summary-breakdown > div {
  display: grid; grid-template-columns: 30px 1fr 40px;
  gap: 12px; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.7);
}
.tm-bar {
  height: 6px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden;
}
.tm-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 100px;
}

.tm-wall {
  columns: 3; column-gap: 24px;
}
.tm-card {
  break-inside: avoid; margin: 0 0 24px;
  padding: 24px 26px; background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(13,15,43,0.04);
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(244,200,66,0.3); }
.tm-card-lg {
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-800));
  color: var(--white); border-color: transparent;
}
.tm-card-lg:hover { box-shadow: 0 20px 50px rgba(13,15,43,0.2); }
.tm-quote-mark {
  font-family: var(--font-head); font-weight: 900; font-size: 3rem;
  line-height: 0.7; color: var(--gold-500);
}
.tm-card blockquote {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1rem; line-height: 1.6; color: var(--indigo-900);
}
.tm-card-lg blockquote { color: var(--white); font-size: 1.08rem; }
.tm-card figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--slate-100);
}
.tm-card-lg figcaption { border-color: rgba(255,255,255,0.1); }
.tm-card figcaption img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.tm-card figcaption strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; color: var(--indigo-900);
}
.tm-card-lg figcaption strong { color: var(--white); }
.tm-card figcaption span { font-size: 0.78rem; color: var(--slate-400); }
.tm-card-lg figcaption span { color: rgba(255,255,255,0.55); }

/* ─── Blog ──────────────────────────────────────────────── */
.blog-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-100);
}
.blog-filter a {
  padding: 8px 16px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.84rem;
  background: var(--white); border: 1px solid var(--slate-100);
  color: var(--slate-600); transition: var(--transition);
  text-decoration: none;
}
.blog-filter a:hover { color: var(--indigo-900); border-color: var(--slate-200); }
.blog-filter a.is-active {
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900); border-color: transparent;
  box-shadow: 0 4px 14px rgba(244,200,66,0.3);
}

.blog-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--white); border: 1px solid var(--slate-100);
  text-decoration: none; color: inherit;
  transition: var(--transition); margin-bottom: 56px;
  box-shadow: 0 10px 30px rgba(13,15,43,0.06);
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(13,15,43,0.12);
  border-color: rgba(244,200,66,0.3);
}
.blog-featured:hover .cs-arrow { transform: translateX(4px); }
.blog-featured-photo { position: relative; min-height: 380px; overflow: hidden; }
.blog-featured-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-featured:hover .blog-featured-photo img { transform: scale(1.05); }
.blog-featured-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.blog-featured-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900);
  padding: 5px 14px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  align-self: flex-start;
}
.blog-featured-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2;
  letter-spacing: -0.02em; color: var(--indigo-900);
}
.blog-featured-excerpt { font-size: 1rem; color: var(--slate-600); line-height: 1.65; }
.blog-featured-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--slate-400);
  padding-top: 14px; border-top: 1px solid var(--slate-100);
}
.blog-featured-cta {
  font-family: var(--font-head); font-weight: 700; color: var(--gold-500);
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem;
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(13,15,43,0.12);
  border-color: rgba(244,200,66,0.3);
}
.blog-card:hover .blog-card-photo img { transform: scale(1.05); }
.blog-card-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,15,43,0.85); color: var(--gold-400);
  padding: 4px 12px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.blog-card-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.1rem; line-height: 1.3; color: var(--indigo-900);
  letter-spacing: -0.01em;
}
.blog-card-excerpt { font-size: 0.9rem; color: var(--slate-600); line-height: 1.6; flex: 1; }
.blog-card-meta {
  display: flex; gap: 8px;
  font-size: 0.78rem; color: var(--slate-400);
  padding-top: 12px; border-top: 1px solid var(--slate-100);
}

.blog-pagination { margin-top: 56px; display: flex; justify-content: center; }
.blog-empty { text-align: center; padding: 80px 20px; color: var(--slate-400); }
.blog-empty h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--indigo-900); margin-bottom: 8px; }

.blog-show-cat {
  display: inline-block; margin-bottom: 14px;
  background: rgba(244,200,66,0.18); color: var(--gold-300);
  padding: 5px 14px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(244,200,66,0.3);
  position: relative; z-index: 2;
}
.blog-show-meta {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 24px; position: relative; z-index: 2;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.blog-show-meta .dot { color: rgba(255,255,255,0.3); }
.blog-show-author { display: inline-flex; align-items: center; gap: 8px; }
.blog-show-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244,200,66,0.5); }
.blog-show-author span { color: var(--gold-400); font-weight: 600; }

.blog-article { max-width: 740px; font-size: 1.05rem; line-height: 1.85; color: var(--indigo-900); }
.blog-article h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1.25;
  letter-spacing: -0.02em; color: var(--indigo-900);
  margin: 56px 0 16px;
}
.blog-article h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.25rem; line-height: 1.3; color: var(--indigo-900);
  margin: 36px 0 12px;
}
.blog-article p { margin: 0 0 20px; }
.blog-article ul, .blog-article ol { padding-left: 22px; margin: 0 0 22px; }
.blog-article li { margin-bottom: 8px; }
.blog-article a { color: var(--indigo-700); border-bottom: 1px solid rgba(244,200,66,0.5); transition: var(--transition); }
.blog-article a:hover { color: var(--gold-500); border-color: var(--gold-500); }
.blog-article blockquote {
  margin: 28px 0; padding: 20px 28px;
  border-left: 4px solid var(--gold-500);
  background: rgba(244,200,66,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  color: var(--indigo-900); line-height: 1.5;
}
.blog-article blockquote p:last-child { margin-bottom: 0; }
.blog-article code {
  background: var(--slate-100); padding: 2px 8px; border-radius: 4px;
  font-size: 0.9em; color: var(--indigo-700);
  font-family: 'SF Mono', Monaco, monospace;
}
.blog-article pre {
  background: var(--indigo-900); color: var(--gold-300);
  padding: 18px 22px; border-radius: var(--radius-md);
  overflow-x: auto; margin: 24px 0;
  font-size: 0.86rem; line-height: 1.6;
}
.blog-article pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
.blog-article hr {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
  margin: 40px 0;
}
.blog-article img { border-radius: var(--radius-md); margin: 24px 0; }
.blog-article strong { color: var(--indigo-900); font-weight: 700; }

.blog-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 40px 0 32px; padding-top: 24px;
  border-top: 1px solid var(--slate-100);
}
.blog-tag {
  background: var(--slate-50); color: var(--slate-600);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
}

.blog-inline-cta {
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-800));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin: 40px 0;
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
}
.blog-inline-cta h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: var(--white); margin: 6px 0 8px;
  letter-spacing: -0.01em;
}
.blog-inline-cta p { color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }
.blog-inline-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  color: var(--gold-400); letter-spacing: 0.12em; text-transform: uppercase;
}

.blog-author-card {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; padding: 22px 24px;
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
}
.blog-author-card img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--gold-500);
}
.blog-author-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--indigo-900); }
.blog-author-bio { font-size: 0.88rem; color: var(--slate-600); line-height: 1.5; margin-top: 4px; }

/* ─── User-generated content (rendered HTML from Quill admin editor) ── */
.user-content { line-height: 1.7; color: var(--indigo-900); }
.user-content > *:first-child { margin-top: 0; }
.user-content > *:last-child  { margin-bottom: 0; }
.user-content p           { margin: 0 0 14px; }
.user-content h2          { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; line-height: 1.25; color: var(--indigo-900); margin: 22px 0 10px; }
.user-content h3          { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; line-height: 1.3; color: var(--indigo-900); margin: 18px 0 8px; }
.user-content strong      { font-weight: 700; color: var(--indigo-900); }
.user-content em          { font-style: italic; }
.user-content u           { text-decoration: underline; }
.user-content s           { text-decoration: line-through; opacity: .7; }
.user-content ul,
.user-content ol          { margin: 0 0 14px; padding-left: 22px; }
.user-content li          { margin-bottom: 6px; }
.user-content a           { color: var(--indigo-700); border-bottom: 1px solid rgba(244,200,66,0.5); transition: var(--transition); }
.user-content a:hover     { color: var(--gold-500); border-color: var(--gold-500); }
.user-content blockquote  { margin: 14px 0; padding: 12px 18px; border-left: 4px solid var(--gold-500); background: rgba(244,200,66,0.05); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; }
.user-content blockquote p:last-child { margin-bottom: 0; }
.user-content pre         { background: var(--indigo-900); color: var(--gold-300); padding: 14px 18px; border-radius: var(--radius-md); overflow-x: auto; font-size: .88rem; margin: 14px 0; }
.user-content code        { background: var(--slate-100); padding: 1px 6px; border-radius: 4px; font-size: .9em; color: var(--indigo-700); font-family: 'SF Mono', Monaco, monospace; }
.user-content pre code    { background: none; padding: 0; color: inherit; font-size: inherit; }
.user-content-tight       { font-size: 0.9rem; line-height: 1.6; }
.user-content-tight p     { margin-bottom: 8px; }

/* ─── Glossary ──────────────────────────────────────────── */
.glossary-az {
  position: sticky; top: 80px; z-index: 5;
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid var(--slate-100);
  border-radius: 999px;
  margin-bottom: 24px;
  justify-content: center;
}
.glossary-az a, .glossary-az span {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--slate-400); transition: var(--transition);
}
.glossary-az a {
  color: var(--indigo-900); cursor: pointer; text-decoration: none;
  background: var(--slate-50);
}
.glossary-az a:hover {
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  color: var(--indigo-900); transform: translateY(-2px);
}

.glossary-summary {
  text-align: center; margin-bottom: 40px;
  font-size: 0.92rem; color: var(--slate-400);
}
.glossary-summary strong { color: var(--indigo-900); font-weight: 700; }

.glossary-section { margin-bottom: 56px; scroll-margin-top: 100px; }
.glossary-letter {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-500), #e8a800);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  display: inline-block; padding-right: 14px;
  border-bottom: 3px solid var(--gold-500);
  padding-bottom: 6px;
}
.glossary-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.glossary-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: 22px 24px;
  transition: var(--transition);
  scroll-margin-top: 110px;
}
.glossary-card:hover { border-color: rgba(244,200,66,0.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.glossary-card h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; color: var(--indigo-900);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.glossary-card p {
  font-size: 0.9rem; color: var(--slate-600);
  line-height: 1.65;
}
.glossary-tag {
  display: inline-block; margin-top: 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  color: var(--slate-600);
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: var(--font-head);
}
@media (max-width: 768px) {
  .glossary-grid { grid-template-columns: 1fr; }
  .glossary-az { gap: 2px; padding: 8px 10px; }
  .glossary-az a, .glossary-az span { width: 26px; height: 26px; font-size: 0.72rem; }
}

/* ─── FAQ category sections ─────────────────────────────── */
.faq-section { margin-bottom: 40px; }
.faq-section + .faq-section { padding-top: 8px; }
.faq-section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: var(--indigo-900);
  letter-spacing: -0.01em; margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-photo { min-height: 280px; aspect-ratio: 16/9; }
  .blog-featured-body { padding: 32px 28px; }
  .blog-inline-cta { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article { font-size: 1rem; }
}

/* ─── Mobile menu quick links (added with Tier 1) ──────── */
.mobile-menu-quick {
  padding: 18px 20px; border-radius: var(--radius-lg);
  background: rgba(244,200,66,0.06);
  border: 1px solid rgba(244,200,66,0.15);
}
.mobile-menu-quick-title {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  color: var(--gold-500); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.mobile-menu-quick a {
  display: block; color: rgba(255,255,255,0.85); font-size: 0.95rem;
  padding: 8px 0; border: none; background: none;
  font-family: var(--font-body); font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   Responsive overrides for Tier 1 pages
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .principles-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .ai-compare { grid-template-columns: 1fr; }
  .bookcall-grid { grid-template-columns: 1fr; }
  .bookcall-form-wrap { position: static; }
  .sample-grid { grid-template-columns: 1fr; }
  .sample-form-col { position: static; }
  .cs-featured { grid-template-columns: 1fr; }
  .cs-featured-photo { min-height: 280px; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-hero { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .cs-hero-photo { max-width: 240px; margin: 0 auto; }
  .thanks-next-grid { grid-template-columns: 1fr; }
  .audit-dims { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .audit-dim { padding: 10px 6px; }
  .audit-dim strong { font-size: 0.7rem; }
  .audit-card { padding: 32px 24px; }
  .guarantee-columns { grid-template-columns: 1fr; }
  .tm-summary { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .tm-summary-divider { display: none; }
  .tm-wall { columns: 2; }
}
@media (max-width: 768px) {
  .about-stats { grid-template-columns: 1fr; }
  .bookcall-foritnotfor { grid-template-columns: 1fr; }
  .sample-pages-strip { grid-template-columns: repeat(2, 1fr); }
  .timeline-phase { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline-dot { width: 52px; height: 52px; font-size: 0.95rem; }
  .timeline-phase::before { left: 32px; top: 64px; }
  .cs-quote { padding: 32px 24px; }
  .audit-dims { grid-template-columns: repeat(5, 1fr); }
  .audit-reco { padding: 24px 20px; }
  .audit-reco h3 { font-size: 1.2rem; }
  .tm-wall { columns: 1; }
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .hero-v2-inner { grid-template-columns: 1fr; gap: 48px; padding: 32px 0 20px; }
  .hero-v2-content { max-width: none; text-align: center; margin: 0 auto; }
  .hero-v2-sub { margin-left: auto; margin-right: auto; }
  .hero-v2-actions { justify-content: center; }
  .hero-v2-meta { justify-content: center; }
  .hero-v2-visual { height: 420px; max-width: 460px; margin: 0 auto; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; padding: 18px 22px; }
  .hero-stats-strip .stat-divider { display: none; }
  .checkout-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand-col { grid-column: span 2; max-width: none; }
  .footer-cta { padding: 36px; }
  .footer-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-cta-title { margin: 0 auto; }
  .footer-cta-actions { justify-content: center; }
  .bpages-grid { grid-template-columns: 1fr; }
  .bpage, .bpage-lg, .bpage-hero { grid-column: 1 / -1; }
  .bpage-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .bpage-hero-num { border-right: none; padding-right: 0; flex-direction: row; align-items: center; gap: 16px; }
  .bpage-hero-num .bpage-num { font-size: 2.4rem; }
  .bpage-hero-meta { padding-left: 0; border-left: none; padding-top: 18px; border-top: 1px solid #f0f1f8; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hide desktop nav, show toggle */
  .navbar-nav { display: none; }
  .navbar-actions .btn-nav-ghost { display: none; }
  .navbar-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-card-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .footer-cta { margin: 0 0 40px; padding: 28px 24px; border-radius: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-trust { justify-content: center; }
  .auth-card { padding: 32px 24px; }
  .hero-stats-strip { grid-template-columns: 1fr; padding: 18px 24px; }
  .hero-v2-visual { height: 380px; }
  .hero-deck { max-width: 380px; }
  .floating-chip-1 { left: -14px; top: -10px; }
  .floating-chip-2 { right: -14px; bottom: 0; }
  .hero-v2-meta { flex-direction: column; gap: 10px; }
  .hero-avatar-stack { justify-content: center; }
  .bpages-grid { grid-template-columns: 1fr; }
  .bpage-voice { grid-template-columns: 1fr; }
  .bpage-swatches { grid-template-columns: repeat(2, 1fr); }
  .platform-row { grid-template-columns: 90px 1fr 40px; }
  .platform-note { padding-left: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .navbar { left: 14px; right: 14px; padding: 0 6px 0 18px; height: 58px; }
  .topbar-promo-inner { font-size: 0.74rem; gap: 8px; padding: 0 14px; }
  .topbar-promo-tag { display: none; }
}

/* Case study quote — non-attributed meta row */
.cs-quote-attr-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 0.78rem;
}
.cs-quote-tag {
  display: inline-flex; align-items: center;
  background: rgba(244,200,66,0.15); color: var(--gold-400);
  padding: 5px 12px; border-radius: 100px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.cs-quote-divider { color: rgba(255,255,255,0.3); }
.cs-quote-plan {
  color: rgba(255,255,255,0.7); font-weight: 500;
  letter-spacing: 0.04em;
}

/* About — capability cards (replacing testimonial-style team grid) */
.about-story-block {
  display: flex; flex-direction: column; gap: 18px;
}
.about-story-block .about-lede {
  font-size: 1.1rem; color: var(--indigo-900);
  line-height: 1.7; font-weight: 500;
}
.about-story-block .about-body {
  font-size: 1rem; color: var(--slate-600); line-height: 1.75;
}
.capability-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.capability-card {
  position: relative;
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl); padding: 32px 30px 30px;
  transition: var(--transition); overflow: hidden;
}
.capability-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
}
.capability-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(244,200,66,0.3);
}
.capability-card:hover::before { transform: scaleX(1); }
.capability-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,200,66,0.15) 0%, rgba(244,200,66,0.05) 100%);
  color: var(--gold-500); display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.capability-icon svg { width: 24px; height: 24px; }
.capability-num {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: var(--gold-500); letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.capability-card h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.2rem; line-height: 1.3; color: var(--indigo-900);
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.capability-card p {
  font-size: 0.94rem; color: var(--slate-600); line-height: 1.65;
}
@media (max-width: 720px) {
  .capability-grid { grid-template-columns: 1fr; gap: 16px; }
  .capability-card { padding: 26px 24px 24px; }
}

/* Hero meta — replaces avatar stack / fake trust row */
.hero-meta-points {
  display: flex; flex-direction: column; gap: 10px;
}
.hero-meta-point {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500;
  color: rgba(255,255,255,0.85); font-size: 0.94rem;
}
.hero-meta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(244,200,66,0.18); color: var(--gold-400);
  font-weight: 700; font-size: 0.78rem; flex: 0 0 auto;
}
@media (max-width: 720px) {
  .hero-meta-point { font-size: 0.86rem; }
}
