/*
  index8 — Shopify-Inspired Design
  Two-canvas system: canvas-night (#490D59) for cinematic hero + canvas-cream (#fbfbf5) for transactional.
  Thin-weight display type (300/350 simulated via Inter Display light).
  Pill-only buttons. Aloe (#c1fbd4) & Pistachio (#d4f9e0) accents on light track only.
  font-feature-settings: "ss03" globally.
*/

/* ── TOKENS ─────────────────────────────────────── */
:root {
  /* Canvas */
  --canvas-night:    #490D59;
  --canvas-night-el: #3a0946;
  --canvas-light:    #ffffff;
  --canvas-cream:    #fbfbf5;

  /* Surface */
  --surface-dark:    rgba(255, 255, 255, 0.10);

  /* Accents — light track only */
  --aloe:       #c1fbd4;
  --pistachio:  #d4f9e0;

  /* Shade ladder */
  --shade-30: #d4d4d8;
  --shade-40: #a1a1aa;
  --shade-50: #71717a;
  --shade-60: #52525b;
  --shade-70: #3f3f46;

  /* Hairlines */
  --hairline-light: #e4e4e7;
  --hairline-dark:  rgba(255, 255, 255, 0.10);

  /* Typography */
  --ink:       #000000;
  --on-dark:   #ffffff;

  /* Cool muted link tones (footer dark) */
  --link-cool-1: #9dabad;
  --link-cool-2: #9797a2;
  --link-cool-3: #bdbdca;
  --link-mint:   #99b3ad;

  /* Shadows — light track */
  --sh-paper: 0 8px 8px rgba(0,0,0,.10), 0 4px 4px rgba(0,0,0,.10), 0 2px 2px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.10);
  --sh-float: 0 25px 50px -12px rgba(0,0,0,.25);

  /* Shadows — dark track (inset highlight only) */
  --sh-dark-card: 0 1px 2px rgba(255,255,255,.05), inset 0 1px 0 rgba(255,255,255,.04);
  --sh-dark-elevated: 0 0 0 1px rgba(255,255,255,.08), 0 1px 3px rgba(0,0,0,.3), 0 5px 10px rgba(0,0,0,.2);

  /* Radius */
  --r-xs:   4px;
  --r-sm:   5px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-pill: 9999px;

  /* Spacing */
  --sp-xxs: 2px;
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  12px;
  --sp-lg:  16px;
  --sp-xl:  24px;
  --sp-xxl: 32px;
  --sp-huge: 64px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── GLOBAL ─────────────────────────────────────── */
html { font-feature-settings: "ss03"; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 420;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas-night);
  -webkit-font-smoothing: antialiased;
}

/* ── DISPLAY TYPOGRAPHY ─────────────────────────── */
.d-xxl {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 2.4px;
  font-feature-settings: "ss03";
}

.d-xl {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 70px;
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0;
}

.d-lg {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1.16;
}

.d-md {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.14;
}

.h-xl { font-size: 28px; font-weight: 500; line-height: 1.28; letter-spacing: .42px; }
.h-lg { font-size: 24px; font-weight: 400; line-height: 1.14; letter-spacing: .36px; }
.h-md { font-size: 20px; font-weight: 500; line-height: 1.4;  letter-spacing: .3px; }
.h-sm { font-size: 18px; font-weight: 500; line-height: 1.25; letter-spacing: .72px; }

.body-lg { font-size: 18px; font-weight: 550; line-height: 1.56; }
.body-md { font-size: 16px; font-weight: 420; line-height: 1.5; }
.caption  { font-size: 14px; font-weight: 500; line-height: 1.49; letter-spacing: .28px; }
.micro    { font-size: 13px; font-weight: 500; line-height: 1.5;  letter-spacing: -.13px; }

.eyebrow-cap {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .72px;
  text-transform: uppercase;
}

/* ── LAYOUT UTILS ───────────────────────────────── */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.wrap-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

/* ── BUTTONS (pill only) ────────────────────────── */

