/* ═══════════════════════════════════════════════════════════════
   PACKWAVE — Premium Dark Landing Page
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --ink:       #f5f1ff;
  --ink-2:     rgba(245, 241, 255, 0.72);
  --ink-3:     rgba(245, 241, 255, 0.50);
  --ink-4:     rgba(245, 241, 255, 0.32);
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.06);
  --cyan:      #54e1f0;
  --violet:    #a78bfa;
  --bg-body:   #06030d;

  --glass:        rgba(255,255,255,0.04);
  --glass-hover:  rgba(255,255,255,0.07);

  --display: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-body);
  overflow-x: hidden;
  letter-spacing: -0.011em;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; border: none; background: none; cursor: pointer; }

main, nav, footer { position: relative; z-index: 1; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}


/* ═══════════════════════════════════════════════════════════════
   1. ATMOSPHERE
   ═══════════════════════════════════════════════════════════════ */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 78% 12%, oklch(0.38 0.18 305 / 0.85), transparent 65%),
    radial-gradient(50% 40% at 12% 28%, oklch(0.32 0.16 280 / 0.7),  transparent 60%),
    radial-gradient(80% 60% at 50% 95%, oklch(0.42 0.14 205 / 0.55), transparent 60%),
    linear-gradient(180deg, #0d0518 0%, #0a0a1a 45%, #08171e 100%);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
}


