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

:root {
  --red: #c0392b;
  --red-light: #e74c3c;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #fafaf9;
  --white: #ffffff;
  --max: 760px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 1.5rem;
}
nav .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--red); }
nav a.cta-small {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.15s;
}
nav a.cta-small:hover { background: var(--red-light); }

/* ── SECTIONS ── */
section { padding: 5rem 1.5rem; }
section .inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── HERO ── */
#hero {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background: var(--white);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.15s, transform 0.1s;
}
.hero-cta:hover { background: var(--red-light); transform: translateY(-1px); }
.no-pay-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── PROBLEM ── */
#problem { background: var(--bg); }
#problem h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
#problem p { color: var(--muted); margin-bottom: 0.9rem; }
#problem p:last-child { margin-bottom: 0; }

/* ── HOW IT WORKS ── */
#how { background: var(--white); }
#how h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdecea;
  color: var(--red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ── PRICING ── */
#pricing { background: var(--bg); text-align: center; }
#pricing h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
#pricing .sub { color: var(--muted); margin-bottom: 2.5rem; font-size: 0.95rem; }
.price-card {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  max-width: 340px;
  width: 100%;
}
.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-when { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-list {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
}
.price-list li {
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.price-list li:first-child { border-top: none; }
.check { color: var(--red); font-weight: 700; flex-shrink: 0; }
.guarantee {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ── ABOUT ── */
#about { background: var(--white); }
#about h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
#about p { color: var(--muted); margin-bottom: 0.9rem; }
#about p:last-child { margin-bottom: 0; }
#about strong { color: var(--ink); }

/* ── SUBMIT ── */
#submit { background: var(--bg); }
#submit h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
#submit .sub { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

/* ── FAQ ── */
#faq { background: var(--white); }
#faq h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; letter-spacing: -0.02em; }
.faq-item { border-top: 1px solid var(--border); padding: 1.1rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { font-weight: 700; margin-bottom: 0.4rem; }
.faq-a { color: var(--muted); font-size: 0.93rem; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #9ca3af;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}
footer a { color: #9ca3af; }