/* Primary black pill — light track */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas-night);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 420;
  padding: var(--sp-md) var(--sp-xl);
  border-radius: var(--r-pill);
  border: none;
  transition: background .18s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--shade-70); }

/* Outline on dark (cinematic hero CTA) */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas-night);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 420;
  padding: var(--sp-md) var(--sp-xl);
  border-radius: var(--r-pill);
  border: 2px solid var(--on-dark);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.btn-outline-dark:hover { background: var(--on-dark); color: var(--ink); }

/* Outline on light */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas-light);
  color: var(--ink);
  font-size: 16px;
  font-weight: 420;
  padding: var(--sp-md) var(--sp-xl);
  border-radius: var(--r-pill);
  border: 1px solid var(--ink);
  transition: background .18s;
  white-space: nowrap;
}
.btn-outline-light:hover { background: var(--canvas-cream); }

/* Aloe pill — featured CTA on light track */
.btn-aloe {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aloe);
  color: var(--ink);
  font-size: 16px;
  font-weight: 420;
  padding: var(--sp-md) var(--sp-xl);
  border-radius: var(--r-pill);
  border: none;
  transition: background .18s;
  white-space: nowrap;
}
.btn-aloe:hover { background: #a8f5be; }

/* ── PILL TAGS ──────────────────────────────────── */
.pill-mint {
  display: inline-block;
  background: var(--aloe);
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .72px;
  text-transform: uppercase;
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-pill);
}

.pill-shade {
  display: inline-block;
  background: var(--shade-30);
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .72px;
  text-transform: uppercase;
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-pill);
}

.pill-dark {
  display: inline-block;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .72px;
  text-transform: uppercase;
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.12);
}

/* ── NAV — FLOATING PILL REDESIGN ───────────────── */
.nav8 {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  height: 56px;
  z-index: 200;
  background: rgba(73, 13, 89, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.04) inset;
  transition: background .3s, box-shadow .3s;
}

.nav8.scrolled {
  background: rgba(48, 6, 58, 0.90);
  box-shadow: 0 8px 40px rgba(0,0,0,.7), 0 1px 0 rgba(255,255,255,.06) inset;
}

.nav8-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  position: relative;
}

.nav8-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav8-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav8-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav8-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav8-links a:hover {
  color: var(--on-dark);
  background: rgba(255,255,255,.08);
}

/* Dropdown */
.nav8-drop { position: relative; }

.nav8-drop-btn {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  background: none;
  border: none;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav8-drop-btn:hover {
  color: var(--on-dark);
  background: rgba(255,255,255,.08);
}

.nav8-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 480px;
  background: #3a0946;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-dark-elevated);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
  z-index: 300;
}

/* Invisible bridge to prevent hover loss when crossing the 8px gap */
.nav8-drop-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav8-drop-menu--sm { min-width: 200px; }

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

.drop8-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.drop8-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background .15s;
}
.drop8-item:hover { background: rgba(255,255,255,.05); }
.drop8-item strong { font-size: 14px; font-weight: 500; color: var(--on-dark); display: block; margin-bottom: 2px; }
.drop8-item span   { font-size: 12px; color: var(--shade-50); line-height: 1.3; }

.drop8-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--shade-30);
  flex-shrink: 0;
}

.drop8-item-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--shade-30);
  border-radius: var(--r-md);
  transition: background .15s;
}
.drop8-item-sm:hover { background: rgba(255,255,255,.05); color: var(--on-dark); }

/* ── Locations mega-dropdown ──────────────────────────── */
.nav8-drop-menu--loc {
  min-width: 440px;
  padding: 16px;
}
.drop8-loc-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 10px;
}
.drop8-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.drop8-loc-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.drop8-loc-item svg { color: rgba(193,251,212,.5); flex-shrink: 0; }
.drop8-loc-item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.drop8-loc-item:hover svg { color: var(--aloe); }
.drop8-loc-footer {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--aloe);
  border-top: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  transition: background .15s;
}
.drop8-loc-footer:hover { background: rgba(193,251,212,.08); }

