/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:           oklch(10% 0.06 290);
  --bg-2:         oklch(13% 0.07 290);
  --bg-card:      oklch(15% 0.06 290);
  --border:       oklch(25% 0.08 290 / 0.6);
  --violet:       oklch(60% 0.28 290);
  --violet-lt:    oklch(72% 0.22 290);
  --orange:       oklch(72% 0.19 48);
  --yellow:       oklch(86% 0.17 90);
  --white:        oklch(97% 0.01 290);
  --muted:        oklch(65% 0.04 290);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 68px;
  background: oklch(10% 0.06 290 / 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--violet-lt), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 oklch(60% 0.28 290 / 0);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--violet-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px oklch(60% 0.28 290 / 0.4);
}
.btn-primary:active { transform: translateY(0); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(1.5rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}

/* Ambient glow orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, oklch(60% 0.28 290 / 0.18) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-orb-orange {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, oklch(72% 0.19 48 / 0.12) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
  pointer-events: none;
}

.hero-orb-left {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, oklch(72% 0.22 290 / 0.1) 0%, transparent 70%);
  top: 30%;
  left: 5%;
  pointer-events: none;
}

/* Floating geometric accents */
.geo {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}
.geo-1 {
  width: 80px; height: 80px;
  border: 2px solid var(--violet);
  border-radius: 16px;
  transform: rotate(25deg);
  top: 15%; left: 8%;
  animation: floatA 8s ease-in-out infinite;
}
.geo-2 {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  top: 20%; right: 12%;
  animation: floatB 6s ease-in-out infinite;
}
.geo-3 {
  width: 60px; height: 60px;
  border: 2px solid var(--yellow);
  transform: rotate(45deg);
  bottom: 25%; left: 12%;
  animation: floatA 10s ease-in-out infinite reverse;
}
.geo-4 {
  width: 32px; height: 32px;
  background: var(--violet);
  border-radius: 6px;
  transform: rotate(20deg);
  bottom: 30%; right: 8%;
  animation: floatB 7s ease-in-out infinite reverse;
}

@keyframes floatA {
  0%, 100% { transform: rotate(25deg) translateY(0); }
  50% { transform: rotate(25deg) translateY(-20px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: oklch(60% 0.28 290 / 0.12);
  border: 1px solid oklch(60% 0.28 290 / 0.3);
  color: var(--violet-lt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 .accent,
.accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2.8rem;
  position: relative;
  z-index: 1;
}

.hero-form-wrap {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.hero-social-proof {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: oklch(55% 0.04 290);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.hero-social-proof .avatars {
  display: flex;
}
.hero-social-proof .avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -6px;
}
.hero-social-proof .avatar:first-child { margin-left: 0; }

/* ── SECTION BASE ─────────────────────────────────────────────── */
section {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 660px;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

/* ── PROBLEM ─────────────────────────────────────────────────── */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover {
  border-color: oklch(60% 0.28 290 / 0.5);
  transform: translateY(-4px);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--orange));
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover::before { opacity: 1; }

.pain-icon {
  width: 44px; height: 44px;
  background: oklch(60% 0.28 290 / 0.1);
  border: 1px solid oklch(60% 0.28 290 / 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

/* ── FEATURES ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  background: linear-gradient(145deg, var(--bg-card), oklch(12% 0.055 290));
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: oklch(72% 0.19 48 / 0.4);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}
.feature-icon-wrap.violet { background: oklch(60% 0.28 290 / 0.12); border: 1px solid oklch(60% 0.28 290 / 0.25); }
.feature-icon-wrap.orange { background: oklch(72% 0.19 48 / 0.1); border: 1px solid oklch(72% 0.19 48 / 0.25); }
.feature-icon-wrap.yellow { background: oklch(86% 0.17 90 / 0.1); border: 1px solid oklch(86% 0.17 90 / 0.25); }
.feature-icon-wrap.green  { background: oklch(70% 0.18 160 / 0.1); border: 1px solid oklch(70% 0.18 160 / 0.25); }
.feature-icon-wrap.pink   { background: oklch(70% 0.22 350 / 0.1); border: 1px solid oklch(70% 0.22 350 / 0.25); }
.feature-icon-wrap.cyan   { background: oklch(70% 0.18 220 / 0.1); border: 1px solid oklch(70% 0.18 220 / 0.25); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}
.learn-more:hover {
  gap: 0.55rem;
  color: var(--yellow);
}

/* ── WHO IT'S FOR ─────────────────────────────────────────────── */
.who {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-left .section-title { max-width: 380px; margin-bottom: 1rem; }

.who-left p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 340px;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.who-list li:hover {
  border-color: oklch(60% 0.28 290 / 0.4);
  background: oklch(17% 0.07 290);
}

.who-check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: oklch(13% 0.08 290);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, oklch(60% 0.28 290 / 0.15) 0%, transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, oklch(72% 0.19 48 / 0.1) 0%, transparent 65%);
  bottom: -100px;
  right: 10%;
  pointer-events: none;
}

.cta-section .section-title {
  max-width: 100%;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.cta-section .section-sub {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .section-sub a {
  color: var(--violet-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: oklch(72% 0.22 290 / 0.4);
  transition: text-decoration-color 0.2s;
}
.cta-section .section-sub a:hover { text-decoration-color: var(--violet-lt); }

.cta-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.cta-note {
  font-size: 0.78rem;
  color: oklch(45% 0.04 290);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: oklch(8% 0.05 290);
  border-top: 1px solid oklch(20% 0.07 290 / 0.5);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left .nav-logo { font-size: 1.2rem; }
.footer-tagline {
  font-size: 0.8rem;
  color: oklch(40% 0.04 290);
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: oklch(45% 0.04 290);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--muted); }

.footer-copy {
  font-size: 0.78rem;
  color: oklch(35% 0.04 290);
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero elements animate on load */
.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards;
}
.hero-animate-1 { animation-delay: 0.1s; }
.hero-animate-2 { animation-delay: 0.25s; }
.hero-animate-3 { animation-delay: 0.4s; }
.hero-animate-4 { animation-delay: 0.55s; }
.hero-animate-5 { animation-delay: 0.7s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────── */
/*  SUBPAGE: BIRTHDAY PARTY BOOKING SOFTWARE                      */
/* ─────────────────────────────────────────────────────────────── */

.page-hero {
  position: relative;
  padding: 6rem clamp(1.5rem, 5vw, 4rem) 5rem;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, oklch(60% 0.28 290 / 0.18) 0%, transparent 70%);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 920px;
  margin: 0 auto 1.6rem;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: oklch(72% 0.19 48 / 0.1);
  border: 1px solid oklch(72% 0.19 48 / 0.3);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}

.page-intro {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin: 0 auto 2.4rem;
}

.page-intro a {
  color: var(--violet-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: oklch(72% 0.22 290 / 0.4);
  transition: text-decoration-color 0.2s;
}
.page-intro a:hover { text-decoration-color: var(--violet-lt); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: 760px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: oklch(15% 0.06 290 / 0.7);
  border: 1px solid var(--border);
  color: oklch(75% 0.03 290);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.trust-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: var(--orange);
}

/* ── STATS GRID ───────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.4rem 1.8rem 2rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, oklch(72% 0.19 48 / 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(72% 0.19 48 / 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  border-color: oklch(72% 0.19 48 / 0.4);
  transform: translateY(-4px);
}
.stat-card:hover::after { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.stat-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── STEPS / TIMELINE ─────────────────────────────────────────── */
.steps-list {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(180deg,
    oklch(60% 0.28 290 / 0.5) 0%,
    oklch(72% 0.19 48 / 0.5) 50%,
    oklch(86% 0.17 90 / 0.2) 100%);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.step:hover .step-num {
  border-color: var(--orange);
  color: var(--yellow);
  transform: scale(1.05);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  padding-top: 0.95rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.faq-item[open] {
  border-color: oklch(60% 0.28 290 / 0.45);
  background: oklch(16% 0.07 290);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--violet-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── STICKY MOBILE CTA ────────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--violet) 0%, oklch(65% 0.26 320) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow:
    0 12px 40px oklch(60% 0.28 290 / 0.45),
    0 0 0 1px oklch(60% 0.28 290 / 0.4),
    inset 0 1px 0 oklch(80% 0.1 290 / 0.3);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-mobile-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-mobile-cta::after {
  content: '→';
  font-weight: 700;
  transition: transform 0.2s;
}

.sticky-mobile-cta:active::after {
  transform: translateX(3px);
}

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  nav .btn-primary span { display: none; }

  .hero-form-wrap { width: 100%; }

  .who-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .who-left p { max-width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .geo-1, .geo-2, .geo-3, .geo-4 { display: none; }

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

  .step { grid-template-columns: 56px 1fr; gap: 1.1rem; }
  .step-num { width: 56px; height: 56px; font-size: 1.1rem; }
  .steps-list::before { left: 27px; top: 50px; bottom: 50px; }

  .sticky-mobile-cta { display: inline-flex; }

  body:has(.sticky-mobile-cta) { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  section { padding: 4rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .page-hero { padding: 4rem 1.25rem 3rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 1.8rem 1.5rem; }

  .faq-item summary { font-size: 0.98rem; padding: 1.1rem 1.25rem; }
  .faq-answer { padding: 0 1.25rem 1.2rem; }
}
