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

:root {
  --bg:        #0d0808;
  --surface:   #140c0c;
  --card:      #1d1212;
  --border:    rgba(255,210,195,0.08);
  --accent:    #c8363a;
  --accent2:   #a05028;
  --green:     #10b981;
  --red:       #ef4444;
  --text:      #f0e6d8;
  --muted:     #9a8a7a;
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ──────────────────────────────────────────── */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { color: var(--muted); }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section--tight { padding: 64px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 32px rgba(200,54,58,0.35);
}
.btn--primary:hover { background: #d44040; box-shadow: 0 0 48px rgba(200,54,58,0.5); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn svg { width: 20px; height: 20px; fill: currentColor; }

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(13,8,8,0.85);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 900; letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo-img {
  width: 34px; height: 34px; border-radius: 9px;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.nav-logo-text span {
  font-size: 0.52rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--muted); -webkit-text-fill-color: var(--muted);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-top: 160px; padding-bottom: 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,54,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(200,54,58,0.12); border: 1px solid rgba(200,54,58,0.3);
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { max-width: 780px; margin: 0 auto 24px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero > p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }

.hero-ctas { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 0.82rem; color: var(--muted); }

/* ── Mock Phone ──────────────────────────────────────────── */
.hero-visual {
  margin-top: 64px;
  display: flex; justify-content: center;
  position: relative;
}
.phone-frame {
  width: 280px;
  background: #1d1212;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.phone-notch {
  width: 120px; height: 34px;
  background: #0d0808; border-radius: 0 0 24px 24px;
  margin: 0 auto;
}
.phone-screen {
  padding: 0;
  min-height: 500px;
  background: #0d0808;
  overflow: hidden;
}
.video-placeholder {
  width: 100%; aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1d1212 0%, #150d0d 100%);
  border-radius: 28px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  border: 1.5px dashed rgba(200,54,58,0.3);
  cursor: pointer; transition: var(--transition);
  min-height: 440px;
}
.video-placeholder:hover { border-color: rgba(200,54,58,0.6); background: rgba(200,54,58,0.05); }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 32px rgba(200,54,58,0.5);
}
.play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }
.video-placeholder p { font-size: 0.8rem; color: var(--muted); }

.hero-glow {
  position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,54,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Logos / Trust bar ───────────────────────────────────── */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust p { text-align: center; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 24px; }
.trust-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.pill--blue .dot   { background: var(--accent); }
.pill--purple .dot { background: var(--accent2); }
.pill--green .dot  { background: var(--green); }

/* ── Pain / Solution ─────────────────────────────────────── */
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 48px;
}
.pain-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
}
.pain-card--bad  { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.04); }
.pain-card--good { border-color: rgba(16,185,129,0.2); background: rgba(16,185,129,0.04); }
.pain-icon { font-size: 1.6rem; margin-bottom: 12px; }
.pain-card h3 { font-size: 1rem; margin-bottom: 8px; }
.pain-card p  { font-size: 0.9rem; }