.nav8-actions { display: flex; align-items: center; gap: 8px; }

/* Ghost 'Log in' link */
.nav8-login {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav8-login:hover {
  color: var(--on-dark);
  background: rgba(255,255,255,.08);
}

/* Solid white pill CTA */
.nav8-cta-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--on-dark);
  border-radius: var(--r-pill);
  border: none;
  transition: background .18s, transform .18s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.nav8-cta-btn:hover {
  background: var(--aloe);
  transform: translateY(-1px);
}

.nav8-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-pill);
  font-size: 16px;
  padding: 5px 11px;
  color: var(--on-dark);
  cursor: pointer;
}

/* ── MOBILE DRAWER — always hidden by default ────── */
.nav8-mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 12px;
  right: 12px;
  background: rgba(58, 9, 70, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 10px;
  z-index: 300;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 16px 48px rgba(0,0,0,.8);
}

.nav8-mobile-drawer.open {
  display: flex;
  animation: drawerIn .2s ease-out;
}

@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav8-mobile-drawer a,
.nav8-mobile-drawer button.mobile-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: 8px;
  transition: background .15s, color .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  line-height: 1;
}

.nav8-mobile-drawer a:hover,
.nav8-mobile-drawer button.mobile-link:hover {
  background: rgba(255,255,255,.07);
  color: white;
}

.nav8-mobile-drawer .mobile-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 4px 0;
}

.nav8-mobile-drawer .mobile-cta {
  background: white !important;
  color: #000 !important;
  font-weight: 600;
  margin-top: 4px;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  padding: 9px 10px !important;
}

.nav8-mobile-drawer .mobile-cta:hover {
  background: var(--aloe) !important;
  color: #000 !important;
}

/* ── HERO — CINEMATIC DARK TRACK ────────────────── */
.hero8 {
  background: var(--canvas-night);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px; /* nav floats at top:12px + 56px height + gap */
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture */
.hero8::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.hero8-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero8-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient scrim so text reads cleanly */
.hero8-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(73,13,89,.75) 0%,
    rgba(73,13,89,.45) 30%,
    rgba(73,13,89,.82) 60%,
    rgba(73,13,89,.97) 100%
  );
  z-index: 2;
}

.hero8-content {
  position: relative;
  z-index: 3;
  padding: var(--sp-huge) var(--sp-xl) 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.hero8-tag { margin-bottom: 32px; }

.hero8-title {
  color: var(--on-dark);
  max-width: 900px;
  margin-bottom: var(--sp-xl);
}

.hero8-subtitle {
  font-size: 18px;
  font-weight: 420;
  color: var(--shade-30);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: var(--sp-xxl);
}

.hero8-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating stats row above footer */
.hero8-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
  position: relative;
  z-index: 3;
}

.hero8-stat {
  flex: 1;
  padding: 28px var(--sp-xl);
  border-right: 1px solid var(--hairline-dark);
}
.hero8-stat:last-child { border-right: none; }

.hero8-stat-num {
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  color: var(--on-dark);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.hero8-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--shade-50);
  line-height: 1.4;
}

/* ── LOGO STRIP ─────────────────────────────────── */
.logo-strip8 {
  background: var(--canvas-night);
  border-bottom: 1px solid var(--hairline-dark);
  padding: 32px var(--sp-xl);
  text-align: center;
}

.logo-strip8 .eyebrow-cap { color: var(--shade-50); margin-bottom: 20px; display: block; }

.logos8 {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo8-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 420;
  color: var(--shade-50);
  transition: color .2s;
}
.logo8-item:hover { color: var(--on-dark); }

/* ── SECTION: WHY — DARK CINEMATIC ─────────────── */
.why8 {
  background: var(--canvas-night);
  border-bottom: 1px solid var(--hairline-dark);
}

.why8-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.why8-text {
  padding: var(--sp-huge) var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--hairline-dark);
}

