/* ============================================
   DATE WITH ME — v6
   Bold gradients. Accordion How It Works.
   Pain section. Split testimonials. Big circles.
   ============================================ */

/* ─── Design Tokens ─── */
:root {
  /* Backgrounds — bolder, more visible differentiation */
  --bg-dark: #0F0E17;
  --bg-warm: #1A1520;
  --bg-section: #131118;
  --bg-grad-hero: linear-gradient(135deg, #0F0E17 0%, #1A1520 50%, #131118 100%);
  --bg-grad-pain: linear-gradient(180deg, #1A1520 0%, #2A1A25 40%, #1A1520 100%);
  --bg-grad-hiw: linear-gradient(135deg, #0A1A1C 0%, #0F1E22 50%, #0A1518 100%);
  --bg-grad-girls: linear-gradient(180deg, #2A1A25 0%, #3A1A2E 40%, #1A1520 100%);
  --bg-grad-boys: linear-gradient(180deg, #1A1A2E 0%, #1A2030 40%, #131118 100%);
  --bg-grad-pricing: linear-gradient(135deg, #131118 0%, #1C1A2E 50%, #1A1520 100%);
  --bg-grad-faq: linear-gradient(180deg, #1A1520 0%, #131118 100%);
  --bg-grad-cta: linear-gradient(135deg, #2A1A25 0%, #3A1A2E 50%, #1A1520 100%);

  /* Accents */
  --coral: #FF5C5C;
  --coral-light: #FF8A8A;
  --gold: #FFB938;
  --teal: #2DD4BF;
  --cream: #FFFEF7;
  --muted: rgba(255, 254, 247, 0.55);
  --muted-dark: rgba(255, 254, 247, 0.35);

  /* Gradients */
  --grad-coral-gold: linear-gradient(135deg, #FF5C5C 0%, #FFB938 100%);
  --grad-teal-coral: linear-gradient(135deg, #2DD4BF 0%, #FF5C5C 100%);
  --grad-warm-glow: radial-gradient(ellipse at 50% 0%, rgba(255, 92, 92, 0.2) 0%, transparent 60%);
  --grad-teal-glow: radial-gradient(ellipse at 50% 50%, rgba(45, 212, 191, 0.12) 0%, transparent 60%);

  /* Fonts */
  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1100px;
  --container-narrow: 680px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 100px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Utility ─── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-pad) 0; position: relative; }

.italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-light);
}

.gradient-text {
  background: var(--grad-coral-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title--center {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  text-align: center;
}

.btn--gradient {
  background: var(--grad-coral-gold);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 92, 92, 0.3);
}
.btn--gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255, 92, 92, 0.45); }

.btn--ghost {
  background: rgba(255, 254, 247, 0.05);
  border: 1px solid rgba(255, 254, 247, 0.15);
  color: var(--cream);
}
.btn--ghost:hover { background: rgba(255, 254, 247, 0.1); }

.btn--large { padding: 18px 36px; font-size: 1.1rem; }

/* ─── Sticky CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; }

.btn--sticky {
  padding: 12px 24px;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(255, 92, 92, 0.4), 0 0 40px rgba(255, 185, 56, 0.15);
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg-grad-hero);
}

.hero__image-wrap { position: absolute; inset: 0; z-index: 0; }

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero__img.is-active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 14, 23, 0) 0%,
    rgba(15, 14, 23, 0.1) 30%,
    rgba(15, 14, 23, 0.45) 65%,
    rgba(15, 14, 23, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px 80px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 32px;
}
.hero__title span { display: block; }
.hero__title .italic-accent { font-size: 1.1em; color: var(--coral-light); }

.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__cta-sub { font-size: 0.85rem; color: var(--muted); }

/* ════════════════════════════════════════════
   PAIN SECTION — carousel
   ════════════════════════════════════════════ */
.pain {
  background: var(--bg-grad-pain);
  padding: 100px 0;
  overflow: hidden;
}

.pain__carousel {
  position: relative;
  margin: 0 -24px 60px;
  padding: 0 24px;
  overflow: hidden;
}

.pain__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

.pain__card {
  flex: 0 0 calc(50% - 10px);
  background: rgba(255, 254, 247, 0.04);
  border: 1px solid rgba(255, 92, 92, 0.12);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.pain__card:hover {
  background: rgba(255, 92, 92, 0.06);
  border-color: rgba(255, 92, 92, 0.25);
  transform: scale(1.02);
}

.pain__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.pain__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cream);
}

.pain__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.pain__summary {
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 92, 92, 0.15);
}

.pain__summary-text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}

.pain__summary-text .italic-accent { color: var(--coral); }

.pain__summary-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   HOW IT WORKS — accordion, large, focused
   ════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg-grad-hiw);
  padding: 100px 0;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-teal-glow);
  pointer-events: none;
}

