/* ============================================================
   CINEMA — Main Stylesheet
   Palette: Deep black / warm gold / cream
   Fonts:   Cormorant Garamond (display) · Montserrat (head) · Inter (body)
   Sections: Variables → Reset → Base → Layout → Buttons
             → Reveal → Gate → Nav → Hero → Marquee → Statement
             → Services → Why Us → Process → Contact → CTA
             → Footer → Responsive
   ============================================================ */


/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Backgrounds — deep navy system */
  --black:         #07111F;
  --black-soft:    #0B1628;
  --black-muted:   #0E1B30;
  --charcoal:      #101C30;
  --graphite:      #152238;

  /* Blue — primary trust & CTA accent */
  --accent:        #5B8CFF;
  --accent-light:  #8FD3FF;
  --accent-dark:   #3A6FE8;
  --accent-subtle: rgba(91, 140, 255, 0.08);
  --accent-border: rgba(91, 140, 255, 0.16);

  /* Gold — small premium editorial accent */
  --gold:          #E8C15D;
  --gold-light:    #F5D280;
  --gold-dark:     #C9A43C;
  --gold-subtle:   rgba(232, 193, 93, 0.08);
  --gold-border:   rgba(232, 193, 93, 0.15);

  --success:       #22C55E;

  /* Text — refined warm-cool whites */
  --cream:         #F8FAFC;
  --cream-muted:   #B8C4D9;
  --gray-mid:      #7C8AA5;
  --white:         #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  --max-width:  1200px;
  --nav-height: 72px;

  --t:         0.3s ease;
  --t-med:     0.5s ease;
  --t-slow:    0.7s ease;
  --t-premium: 0.9s cubic-bezier(0.16, 1, 0.3, 1);

  --radius:    6px;
  --radius-lg: 12px;
}


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

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; } /* Lenis owns smooth scroll */

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; }


/* ── Base Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}


/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.75rem;
}

.section { padding-block: var(--space-xl); }
.section--dark { background: var(--black-soft); border-top: 1px solid rgba(91, 140, 255, 0.06); }


/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  color: var(--cream);
  margin-bottom: 1.125rem;
  font-weight: 500;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  line-height: 1.85;
}


/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9375rem 2.125rem;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(91, 140, 255, 0.22);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: 0 8px 32px rgba(91, 140, 255, 0.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-muted);
  border: 1.5px solid rgba(91, 140, 255, 0.22);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--cream);
  background: rgba(91, 140, 255, 0.06);
}

.btn--gold {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(91, 140, 255, 0.3);
}
.btn--gold:hover {
  background: rgba(91, 140, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn--full { width: 100%; }
.btn--sm   { padding: 0.625rem 1.375rem; font-size: 0.75rem; }
.btn--lg   { padding: 1.125rem 2.375rem; font-size: 0.875rem; }


/* ── Form Fields ────────────────────────────────────────────── */
.form-group { position: relative; width: 100%; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(237, 233, 224, 0.1);
  color: var(--cream);
  padding: 0.9375rem 1.25rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t), background var(--t);
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(91, 140, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.08);
}

.form-group input.is-error { border-color: rgba(255, 80, 80, 0.6); }

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #ff6060;
  text-align: left;
  padding-top: 0.3rem;
  min-height: 1.1em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9375rem;
  margin-top: var(--space-xs);
}
.form-success.is-visible { display: block; }


/* ============================================================
   SCROLL REVEAL
   Hero uses CSS keyframe on .site--visible.
   Everything else uses IntersectionObserver + [data-reveal].
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-premium), transform var(--t-premium);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-delay="2"] { transition-delay: 0.22s; }
[data-reveal][data-delay="3"] { transition-delay: 0.34s; }
[data-reveal][data-delay="4"] { transition-delay: 0.46s; }


/* ============================================================
   SITE VISIBILITY & HERO ENTRANCE
   ============================================================ */
.site { opacity: 0; transition: opacity var(--t-slow); }
.site.site--visible { opacity: 1; }
.site.site--hidden  { display: none; }

.site--visible .hero__inner {
  animation: heroEnter var(--t-premium) 0.25s both;
}

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


/* ============================================================
   TWO-STEP LEAD CAPTURE POPUP
   Step 1: Landing page hook — "Want More Leads From Your Ads?"
   Step 2: GSAP morph transition reveals form with staggered headline.
   Website is always visible behind the blurred backdrop.
   ============================================================ */

body.modal-open { overflow: hidden; }

/* ── Overlay ─────────────────────────────────────────────── */
.gate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* ── Backdrop ────────────────────────────────────────────── */
.gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 20, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Card ────────────────────────────────────────────────── */
.gate-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 468px;
  background: rgba(8, 15, 28, 0.98);
  border: 1px solid rgba(91, 140, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 48px 130px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(91, 140, 255, 0.06),
    0 0 70px rgba(91, 140, 255, 0.05);
  animation: modalRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.gate-modal__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 140, 255,0.08) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

