/* ── KeepTally Marketing Site CSS ─────────────────────────────────────────── */
/* Independent from app CSS. Mobile-first. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --rose: #e8637a;
  --rose-dark: #c0445e;
  --rose-light: #fce7ec;
  --blue: #3b82f6;
  --green: #5aac73;
  --purple: #7c5cbf;
  --orange: #ea7c3a;
  --navy: #1a1a2e;
  --text: #1a1a2e;
  --text-secondary: #64748b;
  --border: #e8edf2;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 24px rgba(26, 26, 46, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.16);
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ───────────────────────────────────────────────────────────────── */
.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section { padding: 80px 0; }
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(232, 99, 122, 0.3);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 99, 122, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--rose);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid var(--rose);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--rose-light);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s;
}
.btn-text:hover { color: var(--text); }

/* ── Badge ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-green { background: #e8f5ed; color: var(--green); }
.badge-purple { background: #ede9fe; color: var(--purple); }
.badge-blue { background: #eff6ff; color: var(--blue); }

/* ── Card ───────────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Typography ─────────────────────────────────────────────────────────────── */
.label-small {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.heading-xl {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.heading-lg {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.heading-md {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.subheadline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ── NAV ────────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 26px;
  height: 26px;
  color: #4a8fd9; /* matches app icon --accent/--water blue */
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.nav-logo-tag {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .nav-actions { display: flex; }
}
.nav-login {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-login:hover { color: var(--text); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu .btn-primary {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  color: #fff !important; /* prevent .nav-mobile-menu a and :hover rules from overriding */
  font-weight: 600;
}
.nav-mobile-menu .btn-primary:hover { color: #fff !important; }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #fff 0%, #f9f0f2 50%, #f0f4ff 100%);
  padding: 48px 0 0;
  overflow: visible;
}
@media (min-width: 768px) {
  .hero { padding: 100px 0 80px; overflow: hidden; }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    align-items: center;
  }
}

.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.hero-trackers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.hero-tracker {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.hero-tracker-dot {
  color: var(--border);
  font-weight: 400;
  font-size: 0.9rem;
}
.hero-tracker-note {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.7;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── PHONE MOCKUP ───────────────────────────────────────────────────────────── */
.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 258px;
  height: 516px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    0 32px 80px rgba(26, 26, 46, 0.32),
    0 8px 24px rgba(26, 26, 46, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .phone-mockup {
    width: 290px;
    height: 580px;
  }
}

/* Side buttons */
.phone-mockup::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 100px;
  width: 3px;
  height: 60px;
  background: #2a2a4e;
  border-radius: 0 3px 3px 0;
}
.phone-mockup::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 80px;
  width: 3px;
  height: 80px;
  background: #2a2a4e;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 44px 0 #2a2a4e;
}

.phone-screen {
  background: #f8f9fa;
  border-radius: 30px; /* 40px outer - 10px padding = 30px optical match */
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 4px;
  font-size: 9px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.phone-status-bar .status-time { font-size: 10px; }
.phone-status-icons { display: flex; gap: 4px; align-items: center; font-size: 9px; }

.phone-app-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d54 100%);
  padding: 12px 16px 10px;
  flex-shrink: 0;
}
.phone-greeting {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.phone-date {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

.phone-content {
  flex: 1;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Mini tracker cards */
.mini-card {
  background: #fff;
  border-radius: 10px;
  padding: 9px 11px;
  border: 1px solid #e8edf2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mini-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mini-card-label {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.mini-card-value {
  font-size: 9px;
  font-weight: 600;
  color: #1a1a2e;
}
.mini-progress-track {
  height: 5px;
  background: #e8edf2;
  border-radius: 999px;
  overflow: hidden;
}
.mini-progress-fill {
  height: 100%;
  border-radius: 999px;
}
.mini-stat-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.mini-stat {
  font-size: 8px;
  color: #64748b;
}
.mini-stat strong {
  font-weight: 700;
  color: #1a1a2e;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.patterns-mini-card {
  background: linear-gradient(135deg, #fce7ec 0%, #f0f4ff 100%);
  border-radius: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(232, 99, 122, 0.15);
}
.patterns-mini-label {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rose);
  margin-bottom: 4px;
}
.patterns-mini-text {
  font-size: 8px;
  color: #1a1a2e;
  line-height: 1.4;
  font-weight: 500;
}

/* ── PERIOD MOCKUP COMPONENTS ───────────────────────────────────────────────── */
.period-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 0;
}
.period-view-title {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.phase-chip {
  font-size: 7px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.phase-chip.luteal {
  background: #fce7ec;
  color: #e8637a;
}
.cycle-main-card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cycle-ring-outer {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(#e8637a 0deg 223deg, #fce7ec 223deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cycle-ring-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cycle-ring-day {
  font-size: 20px;
  font-weight: 800;
  color: #e8637a;
  line-height: 1;
}
.cycle-ring-of {
  font-size: 7px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 1px;
}
.cycle-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cycle-stat-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cycle-stat-label {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.cycle-stat-value {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.cycle-stat-sub {
  font-size: 7px;
  color: #94a3b8;
  font-weight: 500;
}
.cycle-stat-divider {
  height: 1px;
  background: #e8edf2;
}
.symptom-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.symptom-chip {
  font-size: 7px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  background: #fce7ec;
  color: #c0445e;
}
.cycle-strip {
  display: flex;
  gap: 3px;
  margin-top: 6px;
  justify-content: space-between;
}
.cycle-strip-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 7px;
  font-weight: 600;
  color: #94a3b8;
  flex: 1;
}
.cycle-strip-day.today { color: #1a1a2e; font-weight: 800; }
.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8edf2;
}
.cs-dot.fertile { background: #5aac73; }
.cs-dot.ovulation { background: #e8637a; }
.cs-dot.today-dot {
  background: #1a1a2e;
  box-shadow: 0 0 0 2px rgba(26,26,46,0.15);
}

/* ── DASHBOARD MOCKUP EXTRAS ─────────────────────────────────────────────────── */
.dash-period-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-period-next {
  font-size: 9px;
  font-weight: 700;
  color: #e8637a;
}
.dash-period-days {
  color: #94a3b8;
  font-weight: 500;
}
.dash-metric {
  font-size: 13px;
  font-weight: 800;
  margin-top: 4px;
  line-height: 1;
}
.dash-metric-sub {
  font-size: 7px;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
}

/* ── TRACKER SHOWCASE (deep section) ────────────────────────────────────────── */
.tracker-showcase-section {
  background: var(--bg-soft);
}
.tracker-showcase-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tracker-showcase-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .tracker-showcase-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: visible;
    padding: 8px 0 0;
  }
}
.showcase-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .showcase-card { min-width: unset; flex-shrink: unset; }
}
.showcase-card-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.showcase-card-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
  display: block;
}
.showcase-card-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.showcase-card-body {
  padding: 12px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Colored top accent bar per tracker */
.showcase-card.period .showcase-card-header { border-top: 3px solid #e8637a; }
.showcase-card.sleep  .showcase-card-header { border-top: 3px solid #7c5cbf; }
.showcase-card.gut    .showcase-card-header { border-top: 3px solid #d4885a; }
.showcase-card.vitamins .showcase-card-header { border-top: 3px solid #5aac73; }
.showcase-card.water  .showcase-card-header { border-top: 3px solid #4a8fd9; }

/* Showcase data rows */
.sc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.sc-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex: 1;
}
.sc-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.sc-value.rose   { color: #e8637a; }
.sc-value.purple { color: #7c5cbf; }
.sc-value.orange { color: #d4885a; }
.sc-value.green  { color: #5aac73; }
.sc-value.blue   { color: #4a8fd9; }

/* Mini bar chart (for sleep + water) */
.sc-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  margin-bottom: 2px;
}
.sc-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

/* Trigger bars (gut) */
.sc-trigger-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sc-trigger-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-trigger-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy);
  width: 48px;
  flex-shrink: 0;
}
.sc-trigger-track {
  flex: 1;
  height: 6px;
  background: #f0ece8;
  border-radius: 999px;
  overflow: hidden;
}
.sc-trigger-fill {
  height: 100%;
  background: #d4885a;
  border-radius: 999px;
}
.sc-trigger-pct {
  font-size: 0.65rem;
  font-weight: 700;
  color: #d4885a;
  width: 24px;
  text-align: right;
}

/* Adherence dot grid (vitamins) */
.sc-adherence-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sc-adh-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-adh-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--navy);
  width: 64px;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sc-adh-dots {
  display: flex;
  gap: 3px;
  flex: 1;
}
.sc-adh-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sc-adh-dot.taken   { background: #5aac73; }
.sc-adh-dot.skipped { background: #e8edf2; }

/* Cycle ring (period showcase) */
.sc-cycle-ring-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-cycle-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#e8637a 0deg 223deg, #fce7ec 223deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-cycle-ring-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sc-ring-day  { font-size: 15px; font-weight: 800; color: #e8637a; line-height: 1; }
.sc-ring-sub  { font-size: 6px; color: #94a3b8; font-weight: 500; margin-top: 1px; }
.sc-cycle-stats { flex: 1; display: flex; flex-direction: column; gap: 4px; }

/* Scroll hint on mobile */
.showcase-scroll-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 8px;
  opacity: 0.7;
}
@media (min-width: 900px) {
  .showcase-scroll-hint { display: none; }
}

/* ── FEATURES SECTION ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--bg-soft);
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    gap: 0;
  }
  .steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 40px);
    right: calc(16.66% + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--rose-light), var(--rose-light));
    z-index: 0;
  }
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--rose);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── SOCIAL PROOF ───────────────────────────────────────────────────────────── */
.personas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .personas-grid { grid-template-columns: repeat(3, 1fr); }
}

.persona-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.persona-card:hover { box-shadow: var(--shadow-md); }
.persona-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose);
  background: var(--rose-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.persona-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.persona-name {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

/* ── PRICING PREVIEW ────────────────────────────────────────────────────────── */
.pricing-preview {
  background: var(--navy);
  color: #fff;
}
.pricing-preview .heading-lg { color: #fff; }
.pricing-preview .subheadline { color: rgba(255,255,255,0.65); }

.pricing-preview-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .pricing-preview-cards { grid-template-columns: repeat(2, 1fr); }
}

.pricing-preview-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-preview-card.highlighted {
  background: rgba(232, 99, 122, 0.12);
  border-color: rgba(232, 99, 122, 0.4);
}
.ppc-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.ppc-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.ppc-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
}
.ppc-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.ppc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ppc-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ppc-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.ppc-features li.na { color: rgba(255,255,255,0.3); }
.ppc-features li.na::before { content: '✗'; color: rgba(255,255,255,0.2); }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-bottom .not-medical {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── PRICING PAGE ───────────────────────────────────────────────────────────── */
.pricing-hero {
  background: linear-gradient(160deg, #fff 0%, #f9f0f2 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.toggle-group {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  margin: 32px auto 0;
}
.toggle-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}
.toggle-btn.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
@media (min-width: 640px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn-outline,
.pricing-card .btn-primary {
  margin-top: auto;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.pro {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose-light), var(--shadow-md);
  position: relative;
}
.pro-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 999px;
}

.pc-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.pc-price {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-price sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
  vertical-align: baseline;
}
.pc-price-alt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  min-height: 20px;
}
.pc-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pc-features li {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pc-features li .check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-features li .cross { color: #cbd5e1; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-features li.na { color: var(--text-secondary); }

.stripe-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-top: 40px;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0faf3;
  border: 1.5px solid #5aac73;
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.guarantee-box a { color: var(--rose); }
.guarantee-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5aac73;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Pricing FAQ */
.pricing-faq {
  background: var(--bg-soft);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(160deg, #fff 0%, #f9f0f2 100%);
  padding: 80px 0 60px;
}
.about-story {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
}
.about-story strong { color: var(--text); }

.callouts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .callouts-grid { grid-template-columns: repeat(3, 1fr); }
}
.callout-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.callout-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.callout-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-dot {
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.value-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.value-item p strong { color: var(--text); }

/* ── FAQ PAGE ───────────────────────────────────────────────────────────────── */
.faq-hero {
  background: linear-gradient(160deg, #fff 0%, #f9f0f2 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.faq-section {
  margin-bottom: 48px;
}
.faq-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
  transition: color 0.15s;
}
.accordion-btn:hover { color: var(--rose); }
.accordion-chevron {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: transform 0.2s;
}
.accordion-btn.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding-bottom: 18px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.accordion-body.open { display: block; }
.accordion-body a {
  color: var(--rose);
  text-decoration: underline;
}

/* ── PRIVACY & TERMS ────────────────────────────────────────────────────────── */
.legal-hero {
  background: var(--bg-soft);
  padding: 60px 0 40px;
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.legal-body {
  max-width: 740px;
  padding: 60px 0;
}
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul {
  margin: 0 0 14px 20px;
}
.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--rose);
}
.legal-body strong { color: var(--text); }
.disclaimer-box {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: #78350f;
  line-height: 1.6;
}
.disclaimer-box strong { color: #7c2d12; }

/* ── SECTION HEADERS ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .label-small { margin-bottom: 12px; display: block; }
.section-header .heading-lg { margin-bottom: 16px; }
.section-header .subheadline { margin: 0 auto; }

/* ── UTILITY ────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