.why8-text h2 {
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}

.why8-text p {
  font-size: 18px;
  font-weight: 420;
  color: var(--shade-40);
  line-height: 1.6;
  margin-bottom: var(--sp-xxl);
}

.why8-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--sp-xxl);
}

.why8-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 420;
  color: var(--shade-30);
}

.why8-check::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(193,251,212,.12);
  color: var(--aloe);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

.why8-photo {
  background: var(--canvas-night-el);
  position: relative;
  overflow: hidden;
}

.why8-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why8-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--sh-dark-elevated);
}

.why8-badge-num {
  font-size: 28px;
  font-weight: 300;
  color: var(--aloe);
  line-height: 1;
  letter-spacing: -.03em;
}

.why8-badge-lbl {
  font-size: 12px;
  color: var(--shade-50);
  margin-top: 3px;
}

/* ── SERVICES — LIGHT CREAM TRACK ───────────────── */
.services8 {
  background: var(--canvas-cream);
}

.services8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}

.services8-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.services8-header h2 {
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}

.services8-header p {
  font-size: 18px;
  color: var(--shade-50);
  line-height: 1.6;
}

.services8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--hairline-light);
}

.svc8-card {
  background: var(--canvas-light);
  padding: var(--sp-xxl);
  transition: background .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.svc8-card:hover {
  background: var(--canvas-cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.svc8-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--canvas-cream);
  border: 1px solid var(--hairline-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--shade-60);
  transition: background .25s, border-color .25s;
}

.svc8-card:hover .svc8-icon {
  background: var(--aloe);
  border-color: var(--aloe);
  color: var(--ink);
}

.svc8-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .72px;
  color: var(--ink);
  margin-bottom: 10px;
}

.svc8-card p {
  font-size: 14px;
  color: var(--shade-50);
  line-height: 1.6;
  flex: 1;
}

.svc8-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--canvas-night);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}

.svc8-card:hover .svc8-link {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESULTS — DARK CINEMATIC ───────────────────── */
.results8 {
  background: var(--canvas-night);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.results8-header {
  padding: var(--sp-huge) var(--sp-xl) 0;
  max-width: 1440px;
  margin: 0 auto;
}

.results8-header h2 { color: var(--on-dark); margin-bottom: var(--sp-lg); }
.results8-header p  { font-size: 18px; color: var(--shade-40); max-width: 540px; line-height: 1.6; }

.results8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
  margin-top: var(--sp-huge);
}

.result8-card {
  padding: 48px var(--sp-xl);
  border-right: 1px solid var(--hairline-dark);
  background: var(--canvas-night);
  box-shadow: var(--sh-dark-card);
  transition: background .25s;
}
.result8-card:last-child { border-right: none; }
.result8-card:hover { background: #060606; }

.result8-num {
  font-size: 64px;
  font-weight: 300;
  color: var(--aloe);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.result8-label {
  font-size: 14px;
  color: var(--shade-50);
  line-height: 1.5;
}

/* ── PRICING — LIGHT CREAM TRACK ────────────────── */
.pricing8 {
  background: var(--canvas-cream);
}

.pricing8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}

.pricing8-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.pricing8-header h2 { color: var(--ink); margin-bottom: var(--sp-lg); }
.pricing8-header p  { font-size: 18px; color: var(--shade-50); line-height: 1.6; }

.pricing8-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-lg);
  align-items: start;
}

/* Standard pricing card */
.price8-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--canvas-light);
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  box-shadow: var(--sh-paper);
  position: relative;
}

/* Featured — aloe fill */
.price8-card.featured {
  background: var(--aloe);
  border-color: var(--aloe);
  box-shadow: var(--sh-float);
  transform: translateY(-8px);
}