/* ── Gold top bar ────────────────────────────────────────── */
.gate-modal__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--accent-dark) 18%,
    var(--accent)      50%,
    var(--accent-light) 62%,
    var(--accent-dark) 82%,
    transparent
  );
  box-shadow: 0 0 22px rgba(91, 140, 255,0.55);
  z-index: 10;
}

/* ── Shimmer sweep ───────────────────────────────────────── */
.gate-modal__shimmer {
  position: absolute;
  top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(90deg,
    transparent,
    rgba(91, 140, 255,0.14),
    rgba(91, 140, 255,0.07),
    transparent
  );
  transform: skewX(-14deg);
  pointer-events: none;
  z-index: 9;
  left: -70%;
  opacity: 0;
}

/* ── Steps ───────────────────────────────────────────────── */
.gate-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2.75rem 2.75rem;
}

.gate-step--form {
  display: none;
  padding-top: 2.75rem;
}

/* ── Step 1 : eyebrow ────────────────────────────────────── */
.gate-modal__eyebrow {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
  opacity: 0.88;
}

/* ── Step 1 : headline ───────────────────────────────────── */
.gate-modal__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.125rem);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* ── Step 1 : body copy ──────────────────────────────────── */
.gate-modal__sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.72;
  max-width: 340px;
  margin-bottom: 2rem;
}

/* ── Submit button ───────────────────────────────────────── */
.gate-modal__submit {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  padding: 1rem 2rem;
  width: 100%;
}

.gate-modal__arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.28s ease;
}
.gate-modal__submit:hover .gate-modal__arrow { transform: translateX(5px); }

/* ── Step 1 : "See How It Works" subtle text link ────────── */
.gate-modal__see-how {
  display: inline-block;
  margin-top: 1.125rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(91, 140, 255, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.25s ease;
  position: relative;
  letter-spacing: 0.01em;
}
.gate-modal__see-how::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: left;
  opacity: 0.5;
}
.gate-modal__see-how:hover { color: var(--accent); }
.gate-modal__see-how:hover::after { transform: scaleX(1); opacity: 1; }

/* ── Step 2 : stacked headline ───────────────────────────── */
.gate-headline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.875rem;
  gap: 0.05em;
}

.gate-headline-line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 2.875rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.025em;
  opacity: 0;
  will-change: transform, opacity;
}

.gate-headline-line--accent { color: var(--accent); }

/* ── Step 2 : form ───────────────────────────────────────── */
.gate-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Step 2 : dismiss text ───────────────────────────────── */
.gate-modal__dismiss {
  margin-top: 1.125rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(237, 233, 224, 0.28);
  cursor: pointer;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  line-height: 1;
}
.gate-modal__dismiss:hover { color: rgba(237, 233, 224, 0.5); }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 233, 224, 0.05);
  transition: background var(--t);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--t);
}
.nav__logo:hover { color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 2.25rem; }

.nav__link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--t);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t);
}


/* ============================================================
   HERO — full-screen video background, centered typography
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(91, 140, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(91, 140, 255, 0.03) 0%, transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  padding-block: var(--space-2xl);
  overflow: hidden;
  position: relative;
}

/* Soft ambient glow above the video */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(91, 140, 255, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 70%, rgba(143, 211, 255, 0.05) 0%, transparent 38%);
  animation: heroBreath 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes heroBreath {
  0%,  100% { opacity: 0.6; }
  50%        { opacity: 1.0; }
}

/* Film grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 3;
}

/* ── Hero video background ──────────────────────────────── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) brightness(0.28);
  will-change: transform;
  transform-origin: center center;
}

/* Multi-layer overlay — dark at edges, center clear for headline */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7,17,31,0.92) 0%,
      rgba(7,17,31,0.62) 35%,
      rgba(7,17,31,0.62) 65%,
      rgba(7,17,31,0.92) 100%),
    linear-gradient(180deg,
      rgba(7,17,31,0.60) 0%,
      rgba(7,17,31,0.30) 30%,
      rgba(7,17,31,0.30) 70%,
      rgba(7,17,31,0.92) 100%);
  z-index: 1;
}

/* Large decorative wordmark — hidden when video is present */
.hero__bg-text {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.022;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.hero__inner .section-label {
  margin-bottom: 1.5rem;
  color: var(--accent-light);
  opacity: 0.9;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent-light);
}