/* ═══════════════════════════════════════════════════════════════
   2. NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav-outer {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  max-width: 1180px;
  padding: 0 16px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 22px;
  background: rgba(20, 14, 40, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-outer.scrolled .nav-inner {
  background: rgba(20, 14, 40, 0.75);
  box-shadow: 0 16px 48px -20px rgba(0,0,0,0.8);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand .mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(87,40,168,0.6);
}
.brand .mark img,
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand .name { font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.06);
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #0d0518;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  box-shadow: 0 8px 24px -10px rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(255,255,255,0.45);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile menu open state */
body.menu-open .nav-links {
  display: flex;
  position: absolute;
  top: calc(100% + 12px);
  left: 16px;
  right: 16px;
  flex-direction: column;
  padding: 20px;
  background: rgba(20, 14, 40, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  gap: 4px;
}
body.menu-open .nav-links a {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 12px;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════════════════════════════
   3. HERO
   ═══════════════════════════════════════════════════════════════ */
section { padding: 100px 0; position: relative; }

.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(84,225,240,0.3);
  animation: glow-pulse 2.4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(84,225,240,0.3); }
  50%      { opacity: 0.5; box-shadow: 0 0 6px var(--cyan), 0 0 12px rgba(84,225,240,0.15); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0 0 28px;
}
.hero h1 .italic {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
}
.hero h1 .bleed {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-ctas {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  background: var(--ink);
  color: #0d0518;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s;
  box-shadow:
    0 14px 40px -14px rgba(255,255,255,0.4),
    inset 0 1px 0 rgba(255,255,255,0.7);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 50px -14px rgba(255,255,255,0.55),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-primary .apple { width: 18px; height: 22px; }
.btn-primary .stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  align-items: flex-start;
}
.btn-primary .stack small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.hero-tag {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.hero-tag b { color: var(--ink-2); font-weight: 500; }


/* ═══════════════════════════════════════════════════════════════
   4. HERO STAGE — Phone + Floating Cards
   ═══════════════════════════════════════════════════════════════ */
.hero-stage {
  position: relative;
  margin: 80px auto 0;
  max-width: 980px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 22% auto 22%;
  height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, oklch(0.55 0.20 305 / 0.45), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

/* Phone frame (shows real screenshot) */
.phone-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  border-radius: 52px;
  padding: 7px;
  background: linear-gradient(160deg, #2a1a44, #0e0a1a 60%, #08161c);
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.85),
    0 25px 60px -25px rgba(87,40,168,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.07),
    inset 0 0 0 2px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 46px;
  display: block;
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(20, 14, 40, 0.6);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
  color: var(--ink);
  width: 280px;
  will-change: transform;
}
.float-card.fc-ai    { top: 8%; left: -4%; }
.float-card.fc-buddy { top: 40%; right: -8%; width: 260px; }
.float-card.fc-add   { bottom: 14%; left: -2%; width: 240px; }

.fc-row { display: flex; gap: 12px; align-items: flex-start; }
.fc-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #5728a8 0%, #1f2c84 60%, #0e7592 100%);
  color: white;
  font-size: 16px;
  font-weight: 500;
}
.fc-ico.cyan   { background: linear-gradient(160deg, #0e7592, #54e1f0); }
.fc-ico.violet { background: linear-gradient(160deg, #5728a8, #a78bfa); }

.fc-body { flex: 1; min-width: 0; }
.fc-eyebrow {
  font-size: 10.5px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fc-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.fc-text b { font-weight: 600; }
.fc-meta {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 5px;
}

.fc-avatars { display: flex; margin-top: 10px; }
.fc-avatars .av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(20, 14, 40, 0.8);
  margin-left: -6px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.fc-avatars .av:first-child { margin-left: 0; }

@media (max-width: 760px) {
  .hero-stage { height: auto; padding: 40px 0; }
  .float-card { display: none; }
  .phone-frame { width: 280px; }
}
@media (max-width: 520px) {
  .phone-frame { width: 260px; }
}


/* ═══════════════════════════════════════════════════════════════
   5. WAVE DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.wave-divider {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  height: 80px;
  opacity: 0.18;
  display: block;
}
.wave-divider path { stroke: var(--ink); stroke-width: 1.5; fill: none; }


/* ═══════════════════════════════════════════════════════════════
   6. SECTION UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2.section-h {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  max-width: 880px;
}
h2.section-h .italic {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}
h2.section-h .muted { color: var(--ink-3); }

.section-sub {
  margin-top: 22px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 600px;
}


/* ═══════════════════════════════════════════════════════════════
   7. PAIN SECTION
   ═══════════════════════════════════════════════════════════════ */
.pain { padding: 60px 0 80px; }
.pain-head { text-align: center; margin-bottom: 56px; }
.pain-head h2 { margin: 0 auto; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pain-card {
  padding: 28px 24px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s, transform 0.35s var(--ease-out), background 0.25s;
}
.pain-card:hover {
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.pain-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--violet);
  line-height: 1;
}
.pain-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.012em;
  font-weight: 500;
  margin-top: 24px;
}

@media (max-width: 920px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pain-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════
   8. FEATURE SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.feature.flip { grid-template-columns: 1fr 1.05fr; }
.feature.flip .feature-copy { order: 2; }
.feature.flip .feature-vis  { order: 1; }

.feature-copy h3 {
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 14px 0 22px;
}
.feature-copy h3 .italic {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}
.feature-copy p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 480px;
}
.feature-copy .bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-copy .bullets li {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.feature-copy .bullets li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.feature-vis {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-vis::before {
  content: "";
  position: absolute;
  inset: 10% 10%;
  background: radial-gradient(50% 50% at 50% 50%, oklch(0.50 0.16 280 / 0.45), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Phone showcase (feature visuals with real screenshots) */
.phone-showcase {
  position: relative;
  z-index: 2;
  width: 300px;
  aspect-ratio: 9 / 19.5;
  border-radius: 50px;
  padding: 7px;
  background: linear-gradient(160deg, #2a1a44, #0e0a1a 60%, #08161c);
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44px;
  display: block;
}

@media (max-width: 880px) {
  .feature,
  .feature.flip {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature.flip .feature-copy { order: 1; }
  .feature.flip .feature-vis  { order: 2; }
  .feature-copy { text-align: center; }
  .feature-copy p { margin: 0 auto; }
  .feature-copy .bullets { align-items: flex-start; max-width: 400px; margin: 26px auto 0; }
  .feature-vis { min-height: auto; }
}
@media (max-width: 760px) {
  .phone-showcase { width: 260px; }
}


/* ═══════════════════════════════════════════════════════════════
   9. TEMPLATES VISUAL
   ═══════════════════════════════════════════════════════════════ */
.templates-visual {
  position: relative;
  z-index: 2;
  max-width: 380px;
  width: 100%;
}

.tpl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tpl-chip {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, background 0.25s;
  cursor: default;
}
.tpl-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}
.tpl-chip .gly { font-size: 22px; }
.tpl-chip .nm { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; }
.tpl-chip .ct { font-size: 12px; color: var(--ink-3); }

.tpl-chip.active {
  background: linear-gradient(180deg, rgba(84,225,240,0.18), rgba(84,225,240,0.04));
  border-color: rgba(84,225,240,0.40);
}
.tpl-chip.active .ct { color: var(--cyan); }

.tpl-cta {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(84,225,240,0.08);
  border: 1px solid rgba(84,225,240,0.25);
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  transition: background 0.2s;
}
.tpl-cta:hover {
  background: rgba(84,225,240,0.14);
}


/* ═══════════════════════════════════════════════════════════════
   10. HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.how-head { margin-bottom: 56px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  position: relative;
  min-height: 240px;
  transition: transform 0.35s var(--ease-out), border-color 0.25s, background 0.25s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.step .n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(84,225,240,0.10);
  border: 1px solid rgba(84,225,240,0.28);
  color: var(--cyan);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

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


/* ═══════════════════════════════════════════════════════════════
   11. REVIEWS
   ═══════════════════════════════════════════════════════════════ */
.reviews-bar {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.rate { text-align: center; }
.rate .stars {
  color: var(--cyan);
  font-size: 17px;
  letter-spacing: 2px;
}
.rate .stars-grey { color: var(--ink-4); }
.rate .num {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.rate .lbl {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  padding: 28px 26px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: transform 0.35s var(--ease-out), border-color 0.25s, background 0.25s;
}
.review:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.review .stars {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review .q {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.review .who { display: flex; align-items: center; gap: 10px; }
.review .who .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.review .who .nm { font-size: 14px; font-weight: 600; }
.review .who .meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

@media (max-width: 880px) {
  .reviews { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .reviews-bar { flex-direction: column; gap: 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   12. FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-header { text-align: center; margin-bottom: 16px; }

.faq-wrap { max-width: 760px; margin: 40px auto 0; }

.faq {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { display: none; content: ''; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-3);
  transition: color 0.2s, transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq[open] summary::after {
  content: "−";
  color: var(--cyan);
}
.faq summary:hover { color: var(--cyan); }

.faq p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 640px;
  animation: faq-slide 0.35s var(--ease-out);
}

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


/* ═══════════════════════════════════════════════════════════════
   13. FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 120px 0 100px;
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 20% 20% 30% 20%;
  background: radial-gradient(50% 60% at 50% 50%, oklch(0.50 0.18 280 / 0.35), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-cta h2 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 auto 22px;
  max-width: 900px;
}
.final-cta h2 .italic {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}
.final-cta p {
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 36px;
}


/* ═══════════════════════════════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--ink); }


/* ═══════════════════════════════════════════════════════════════
   15. REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════════════════════
   16. RESPONSIVE CLEANUP
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  .container { padding: 0 22px; }
  section { padding: 70px 0; }
  .hero { padding: 100px 0 40px; }
  .final-cta { padding: 80px 0 60px; }
  footer { text-align: center; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .faq summary { font-size: 16px; }
}


/* ─── Polish ────────────────────────────────────────────────── */
::selection {
  background: rgba(167, 139, 250, 0.3);
  color: var(--ink);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.16); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}