.price8-badge {
  display: inline-block;
  background: var(--canvas-night);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 420;
  letter-spacing: .72px;
  text-transform: uppercase;
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.price8-tier {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .42px;
  color: var(--ink);
  margin-bottom: 6px;
}

.price8-desc {
  font-size: 14px;
  color: var(--shade-50);
  margin-bottom: var(--sp-xl);
  min-height: 42px;
}

.price8-card.featured .price8-desc { color: rgba(0,0,0,.55); }

.price8-amount {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--sp-xl);
}

.price8-period { font-size: 18px; font-weight: 400; color: var(--shade-50); }
.price8-card.featured .price8-period { color: rgba(0,0,0,.5); }

.price8-features {
  list-style: none;
  border-top: 1px solid var(--hairline-light);
  padding-top: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-xxl);
}

.price8-card.featured .price8-features { border-color: rgba(0,0,0,.12); }

.price8-features li {
  font-size: 14px;
  color: var(--shade-60);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price8-card.featured .price8-features li { color: rgba(0,0,0,.7); }

.price8-check {
  width: 18px; height: 18px;
  border: 1px solid var(--shade-30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--shade-60);
  flex-shrink: 0;
}

.price8-card.featured .price8-check {
  border-color: rgba(0,0,0,.2);
  color: var(--ink);
}

/* ── TESTIMONIALS — PISTACHIO BAND ──────────────── */
.testi8 {
  background: var(--pistachio);
  border-top: 1px solid rgba(0,0,0,.06);
}

.testi8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}

.testi8-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.testi8-header h2 { color: var(--ink); margin-bottom: var(--sp-lg); }
.testi8-header p  { font-size: 18px; color: rgba(0,0,0,.55); line-height: 1.6; }

.testi8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.testi8-card {
  background: var(--canvas-light);
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  box-shadow: var(--sh-paper);
}

.testi8-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi8-quote-text {
  font-size: 16px;
  font-weight: 420;
  color: var(--shade-60);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi8-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--hairline-light);
  padding-top: 16px;
}

.testi8-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--shade-30);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 550;
  color: var(--shade-60);
  flex-shrink: 0;
}

.testi8-author strong { font-size: 14px; font-weight: 550; display: block; }
.testi8-author span   { font-size: 12px; color: var(--shade-50); }

/* ── NICHES — DARK CINEMATIC FEATURE CARDS ──────── */
.niches8 {
  background: var(--canvas-night);
  border-top: 1px solid var(--hairline-dark);
}

.niches8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}

.niches8-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.niches8-header h2 { color: var(--on-dark); margin-bottom: var(--sp-lg); }
.niches8-header p  { font-size: 18px; color: var(--shade-40); line-height: 1.6; }

.niches8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.niche8-card {
  background: var(--canvas-night-el);
  padding: var(--sp-xxl);
  box-shadow: var(--sh-dark-card);
  transition: background .25s;
}
.niche8-card:hover { background: #0f0f0f; }

.niche8-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--aloe);
  margin-bottom: var(--sp-lg);
  flex-shrink: 0;
}

.niche8-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .72px;
  color: var(--on-dark);
  margin-bottom: 10px;
}

.niche8-card p {
  font-size: 13px;
  color: var(--shade-50);
  line-height: 1.55;
  margin-bottom: 20px;
}

.niche8-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--aloe);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: .3px;
  transition: gap .2s;
}
.niche8-card:hover .niche8-link { gap: 8px; }

/* ── PROCESS — LIGHT TRACK ──────────────────────── */
.process8 {
  background: var(--canvas-light);
  border-top: 1px solid var(--hairline-light);
}

.process8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}

.process8-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.process8-header h2 { color: var(--ink); margin-bottom: var(--sp-lg); }
.process8-header p  { font-size: 18px; color: var(--shade-50); line-height: 1.6; }

.process8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--hairline-light);
}

.process8-card {
  background: var(--canvas-light);
  padding: var(--sp-xxl);
  position: relative;
  transition: background .2s;
}

.process8-card:hover { background: var(--canvas-cream); }

.process8-step {
  font-size: 13px;
  font-weight: 500;
  color: var(--shade-40);
  letter-spacing: .72px;
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
}