.hero__subtext {
  font-size: 1.125rem;
  color: var(--cream-muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

/* Thin accent divider */
.hero__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-bottom: 2.5rem;
  opacity: 0.6;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(91, 140, 255, 0.1);
  border-bottom: 1px solid rgba(91, 140, 255, 0.1);
  padding: 1.125rem 0;
  background: var(--black);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}

.marquee__dot { color: var(--accent); margin-left: 2.5rem; }


/* ============================================================
   STATEMENT — editorial pull quote
   ============================================================ */
.statement {
  padding-block: var(--space-xl);
  background: var(--black-muted);
  text-align: center;
  border-top: 1px solid rgba(91, 140, 255, 0.07);
  border-bottom: 1px solid rgba(91, 140, 255, 0.07);
  position: relative;
  overflow: hidden;
}

/* Radial glow behind the quote */
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(91, 140, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.statement .container { position: relative; z-index: 1; }

.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-inline: auto;
}

.statement__quote em {
  font-style: italic;
  color: var(--gold);
}


/* ============================================================
   CINEMATIC REEL — full-bleed video showcase with letterbox
   ============================================================ */
.reel {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Letterbox bars — animate open via GSAP on scroll */
.reel__bar {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--black);
  z-index: 4;
  transform-origin: top center;
}
.reel__bar--top    { top: 0;    height: 13%; transform-origin: top center; }
.reel__bar--bottom { bottom: 0; height: 13%; transform-origin: bottom center; }

/* Video fills the frame */
.reel__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

/* Multi-layer overlay — dark at edges, open in centre */
.reel__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(5,11,20,0.18) 0%, rgba(5,11,20,0.6) 100%),
    linear-gradient(to bottom, rgba(5,11,20,0.45) 0%, transparent 25%, transparent 75%, rgba(5,11,20,0.55) 100%);
  z-index: 1;
}

/* Film grain on the video */
.reel__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
  z-index: 2;
}

/* Overlay text */
.reel__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 2rem;
}

.reel__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.375rem;
  opacity: 0;
}

.reel__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(5,11,20,0.7);
  opacity: 0;
}

.reel__headline em {
  font-style: italic;
  color: var(--gold);
}

/* Thin gold rule below headline */
.reel__rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: 2.25rem;
}

@media (max-width: 640px) {
  .reel { height: 80vh; }
  .reel__bar--top,
  .reel__bar--bottom { height: 10%; }
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--black-muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--charcoal);
  border: 1px solid rgba(91, 140, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  padding-top: 0;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.card:hover {
  border-color: rgba(91, 140, 255, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(91, 140, 255, 0.08);
}

.card__accent {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin-bottom: var(--space-md);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.875rem;
}

.card__text { font-size: 0.9375rem; color: var(--cream-muted); line-height: 1.8; }


/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  position: relative;
  overflow: hidden;
}

/* Pure CSS atmospheric background — no image */
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(91, 140, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(91, 140, 255, 0.03) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.why-us .container { position: relative; z-index: 1; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.pillar {
  border-left: 1px solid var(--accent-border);
  padding-left: 1.75rem;
  padding-block: 0.375rem;
  transition: border-color var(--t);
}
.pillar:hover { border-left-color: var(--accent); }

.pillar__number {
  display: block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.625rem;
}

.pillar__text { font-size: 0.9375rem; color: var(--cream-muted); line-height: 1.8; }


/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--black-muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: var(--space-md) 1.25rem;
  background: var(--charcoal);
  border: 1px solid rgba(237, 233, 224, 0.05);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-med), transform var(--t-med);
}
.step:hover { border-color: var(--accent-border); transform: translateY(-3px); }

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  transition: background var(--t), border-color var(--t);
}
.step:hover .step__num { background: var(--accent-subtle); border-color: var(--accent); }

.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.625rem;
}
.step__text { font-size: 0.9375rem; color: var(--cream-muted); line-height: 1.8; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--black-soft); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact__copy .section-label,
.contact__copy .section-title,
.contact__copy .section-sub { text-align: left; }

.contact__copy .section-title { margin-bottom: var(--space-sm); }
.contact__copy .section-sub   { margin-bottom: var(--space-md); }

.contact__list { display: flex; flex-direction: column; gap: 0.75rem; }

.contact__list li {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
}
.contact__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.contact__form textarea { resize: vertical; min-height: 130px; }


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: var(--black);
  border-top: 1px solid rgba(91, 140, 255, 0.1);
  border-bottom: 1px solid rgba(91, 140, 255, 0.1);
  background-image: radial-gradient(ellipse at 50% 50%, rgba(91, 140, 255, 0.06) 0%, transparent 60%);
}

.cta__inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta .section-label { margin-bottom: 1.125rem; }

.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.cta__sub {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.85;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding-block: var(--space-lg);
  border-top: none;
  position: relative;
}

/* Gold gradient rule at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-border) 30%, var(--accent) 50%, var(--accent-border) 70%, transparent 100%);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.footer__logo {
  display: block;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__tagline { font-size: 0.875rem; color: var(--gray-mid); letter-spacing: 0.02em; }

.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.25rem; }

.footer__link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 233, 224, 0.35);
  transition: color var(--t);
}
.footer__link:hover { color: var(--accent); }

.footer__copy { font-size: 0.78rem; color: rgba(237, 233, 224, 0.18); letter-spacing: 0.04em; }

.hidden { display: none !important; }


/* ============================================================
   GOLDEN PRESENCE — 3D, Light Rays, Shimmer, Video Contact
   ============================================================ */