.how-it-works .container { position: relative; z-index: 1; }

.hiw__accordion {
  max-width: 900px;
  margin: 0 auto;
}

/* Tabs */
.hiw__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hiw__tab {
  background: rgba(255, 254, 247, 0.04);
  border: 1px solid rgba(255, 254, 247, 0.08);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.hiw__tab.is-active {
  background: var(--grad-coral-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 92, 92, 0.3);
}

.hiw__tab-num {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
}

.hiw__tab.is-active .hiw__tab-num { opacity: 1; }

/* Display area — one panel at a time, large */
.hiw__display {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw__panel {
  display: none;
  width: 100%;
  animation: hiwFade 0.5s ease;
}

.hiw__panel.is-active { display: block; }

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

.hiw__panel-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hiw__phone-wrap {
  flex-shrink: 0;
}

.hiw__panel-text {
  flex: 1;
}

.hiw__panel-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.hiw__panel-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Large phone mockup */
.phone-mockup--large {
  width: 320px;
  height: 650px;
}

/* Nav */
.hiw__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.hiw__nav-btn {
  background: rgba(255, 254, 247, 0.05);
  border: 1px solid rgba(255, 254, 247, 0.1);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.hiw__nav-btn:hover {
  background: rgba(255, 92, 92, 0.1);
  border-color: rgba(255, 92, 92, 0.3);
}

.hiw__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hiw__nav-dots {
  display: flex;
  gap: 8px;
}

.hiw__nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 254, 247, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.hiw__nav-dot.is-active {
  background: var(--coral);
  width: 24px;
  border-radius: 4px;
}

/* Pain → How It Works: clear visual break */
.how-it-works {
  border-top: 1px solid rgba(45, 212, 191, 0.15);
}
.phone-mockup {
  width: 280px;
  height: 580px;
  position: relative;
}

.phone-mockup__frame {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 0 0 2px #333, 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(255, 92, 92, 0.08);
  position: relative;
}

.phone-mockup__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
}

/* ─── Mock Screens ─── */
.mock-screen {
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  overflow: hidden;
}

.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mock-logo { font-size: 0.75rem; font-weight: 600; color: var(--coral); }
.mock-step { font-size: 0.7rem; color: var(--muted-dark); }

/* Creation screen */
.mock-create__upload {
  background: rgba(255,254,247,0.05);
  border: 1px dashed rgba(255,254,247,0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.mock-create__upload-icon { font-size: 1.5rem; margin-bottom: 4px; }
.mock-create__upload-text { font-size: 0.75rem; color: var(--muted); }

.mock-create__loading { display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.mock-create__spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(45,212,191,0.2);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mock-create__loading-text { font-size: 0.7rem; color: var(--teal); }

.mock-create__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-tag {
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.3);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0;
  animation: tagPop 0.4s ease forwards;
}
@keyframes tagPop { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

.mock-create__date-card {
  background: rgba(255,254,247,0.05);
  border: 1px solid rgba(255,254,247,0.1);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
}
.mock-create__date-card--selected { border-color: var(--coral); background: rgba(255,92,92,0.08); }
.mock-create__date-emoji { font-size: 1.2rem; }
.mock-create__date-title { font-size: 0.7rem; font-weight: 500; }

.mock-create__typing {
  background: rgba(255,254,247,0.03);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.65rem;
  color: var(--cream);
  min-height: 40px;
}
.mock-create__cursor { animation: blink 1s step-end infinite; color: var(--coral); }
@keyframes blink { 50% { opacity: 0; } }

.mock-btn {
  background: var(--grad-coral-gold);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
}
.mock-btn--teal { background: var(--teal); color: var(--bg-dark); }
.mock-btn--ghost { background: transparent; border: 1px solid rgba(255,254,247,0.15); color: var(--cream); }

/* Invite screen */
.mock-screen--warm { background: var(--bg-grad-pain) !important; }
.mock-invite { align-items: center; text-align: center; }
.mock-invite__card {
  background: rgba(255,254,247,0.05);
  border: 1px solid rgba(255,92,92,0.2);
  border-radius: 16px;
  padding: 20px 16px;
  width: 100%;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.mock-invite__emoji { font-size: 1.8rem; }
.mock-invite__greeting { font-size: 1.1rem; font-weight: 600; }
.mock-invite__date-card {
  background: rgba(255,185,56,0.1);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  width: 100%;
}
.mock-invite__date-emoji { font-size: 1rem; }
.mock-invite__date-text { font-size: 0.7rem; font-weight: 500; }
.mock-invite__line { font-size: 0.7rem; font-style: italic; color: var(--cream); line-height: 1.5; padding: 8px 0; }
.mock-invite__link { font-size: 0.65rem; color: var(--teal); font-family: monospace; }

/* Her phone screen */
.mock-screen--girl { background: linear-gradient(180deg, #2A1A20 0%, #1A1520 100%) !important; }
.mock-her-phone { gap: 16px; }
.mock-her-phone__notification {
  background: rgba(255,254,247,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
}
.mock-her-phone__notif-icon { font-size: 1.2rem; }
.mock-her-phone__notif-text { font-size: 0.7rem; color: var(--muted); }
.mock-her-phone__invite {
  background: rgba(255,254,247,0.05);
  border: 1px solid rgba(255,92,92,0.15);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.mock-her-phone__emoji { font-size: 1.5rem; }
.mock-her-phone__greeting { font-size: 1rem; font-weight: 600; }
.mock-her-phone__sub { font-size: 0.65rem; color: var(--muted); line-height: 1.4; }
.mock-her-phone__date {
  background: rgba(255,185,56,0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px; align-items: center; width: 100%;
}
.mock-her-phone__date-emoji { font-size: 1.2rem; }
.mock-her-phone__date-title { font-size: 0.75rem; font-weight: 600; }
.mock-her-phone__date-desc { font-size: 0.65rem; font-style: italic; color: var(--cream); line-height: 1.4; }
.mock-her-phone__hint { font-size: 0.6rem; color: var(--muted-dark); }

/* Yes screen */
.mock-screen--success { background: linear-gradient(180deg, #0F1A1A 0%, #0F0E17 100%) !important; }
.mock-yes { align-items: center; text-align: center; justify-content: center; gap: 10px; }
.mock-yes__heart { font-size: 2.5rem; animation: heartBeat 1.5s ease infinite; }
@keyframes heartBeat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.mock-yes__title { font-size: 1.4rem; font-weight: 700; }
.mock-yes__sub { font-size: 0.75rem; color: var(--muted); }
.mock-yes__response {
  background: rgba(45,212,191,0.15);
  border: 1px solid var(--teal);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  width: 100%; text-align: center;
}
.mock-yes__options { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.mock-yes__option {
  background: rgba(255,254,247,0.03);
  border: 1px solid rgba(255,254,247,0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
}
.mock-yes__option--muted { color: var(--muted-dark); }
.mock-yes__privacy { font-size: 0.6rem; color: var(--muted-dark); margin-top: 8px; }

/* ════════════════════════════════════════════
   TESTIMONIALS — split, big circles
   ════════════════════════════════════════════ */
.testimonials { padding: 100px 0; position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 200px; background: var(--grad-warm-glow); pointer-events: none; }

.testimonials--girls { background: var(--bg-grad-girls); }
.testimonials--boys { background: var(--bg-grad-boys); }

.testi__sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -40px;
  margin-bottom: 40px;
}

.testi-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 56px;
}

.testi-track { position: relative; min-height: 600px; }

.testi-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  animation: testiFade 0.6s ease;
}
.testi-slide.is-active { display: flex; }

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

/* 270px circles — 50% bigger than v5's 180px */
.testi-img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 4px solid var(--coral);
  box-shadow: 0 8px 40px rgba(255, 92, 92, 0.2);
}

.testimonials--boys .testi-img { border-color: var(--teal); box-shadow: 0 8px 40px rgba(45, 212, 191, 0.2); }

.testi-content { max-width: 500px; }

.testi-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
}

.testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

.testimonials--boys .testi-name { color: var(--teal); }

.testi-nav {
  position: absolute;
  top: 135px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 254, 247, 0.05);
  border: 1px solid rgba(255, 254, 247, 0.1);
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
  transition: background 0.2s;
}
.testi-nav:hover { background: rgba(255, 254, 247, 0.1); }
.testi-nav--prev { left: 0; }
.testi-nav--next { right: 0; }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 254, 247, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.is-active { background: var(--coral); width: 24px; border-radius: 4px; }
.testimonials--boys .testi-dot.is-active { background: var(--teal); }

/* ════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════ */
.pricing { background: var(--bg-grad-pricing); padding: 100px 0; }

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing__card {
  background: rgba(255, 254, 247, 0.03);
  border: 1px solid rgba(255, 254, 247, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing__card--pro {
  background: linear-gradient(135deg, rgba(255, 92, 92, 0.08) 0%, rgba(255, 185, 56, 0.05) 100%);
  border: 1px solid rgba(255, 92, 92, 0.2);
  position: relative;
}

.pricing__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-coral-gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__card-title { font-size: 1.3rem; font-weight: 600; }
.pricing__card-price { font-size: 2.5rem; font-weight: 700; }
.pricing__card-price small { font-size: 0.9rem; font-weight: 400; color: var(--muted); }

.pricing__features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing__features li { font-size: 0.85rem; color: var(--cream); padding-left: 20px; position: relative; }
.pricing__features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.pricing__btn { margin-top: 8px; text-align: center; }

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq { background: var(--bg-grad-faq); padding: 100px 0; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: rgba(255, 254, 247, 0.03);
  border: 1px solid rgba(255, 254, 247, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

.faq__question {
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq__question:hover { background: rgba(255, 254, 247, 0.02); }
.faq__question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--coral); transition: transform 0.3s; }
.faq__item.is-open .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.faq__item.is-open .faq__answer { max-height: 200px; padding: 0 20px 18px; }

/* ════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════ */
.final-cta {
  background: var(--bg-grad-cta);
  text-align: center;
  padding: 120px 0 100px;
  position: relative;
}
.final-cta::before { content: ''; position: absolute; inset: 0; background: var(--grad-warm-glow); pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }

.final-cta__title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.final-cta__sub { font-size: 1.1rem; color: var(--muted); margin-bottom: 32px; }
.final-cta__sub:last-of-type { font-size: 0.85rem; margin-top: 16px; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer { background: var(--bg-dark); padding: 40px 0 120px; text-align: center; }
/* Ensure content isn't hidden behind sticky CTA */
body { padding-bottom: 100px; }
.footer__text { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
.footer__links { font-size: 0.85rem; display: flex; justify-content: center; align-items: center; gap: 12px; }
.footer__links a { color: var(--coral); transition: color 0.2s; }
.footer__links a:hover { color: var(--coral-light); }
.footer__divider { color: var(--muted-dark); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .hero__title { font-size: clamp(2rem, 9vw, 3.5rem); }

  .pain__card { flex: 0 0 calc(45% - 10px); min-height: 240px; padding: 28px 20px; }
  .pain__icon { font-size: 2.5rem; }
  .pain__title { font-size: 1.1rem; }

  .hiw__panel-content { flex-direction: column; gap: 32px; }
  .hiw__panel-text { text-align: center; }

  .phone-mockup--large { width: 260px; height: 540px; }

  .hiw__tabs { gap: 4px; }
  .hiw__tab { padding: 8px 14px; font-size: 0.8rem; }

  .testi-carousel { padding: 0 40px; }
  .testi-img { width: 200px; height: 200px; }
  .testi-nav { top: 100px; width: 36px; height: 36px; }
  .testi-track { min-height: 500px; }

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

  .hiw__nav { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .pain__card { flex: 0 0 85%; min-height: 220px; padding: 24px 20px; }
  .pain__icon { font-size: 2.5rem; }
  .testi-nav { display: flex; width: 32px; height: 32px; font-size: 1.1rem; opacity: 0.7; }
  .testi-nav:active { opacity: 1; }
  .testi-carousel { padding: 0 16px; }
  .testi-track { min-height: 450px; }
  /* Swipe hint for pain carousel on mobile */
  .pain__carousel::after {
    content: '← swipe →';
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-dark);
    margin-top: 12px;
    letter-spacing: 0.05em;
  }

  .hiw__tabs { flex-direction: column; align-items: center; }
  .hiw__tab { width: 100%; max-width: 200px; justify-content: center; }

  .phone-mockup--large { width: 240px; height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