.process8-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--ink);
  margin-bottom: 10px;
}

.process8-card p {
  font-size: 14px;
  color: var(--shade-50);
  line-height: 1.6;
}

/* ── CTA BAND — DARK CINEMATIC ──────────────────── */
.cta8 {
  background: var(--canvas-night);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.cta8-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 120px var(--sp-xl);
  text-align: center;
}

.cta8-inner h2 {
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}

.cta8-inner p {
  font-size: 18px;
  color: var(--shade-40);
  line-height: 1.65;
  margin-bottom: var(--sp-xxl);
}

.cta8-actions { display: flex; gap: 14px; justify-content: center; }

/* ── FAQ — CREAM LIGHT TRACK ────────────────────── */
.faq8 {
  background: var(--canvas-cream);
  border-top: 1px solid var(--hairline-light);
}

.faq8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}

.faq8-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.faq8-header h2 { color: var(--ink); margin-bottom: var(--sp-lg); }
.faq8-header p  { font-size: 18px; color: var(--shade-50); line-height: 1.6; }

.faq8-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.faq8-item {
  border-bottom: 1px solid var(--hairline-light);
}

.faq8-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color .18s;
}
.faq8-trigger:hover { color: var(--shade-60); }

.faq8-icon {
  flex-shrink: 0;
  color: var(--shade-40);
  transition: transform .3s var(--ease-out);
}
.faq8-item.open .faq8-icon { transform: rotate(45deg); }

.faq8-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq8-item.open .faq8-body { max-height: 300px; }

.faq8-body p {
  font-size: 15px;
  color: var(--shade-50);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ── CONTACT — DARK CINEMATIC ───────────────────── */
.contact8 {
  background: var(--canvas-night);
  border-top: 1px solid var(--hairline-dark);
}

.contact8-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 600px;
}

.contact8-info {
  padding: var(--sp-huge) var(--sp-xl);
  border-right: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact8-info h2 { color: var(--on-dark); margin-bottom: var(--sp-lg); }
.contact8-info > p {
  font-size: 18px;
  color: var(--shade-40);
  line-height: 1.65;
  margin-bottom: var(--sp-xxl);
}

.contact8-details { display: flex; flex-direction: column; gap: 14px; }

.contact8-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--shade-30);
}

.contact8-detail-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--aloe);
  flex-shrink: 0;
}

.contact8-form {
  padding: var(--sp-huge) var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form8-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.form8-group { display: flex; flex-direction: column; gap: 6px; }
.form8-group.full { grid-column: 1 / -1; }

.form8-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--shade-50);
  letter-spacing: .72px;
  text-transform: uppercase;
}

.form8-group input,
.form8-group select,
.form8-group textarea {
  background: var(--canvas-night-el);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-md);
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 420;
  color: var(--on-dark);
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  transition: border-color .18s;
  outline: none;
}

.form8-group input::placeholder,
.form8-group textarea::placeholder { color: var(--shade-60); }

.form8-group input:focus,
.form8-group select:focus,
.form8-group textarea:focus {
  border-color: var(--aloe);
}

.form8-group select { cursor: pointer; }
.form8-group select option { background: var(--canvas-night-el); }
.form8-group textarea { resize: vertical; min-height: 100px; }

.form8-submit {
  margin-top: var(--sp-lg);
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 420;
  justify-content: center;
}

.form8-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 0;
  color: var(--on-dark);
}
.form8-success p { color: var(--shade-40); font-size: 15px; }

/* ── FOOTER — DARK CINEMATIC ────────────────────── */
.footer8 {
  background: var(--canvas-night);
  border-top: 1px solid var(--hairline-dark);
  padding: var(--sp-huge) var(--sp-xl);
}

.footer8-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer8-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-huge);
  margin-bottom: var(--sp-huge);
}

.footer8-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 550;
  color: var(--on-dark);
  margin-bottom: var(--sp-lg);
}