/* ── Gold Shimmer Text ──────────────────────────────────── */
.gold-shimmer {
  background: linear-gradient(
    90deg,
    #D4A830  0%,
    #F5C542  20%,
    #f5d97a  45%,
    #F5C542  70%,
    #D4A830 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s linear infinite;
  font-style: italic;
}

@keyframes goldShimmer {
  from { background-position: 300% center; }
  to   { background-position: -300% center; }
}


/* ── Hero Light Rays — subtle over video ─────────────────── */
.hero__rays {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero__ray {
  position: absolute;
  top: -8%;
  width: 1px;
  height: 90%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(91, 140, 255, 0) 8%,
    rgba(91, 140, 255, 0.4) 48%,
    rgba(91, 140, 255, 0.12) 78%,
    transparent 100%
  );
  transform-origin: top center;
  opacity: 0;
  will-change: opacity;
}

.hero__ray:nth-child(1) {
  left: 16%;
  width: 2px;
  transform: rotate(-30deg);
  animation: goldRay 11s ease-in-out 0s infinite;
}
.hero__ray:nth-child(2) {
  left: 36%;
  width: 1px;
  transform: rotate(-10deg);
  animation: goldRay 15s ease-in-out 3.5s infinite;
}
.hero__ray:nth-child(3) {
  left: 51%;
  width: 1.5px;
  transform: rotate(4deg);
  animation: goldRay 12s ease-in-out 1.8s infinite;
}
.hero__ray:nth-child(4) {
  right: 28%;
  width: 1px;
  transform: rotate(20deg);
  animation: goldRay 14s ease-in-out 6s infinite;
}
.hero__ray:nth-child(5) {
  right: 10%;
  width: 2px;
  transform: rotate(34deg);
  animation: goldRay 10s ease-in-out 2.5s infinite;
}

@keyframes goldRay {
  0%   { opacity: 0; }
  12%  { opacity: 0.65; }
  38%  { opacity: 0.12; }
  58%  { opacity: 0.50; }
  82%  { opacity: 0.08; }
  100% { opacity: 0; }
}


/* ── Hero Floating Orbs — subtle over video ─────────────── */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

.hero__orb--1 {
  width: 4px; height: 4px;
  left: 11%; bottom: 38%;
  background: radial-gradient(circle, rgba(91, 140, 255, 1) 0%, transparent 100%);
  box-shadow: 0 0 8px 3px rgba(91, 140, 255, 0.45);
  animation: orbFloat 14s ease-in-out 0s infinite;
}
.hero__orb--2 {
  width: 3px; height: 3px;
  left: 42%; bottom: 22%;
  background: radial-gradient(circle, rgba(91, 140, 255, 1) 0%, transparent 100%);
  box-shadow: 0 0 5px 2px rgba(91, 140, 255, 0.4);
  animation: orbFloat 19s ease-in-out 5.5s infinite;
}
.hero__orb--3 {
  width: 5px; height: 5px;
  right: 20%; bottom: 48%;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.9) 0%, transparent 100%);
  box-shadow: 0 0 10px 4px rgba(91, 140, 255, 0.3);
  animation: orbFloat 16s ease-in-out 11s infinite;
}
.hero__orb--4 {
  width: 2px; height: 2px;
  right: 38%; bottom: 18%;
  background: rgba(91, 140, 255, 1);
  box-shadow: 0 0 5px 2px rgba(91, 140, 255, 0.55);
  animation: orbFloat 21s ease-in-out 3s infinite;
}
.hero__orb--5 {
  width: 3px; height: 3px;
  left: 70%; bottom: 60%;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.85) 0%, transparent 100%);
  box-shadow: 0 0 7px 2px rgba(91, 140, 255, 0.35);
  animation: orbFloat 17s ease-in-out 8s infinite;
}

@keyframes orbFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  48%  { transform: translateY(-130px) translateX(18px); }
  55%  { transform: translateY(-155px) translateX(-4px); }
  90%  { opacity: 0.65; }
  100% { transform: translateY(-280px) translateX(12px); opacity: 0; }
}


/* ── Contact Cinematic Video Section ────────────────────── */
.contact--cinematic {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.contact__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.55) brightness(0.32);
  transform-origin: center center;
}

/* Deep multi-layer overlay — keeps text legible */
.contact__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(91, 140, 255, 0.09) 0%, transparent 55%),
    linear-gradient(
      to bottom,
      rgba(5,11,20,0.88) 0%,
      rgba(5,11,20,0.55) 20%,
      rgba(5,11,20,0.42) 50%,
      rgba(5,11,20,0.62) 80%,
      rgba(5,11,20,0.92) 100%
    ),
    linear-gradient(
      to right,
      rgba(5,11,20,0.72) 0%,
      rgba(5,11,20,0.18) 28%,
      rgba(5,11,20,0.18) 72%,
      rgba(5,11,20,0.72) 100%
    );
  z-index: 1;
}

.contact__video-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
}

/* Animated golden light rays on the contact video */
.contact__video-rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.contact__vray {
  position: absolute;
  top: -10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(91, 140, 255, 0) 15%,
    rgba(91, 140, 255, 0.22) 50%,
    rgba(91, 140, 255, 0.06) 80%,
    transparent 100%
  );
  transform-origin: top center;
  opacity: 0;
  will-change: opacity;
}