/* ── Features ────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 52px;
}
.feature-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(200,54,58,0.35); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 0.9rem; }

/* ── How it works ────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 52px; position: relative;
}
.step { text-align: center; padding: 32px 24px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(200,54,58,0.4);
}
.step h3 { margin-bottom: 10px; }
.step p  { font-size: 0.9rem; }

/* ── Phone Carousel ──────────────────────────────────────── */
.phone-carousel-wrap {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.phone-carousel-device {
  position: relative;
  display: flex;
  justify-content: center;
}

/* iPhone frame */
.pcd-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: #1a1a1c;
  border-radius: 52px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 60px 120px rgba(0,0,0,0.7),
    0 20px 40px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* Dynamic island */
.pcd-island {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Side buttons */
.pcd-btn {
  position: absolute;
  background: #2a2a2c;
  border-radius: 3px;
}
.pcd-btn--vol1  { left: -3px; top: 100px; width: 3px; height: 34px; }
.pcd-btn--vol2  { left: -3px; top: 144px; width: 3px; height: 34px; }
.pcd-btn--power { right: -3px; top: 120px; width: 3px; height: 56px; }

/* Screen + slider */
.pcd-screen {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  overflow: hidden;
  background: #000;
}

.pcd-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.pcd-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Glow under the phone */
.pcd-glow {
  position: absolute;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 340px; height: 200px;
  background: radial-gradient(ellipse, rgba(200,54,58,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Labels + dots */
.pcd-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pcd-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 1.2em;
  transition: opacity 0.3s;
}

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

.pcd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.pcd-dot--active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ── Comparison — score cards ────────────────────────────── */
.cmp-scores {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 14px;
  margin: 48px 0 32px;
}
.cmp-score {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.cmp-score--winner {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(200,54,58,0.12) 0%, var(--card) 100%);
  box-shadow: 0 0 28px rgba(200,54,58,0.15);
}
.cmp-score-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.cmp-app-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; object-fit: cover;
}
.cmp-app-icon--text {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: rgba(255,255,255,0.5);
}
.cmp-app-name { font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.cmp-app-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); margin-top: 3px; text-transform: uppercase;
}
.cmp-score-num {
  margin-left: auto; font-size: 1.5rem; font-weight: 900;
  color: var(--text); white-space: nowrap; line-height: 1;
}
.cmp-score-num span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.cmp-bar-wrap {
  height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden;
}
.cmp-bar {
  height: 100%; width: 0; border-radius: 100px;
  background: var(--accent);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.cmp-bar--muted { background: var(--muted); }

/* ── Comparison — table ──────────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem; min-width: 640px;
}
.comparison-table th {
  padding: 18px 20px; text-align: center;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.03em;
  color: var(--muted); background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.cmp-feat-col { text-align: left !important; width: 34%; }
.comparison-table td {
  padding: 15px 20px; text-align: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.comparison-table td:first-child { text-align: left; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.cmp-row { cursor: default; }
.cmp-row:hover td { background: rgba(255,255,255,0.025); }
.cmp-row:hover .col-apodix { background: rgba(200,54,58,0.12); }
.cmp-feat { color: var(--text); font-weight: 500; font-size: 0.88rem; }
.cmp-muted { color: var(--muted); font-size: 0.85rem; }

.col-apodix {
  background: rgba(200,54,58,0.07);
  border-left: 1.5px solid rgba(200,54,58,0.3);
  border-right: 1.5px solid rgba(200,54,58,0.3);
}
.col-apodix-header {
  background: rgba(200,54,58,0.16) !important;
  border-left: 1.5px solid rgba(200,54,58,0.5) !important;
  border-right: 1.5px solid rgba(200,54,58,0.5) !important;
  color: var(--accent) !important;
}
.cmp-winner-label {
  font-weight: 900; font-size: 0.95rem;
  color: var(--accent);
}

.cmp-yes {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  color: var(--green); font-weight: 700; font-size: 0.88rem;
}
.cmp-no {
  display: inline-block;
  color: var(--red); font-weight: 700; font-size: 1.1rem; opacity: 0.7;
}
.cmp-partial {
  display: inline-block;
  color: #f59e0b; font-size: 0.8rem; font-weight: 600;
  background: rgba(245,158,11,0.1); padding: 3px 9px; border-radius: 100px;
}
.cmp-price-win {
  display: inline-block;
  color: var(--green); font-weight: 800; font-size: 0.9rem;
}

/* ── Legacy aliases (kept for FAQ/other pages) ───────────── */
.check { color: var(--green); font-size: 1.1rem; }
.cross { color: var(--red); font-size: 1.1rem; }
.partial { color: #f59e0b; font-size: 0.85rem; }

/* ── Pricing ─────────────────────────────────────────────── */
.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px; align-items: start;
}
.plan-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  position: relative; transition: var(--transition);
}
.plan-card:hover { transform: translateY(-2px); }
.plan-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(200,54,58,0.1) 0%, var(--card) 100%);
  box-shadow: 0 0 40px rgba(200,54,58,0.15);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.875rem; color: var(--muted); margin-bottom: 10px;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-btn {
  display: block; text-align: center;
  padding: 12px; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem; transition: var(--transition);
}
.plan-btn--primary { background: var(--accent); color: white; }
.plan-btn--primary:hover { background: #d44040; }
.plan-btn--outline { border: 1.5px solid var(--border); color: var(--text); }
.plan-btn--outline:hover { border-color: rgba(255,255,255,0.2); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.testimonial {
  padding: 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.95rem; line-height: 1.6; color: var(--text); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.9rem; display: block; }
.testimonial-author span  { font-size: 0.8rem; color: var(--muted); }

/* ── FAQ preview ─────────────────────────────────────────── */
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; stroke: currentColor; fill: none; }
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.95rem; color: var(--muted); line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding-bottom: 22px; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(200,54,58,0.12) 0%, rgba(160,80,40,0.12) 100%);
  border-radius: 28px;
  border: 1px solid rgba(200,54,58,0.2);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,54,58,0.12) 0%, transparent 70%);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner > p { max-width: 500px; margin: 0 auto 36px; }
.cta-banner .hero-ctas { margin-bottom: 0; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 28px;
  font-size: 0.82rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--text); }

/* ── Page header (FAQ / Privacy) ─────────────────────────── */
.page-hero {
  padding: 140px 0 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Prose (privacy policy) ──────────────────────────────── */
.prose {
  max-width: 780px; margin: 0 auto;
  padding: 0 0 80px;
}
.prose h2 { font-size: 1.4rem; margin: 44px 0 14px; color: var(--text); }
.prose h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--text); }
.prose p  { font-size: 0.95rem; margin-bottom: 16px; line-height: 1.75; }
.prose ul { margin: 0 0 16px 20px; }
.prose ul li { font-size: 0.95rem; color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
.prose a  { color: var(--accent); }
.prose a:hover { text-decoration: underline; }

/* ── FAQ full page ───────────────────────────────────────── */
.faq-section { margin-bottom: 52px; }
.faq-section h2 { font-size: 1.3rem; color: var(--text); margin-bottom: 4px; }
.faq-section .section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .plans-grid       { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cmp-scores       { grid-template-columns: 1fr 1fr; }
}

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

@media (max-width: 700px) {
  .nav-links  { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 65px; left: 0; right: 0; background: var(--surface);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--border);
  }
  .hamburger  { display: block; }
  .pain-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps      { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn--lg   { text-align: center; justify-content: center; }
}

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-purple { color: var(--accent2); }
.text-green  { color: var(--green); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-2  { margin-bottom: 8px; }
.section-header { text-align: center; margin-bottom: 0; }
.section-header h2 { margin: 8px 0 16px; }
.section-header p  { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