.footer8-logo-mark {
  width: 26px; height: 26px;
  background: var(--on-dark);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.footer8-desc {
  font-size: 14px;
  color: var(--shade-60);
  line-height: 1.65;
  max-width: 280px;
}

.footer8-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: var(--sp-lg);
  letter-spacing: .72px;
  text-transform: uppercase;
}

.footer8-col a {
  display: block;
  font-size: 14px;
  color: var(--link-cool-2);
  margin-bottom: var(--sp-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s;
}
.footer8-col a:hover { color: var(--on-dark); }

.footer8-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--hairline-dark);
  font-size: 14px;
  color: var(--shade-60);
}

.footer8-socials { display: flex; gap: var(--sp-lg); }
.footer8-socials a { color: var(--shade-60); transition: color .18s; }
.footer8-socials a:hover { color: var(--on-dark); }

/* ── SCROLL ANIMATION ───────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(2) { transition-delay: .07s; }
.animate-on-scroll:nth-child(3) { transition-delay: .14s; }
.animate-on-scroll:nth-child(4) { transition-delay: .21s; }
.animate-on-scroll:nth-child(5) { transition-delay: .28s; }
.animate-on-scroll:nth-child(6) { transition-delay: .35s; }

/* ── TEAM — LIGHT TRACK ──────────────────────── */
.team8 {
  background: var(--canvas-light);
  border-top: 1px solid var(--hairline-light);
}
.team8-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px var(--sp-xl);
}
.team8-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.team8-header h2 { color: var(--ink); margin-bottom: var(--sp-lg); }
.team8-header p  { font-size: 18px; color: var(--shade-50); line-height: 1.6; }

.team8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team8-card {
  background: #fff;
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team8-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.team8-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--hairline-light);
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid var(--hairline-light);
}

.team8-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.team8-role {
  font-size: 13px;
  color: var(--aloe);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.team8-card p {
  font-size: 14px;
  color: var(--shade-50);
  line-height: 1.6;
}

@media(max-width: 900px) { .team8-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .team8-grid { grid-template-columns: 1fr; } }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .d-xxl { font-size: 70px; }
  .d-xl  { font-size: 55px; }
  .d-lg  { font-size: 48px; }
  .niches8-grid { grid-template-columns: 1fr 1fr; }
  .footer8-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .d-xxl { font-size: 56px; letter-spacing: .5px; }
  .d-xl  { font-size: 40px; }
  .d-lg  { font-size: 36px; }
  .d-md  { font-size: 32px; }

  .nav8 {
    width: calc(100% - 24px);
    top: 8px;
  }

  .nav8-links, .nav8-actions { display: none; }
  .nav8-hamburger { display: flex; }

  /* drawer already styled globally — just ensure hidden at mobile by default,
     shown only when .open class added via JS */

  .why8-inner { grid-template-columns: 1fr; }
  .why8-photo { min-height: 280px; }

  .services8-grid { grid-template-columns: 1fr; }
  .results8-grid  { grid-template-columns: 1fr 1fr; }
  .pricing8-grid  { grid-template-columns: 1fr; }
  .testi8-grid    { grid-template-columns: 1fr; }
  .niches8-grid   { grid-template-columns: 1fr; }
  .process8-grid  { grid-template-columns: 1fr; }
  .faq8-grid      { grid-template-columns: 1fr; }
  .contact8-inner { grid-template-columns: 1fr; }
  .footer8-grid   { grid-template-columns: 1fr 1fr; }
  .form8-grid     { grid-template-columns: 1fr; }
  .hero8-stats    { flex-wrap: wrap; }
  .hero8-stat     { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--hairline-dark); }
}

@media (max-width: 480px) {
  .d-xxl { font-size: 40px; }
  .results8-grid { grid-template-columns: 1fr; }
  .footer8-grid  { grid-template-columns: 1fr; }
  .pricing8-grid { grid-template-columns: 1fr; }
  .hero8-stat    { flex: 0 0 100%; }
}