.contact__vray:nth-child(1) {
  left: 22%;
  width: 2px;
  transform: rotate(-20deg);
  animation: goldRay 13s ease-in-out 1s infinite;
}
.contact__vray:nth-child(2) {
  left: 55%;
  width: 1px;
  transform: rotate(6deg);
  animation: goldRay 17s ease-in-out 5s infinite;
}
.contact__vray:nth-child(3) {
  right: 18%;
  width: 1.5px;
  transform: rotate(25deg);
  animation: goldRay 11s ease-in-out 9s infinite;
}

.contact--cinematic .container {
  position: relative;
  z-index: 3;
}

/* Gold border aura on the form card */
.contact--cinematic .contact__form-wrap {
  position: relative;
}

.contact--cinematic .contact__form-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(91, 140, 255, 0.28) 0%,
    transparent 35%,
    transparent 65%,
    rgba(91, 140, 255, 0.18) 100%
  );
  z-index: -1;
  animation: formAuraPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes formAuraPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Contact copy — gold accentuated list items on cinematic bg */
.contact--cinematic .contact__list li::before {
  color: var(--accent-light);
  text-shadow: 0 0 8px rgba(91, 140, 255, 0.6);
}

.contact--cinematic .contact__copy .section-title {
  text-shadow: 0 2px 40px rgba(5,11,20,0.8);
}


/* ── Gold Ambient Dust Canvas ───────────────────────────── */
.gold-dust-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}


/* ── 3D Card / Step Tilt ────────────────────────────────── */
.card,
.step {
  transform-style: preserve-3d;
}

.card {
  position: relative;
}

/* Radial gold glow on card hover */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 140, 255, 0.14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 0;
}
.card:hover::after { opacity: 1; }


/* ── Button Sheen Sweep ─────────────────────────────────── */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -65%;
  width: 38%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-18deg);
  animation: btnSheen 6s ease-in-out 2.5s infinite;
  pointer-events: none;
}

@keyframes btnSheen {
  0%   { left: -65%; opacity: 0; }
  8%   { opacity: 1; }
  38%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}


/* ── Enhanced Marquee Gold Dots ─────────────────────────── */
.marquee__dot {
  color: var(--accent);
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.7; text-shadow: none; }
  50%       { opacity: 1; text-shadow: 0 0 8px rgba(91, 140, 255, 0.6); }
}


/* ── Section Perspective Wrappers ───────────────────────── */
.services .container,
.why-us .container,
.process .container {
  perspective: 2200px;
  perspective-origin: 50% -10%;
}


/* ── Enhanced Why-Us Gold Pillar Accent ─────────────────── */
.pillar:hover .pillar__number {
  text-shadow: 0 0 12px rgba(91, 140, 255, 0.7);
}

.pillar__title {
  transition: color var(--t);
}
.pillar:hover .pillar__title {
  color: var(--accent-light);
}


/* ── Step Number Enhanced Glow ──────────────────────────── */
.step:hover .step__num {
  box-shadow: 0 0 20px 6px rgba(91, 140, 255, 0.25);
}


/* ── CTA Gold Haze ──────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(91, 140, 255, 0.05) 0%, transparent 68%);
  animation: ctaHaze 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta .container { position: relative; z-index: 1; }

@keyframes ctaHaze {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1.2; transform: scale(1.08); }
}


/* ── Footer Gold Line Pulse ─────────────────────────────── */
.footer::before {
  animation: footerLine 6s ease-in-out infinite;
}

@keyframes footerLine {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; box-shadow: 0 0 6px rgba(91, 140, 255, 0.3); }
}


/* ============================================================
   CINEMATIC EFFECTS
   Scroll progress · Custom cursor · Reveal lines
   clip-path support · Magnetic button will-change
   ============================================================ */

/* Scroll progress bar — fixed top of viewport, driven by GSAP */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
}

/* Custom cursor — only renders on true pointer devices */
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    z-index: 9999;
    transition: transform 0.25s, background 0.25s;
  }

  .cursor-ring {
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(91, 140, 255, 0.45);
    z-index: 9998;
    transition: width 0.3s var(--t-premium), height 0.3s var(--t-premium),
                border-color 0.3s, opacity 0.3s;
  }

  .cursor-ring.cursor-ring--active {
    width: 54px;
    height: 54px;
    border-color: rgba(91, 140, 255, 0.75);
  }

  .cursor-dot.cursor-dot--active {
    transform: translate(-50%, -50%) scale(1.8);
    background: var(--accent-light);
  }

  /* Hide OS cursor when custom cursor is active */
  body.custom-cursor,
  body.custom-cursor * { cursor: none !important; }
}

/* Section header reveal line — injected by JS */
.reveal-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: calc(var(--space-md) * 0.75) auto 0;
  transform-origin: left center;
}

/* Ensure clip-path animations don't clip box-shadow/overflow on containers */
.section-title,
.cta__headline {
  overflow: visible;
  will-change: clip-path, transform;
}

/* Magnetic buttons — hint browser for compositing */
.btn--primary,
.btn--gold {
  will-change: transform;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .contact__inner { grid-template-columns: 1fr; }

  .contact__copy .section-label,
  .contact__copy .section-title,
  .contact__copy .section-sub { text-align: center; }

  .contact__list { align-items: center; }
  .contact__list li { text-align: left; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(5, 11, 20, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.5rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid rgba(237, 233, 224, 0.05);
  }
  .nav__links.is-open { display: flex; }

  .nav__link {
    padding: 0.9375rem 0;
    border-bottom: 1px solid rgba(237, 233, 224, 0.04);
    font-size: 0.8125rem;
    color: var(--cream-muted);
  }
  .nav__link::after { display: none; }
  .nav__links .btn { margin-top: 1.125rem; width: 100%; text-align: center; }
  .nav__toggle { display: flex; }

  .section { padding-block: 5rem; }

  .hero__headline { font-size: clamp(2.75rem, 11vw, 3.5rem); }
  .hero__bg-text  { opacity: 0.015; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; text-align: center; }

  .statement__quote { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .form-row { grid-template-columns: 1fr; }
  .pillars  { grid-template-columns: 1fr; }
  .steps    { grid-template-columns: 1fr; }
  .cards    { grid-template-columns: 1fr; }
}


/* ============================================================
   HERO VIDEO BACKGROUND — star constellation
   ============================================================ */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.38);
  will-change: transform;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(5,11,20,0.28) 0%, rgba(5,11,20,0.62) 100%),
    linear-gradient(to bottom, rgba(5,11,20,0.55) 0%, rgba(5,11,20,0.18) 30%, rgba(5,11,20,0.18) 70%, rgba(5,11,20,0.72) 100%);
}


/* ============================================================
   HERO ADDITIONS — microcopy & trust line
   ============================================================ */
.hero__microcopy {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: var(--space-sm);
}

.hero__trust {
  margin-top: 1.375rem;
  font-size: 0.8125rem;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
  max-width: 480px;
  text-align: center;
  line-height: 1.7;
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--black-soft); }

.problem__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: var(--space-lg);
}

.problem__col {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.problem__col--bad  { border: 1px solid rgba(237, 233, 224, 0.06); }
.problem__col--good {
  border: 1px solid var(--accent-border);
  background: linear-gradient(145deg, var(--charcoal) 0%, rgba(91, 140, 255,0.04) 100%);
}

.problem__col-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.problem__col--bad  .problem__col-label { color: var(--gray-mid); }
.problem__col--good .problem__col-label { color: var(--accent); }

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem__list li {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.65;
}

.problem__list--bad  li::before { content: '✗'; position: absolute; left: 0; color: rgba(255,80,80,0.55); }
.problem__list--good li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }

.problem__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.problem__vs {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-border);
}


/* ── Funnel Flow ──────────────────────────────────────── */
.funnel-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--charcoal);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
}

.funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
}

.funnel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: var(--accent-subtle);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.funnel-step:hover .funnel-icon {
  background: rgba(91, 140, 255,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(91, 140, 255,0.2);
}

.funnel-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.funnel-arrow {
  color: var(--accent);
  font-size: 1.25rem;
  opacity: 0.35;
  padding: 0 0.25rem;
  line-height: 1;
  padding-bottom: 1.5rem;
}


/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 820px;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

.audience-tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  background: rgba(91, 140, 255,0.06);
  border: 1px solid var(--accent-border);
  color: var(--cream-muted);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  cursor: default;
}
.audience-tag:hover {
  background: rgba(91, 140, 255,0.14);
  color: var(--cream);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.who-for__cta { text-align: center; margin-top: var(--space-lg); }


/* ============================================================
   WHY US — bottom statement block
   ============================================================ */
.why-us__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(91, 140, 255,0.1);
  text-align: center;
}

.why-us__statement { max-width: 620px; margin-inline: auto; }

.why-us__statement-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.why-us__statement-body {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  line-height: 1.85;
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--black-soft); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(237,233,224,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.pricing-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(91, 140, 255,0.07);
}

.pricing-card--featured {
  border-color: var(--accent-border);
  background: linear-gradient(145deg, var(--charcoal) 0%, rgba(91, 140, 255,0.05) 100%);
}
.pricing-card--featured:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(91, 140, 255,0.12);
}

/* Radial glow on hover — same pattern as .card */
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 140, 255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 0;
}
.pricing-card:hover::after { opacity: 1; }
.pricing-card > * { position: relative; z-index: 1; }

.pricing-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}

.pricing-card__accent {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin-top: -2.5rem;
  margin-inline: -2rem;
  margin-bottom: 1.75rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.pricing-card__best {
  font-size: 0.875rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(237,233,224,0.06);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.pricing-card__list li {
  font-size: 0.9rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.pricing-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Care plan row */
.pricing-care {
  margin-top: 3rem;
  background: var(--charcoal);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.pricing-care::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(91, 140, 255,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.pricing-care__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-care__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.pricing-care__price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.pricing-care__text {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 540px;
}

.pricing-care__notice {
  font-size: 0.8rem;
  color: var(--color-cream);
  opacity: 0.6;
  font-style: italic;
  margin-top: 0.75rem;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--black-muted); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(91, 140, 255, 0.08);
  transition: background var(--t);
  border-radius: var(--radius);
  padding-inline: 0.5rem;
  margin-inline: -0.5rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--cream);
  transition: color var(--t);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--t-med), border-color var(--t), background var(--t);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--accent-subtle);
  border-color: var(--accent);
}
.faq-item summary:hover { color: var(--accent-light); }

.faq-item__a {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.85;
  padding-bottom: 1.5rem;
}


/* ============================================================
   CTA — two-button layout
   ============================================================ */
.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   FORM SELECT STYLING
   ============================================================ */
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(237,233,224,0.1);
  color: var(--cream);
  padding: 0.9375rem 2.5rem 0.9375rem 1.25rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
}
.form-group select:focus {
  border-color: var(--accent-border);
  background-color: rgba(91, 140, 255,0.04);
}
.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}


/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 960px) {
  .problem__split {
    grid-template-columns: 1fr;
  }
  .problem__divider { display: none; }
  .pricing-care__inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .problem__split  { gap: 1rem; }
  .funnel-flow     { gap: 0.25rem; }
  .funnel-arrow    { transform: rotate(90deg); padding-bottom: 0; padding-inline: 0.75rem; }
  .pricing-cards   { grid-template-columns: 1fr; }
  .audience-tags   { gap: 0.5rem; }
  .audience-tag    { font-size: 0.62rem; padding: 0.5rem 1rem; }
  .faq-item summary { font-size: 1rem; }
  .cta__buttons    { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; text-align: center; }
}


/* ============================================================
   CINEMATIC THANK YOU — Contact form success state
   ============================================================ */
.form-thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 2rem;
  min-height: 340px;
  text-align: center;
}
.form-thankyou.is-visible {
  display: flex;
}

.form-thankyou__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(20px);
}
.form-thankyou.is-visible .form-thankyou__headline {
  animation: tyReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.form-thankyou__rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
}
.form-thankyou.is-visible .form-thankyou__rule {
  animation: tyRule 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.form-thankyou__sub {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  opacity: 0;
  transform: translateY(10px);
}
.form-thankyou.is-visible .form-thankyou__sub {
  animation: tyReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
}

@keyframes tyReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tyRule {
  from { width: 0; opacity: 0; }
  to   { width: 100px; opacity: 1; }
}


/* ============================================================
   PACKAGES — Two-card offer grid
   ============================================================ */
.packages {
  background: var(--black-soft);
  border-top: 1px solid rgba(91, 140, 255, 0.07);
}

.packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 940px;
  margin-inline: auto;
  align-items: start;
}

.pkg-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(91, 140, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  overflow: hidden;
}
.pkg-card:hover {
  border-color: rgba(91, 140, 255, 0.30);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.4), 0 0 30px rgba(91, 140, 255, 0.08);
}

.pkg-card--premium {
  border-color: rgba(91, 140, 255, 0.22);
  background: linear-gradient(148deg, var(--charcoal) 0%, rgba(91, 140, 255, 0.07) 100%);
  box-shadow: 0 0 40px rgba(91, 140, 255, 0.06);
}
.pkg-card--premium:hover {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.5), 0 0 40px rgba(91, 140, 255, 0.14);
}

.pkg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 140, 255, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 0;
}
.pkg-card:hover::after { opacity: 1; }
.pkg-card > * { position: relative; z-index: 1; }

.pkg-card__recommend {
  position: absolute;
  top: -1px;
  right: 1.75rem;
  background: var(--gold);
  color: #0B1628;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 2;
}

.pkg-card__accent {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  flex-shrink: 0;
}

.pkg-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.pkg-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pkg-card__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.pkg-card__cycle {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.pkg-card__recurring {
  font-size: 0.875rem;
  color: var(--cream-muted);
  margin-top: -0.5rem;
}

.pkg-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
  flex: 1;
}
.pkg-card__list li {
  font-size: 0.9rem;
  color: var(--cream-muted);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.65;
}
.pkg-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

@media (max-width: 700px) {
  .packages__grid { grid-template-columns: 1fr; }
}

/* ── Package tagline ─────────────────────────────────────── */
.pkg-card__tagline {
  font-size: 0.875rem;
  color: var(--cream-muted);
  margin-top: -0.5rem;
}

/* ── Payment Timeline ────────────────────────────────────── */
.payment-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  background: rgba(91, 140, 255, 0.04);
  border: 1px solid rgba(91, 140, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0.25rem 0;
}

.pt-step {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pt-month {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.pt-amount {
  font-size: 0.82rem;
  color: var(--cream-muted);
  font-weight: 500;
}

.pt-step--free .pt-amount {
  color: #22C55E;
}

.pt-step--free .pt-month {
  color: rgba(34, 197, 94, 0.7);
}


/* ============================================================
   LEAD INTAKE FORM
   ============================================================ */
.lead-form-wrap {
  max-width: 760px;
  margin-inline: auto;
}

/* Card wrapper for each section */
.lf-card {
  background: var(--charcoal);
  border: 1px solid rgba(91, 140, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 1rem;
}

/* Section label inside card */
.lf-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
}

/* Field wrapper */
.lf-field {
  margin-bottom: 1rem;
}
.lf-field:last-child { margin-bottom: 0; }
.lf-field--spaced    { margin-top: 1.25rem; }

/* Field label */
.lf-field-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--cream-muted);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
}

/* Select — custom arrow, consistent with inputs */
.lf-card select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.lf-card select option { background: var(--charcoal); color: var(--cream); }

/* Package offer cards */
.lf-offer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lf-offer-card {
  background: var(--black-muted);
  border: 1px solid rgba(237, 233, 224, 0.07);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  position: relative;
  display: block;
}
.lf-offer-card:hover { border-color: rgba(91, 140, 255, 0.3); }
.lf-offer-card--selected {
  border-color: var(--accent);
  background: rgba(91, 140, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(91, 140, 255, 0.2) inset;
}
.lf-offer-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lf-offer-card__tag {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.lf-offer-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.lf-offer-card__price {
  font-size: 0.8125rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.lf-offer-card__badge {
  display: inline-block;
  margin-top: 0.6rem;
  background: rgba(91, 140, 255, 0.12);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
}

/* Checkbox groups */
.lf-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.lf-check-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}
.lf-check-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.lf-check-item span {
  font-size: 0.875rem;
  color: var(--cream-muted);
}

/* Conditional visibility */
.lf-hidden { display: none !important; }

/* Submit row */
.lf-submit-row {
  margin-top: 1.25rem;
}

/* Success state */
.lead-form-success {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
  background: var(--charcoal);
  border: 1px solid rgba(237, 233, 224, 0.06);
  border-radius: var(--radius-lg);
}
.lead-form-success.is-visible { display: block; }

.lead-form-success__mark {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.lead-form-success__headline {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lead-form-success__body {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.85;
}

@media (max-width: 580px) {
  .lf-offer-cards { grid-template-columns: 1fr; }
  .lf-card { padding: 1.375rem 1.25rem; }
}


/* ============================================================
   TRUST STRIP — honest trust signals, no fake proof
   ============================================================ */
.trust-strip {
  padding: 1.125rem 0;
  background: rgba(91, 140, 255, 0.02);
  border-top: 1px solid rgba(91, 140, 255, 0.08);
  border-bottom: 1px solid rgba(91, 140, 255, 0.08);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}

.trust-item__check {
  color: var(--success);
  font-size: 0.7rem;
  line-height: 1;
}

.trust-divider {
  color: rgba(91, 140, 255, 0.2);
  font-size: 0.875rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .trust-strip__inner { gap: 0.5rem 1.25rem; }
  .trust-item { font-size: 0.58rem; }
  .trust-divider { display: none; }
}


/* ============================================================
   LEAD FLOW — What Happens After Someone Submits
   ============================================================ */
.lead-flow { background: var(--black-muted); }

.lf-flow-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--space-lg);
}

.lf-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.875rem;
  flex: 1;
  min-width: 130px;
  max-width: 170px;
}

.lf-flow-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.lf-flow-step:hover .lf-flow-step__icon {
  background: rgba(91, 140, 255, 0.14);
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(91, 140, 255, 0.18);
}

.lf-flow-step__label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.lf-flow-step__desc {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.65;
}

.lf-flow-arrow {
  color: var(--accent);
  font-size: 1.125rem;
  opacity: 0.25;
  padding: 0 0.125rem;
  line-height: 1;
  padding-bottom: 3rem;
  align-self: flex-start;
  padding-top: 1.625rem;
  flex-shrink: 0;
}

.lead-flow__note {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-top: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.85;
  padding: 1.5rem 2rem;
  background: var(--charcoal);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
}

@media (max-width: 780px) {
  .lf-flow-track { gap: 0; }
  .lf-flow-step { min-width: 110px; max-width: 140px; padding: 1rem 0.625rem; }
}

@media (max-width: 580px) {
  .lf-flow-track { flex-direction: column; align-items: center; }
  .lf-flow-arrow { transform: rotate(90deg); padding-bottom: 0; padding-top: 0; padding-inline: 1rem; align-self: center; }
  .lf-flow-step { max-width: 240px; }
  .lead-flow__note { padding: 1.25rem 1.25rem; }
}


/* ============================================================
   PRICING NOTE — honest transparency block
   ============================================================ */
.pricing-note {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(91, 140, 255, 0.08);
}

.pricing-note__text {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.85;
  font-style: italic;
}


/* ============================================================
   HERO TRUST LINE
   ============================================================ */
.hero__trust {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  max-width: 500px;
  text-align: center;
  line-height: 1.7;
}


/* ============================================================
   SECTION IMPROVEMENTS — refined backgrounds
   ============================================================ */
.services { background: var(--black-soft); }
.lead-flow { background: var(--black); position: relative; overflow: hidden; }
.lead-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(91, 140, 255, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.lead-flow .container { position: relative; z-index: 1; }

/* Form select — update focus style */
.lf-card select:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 140, 255, 0.08);
  outline: none;
}

/* Scroll progress — use gradient blue */
.scroll-progress {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
}
