/* ── Reset & base ──────────────────────────────────── */

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

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #fafaf8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Layout ────────────────────────────────────────── */

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ────────────────────────────────────────── */

header {
  padding: 2rem 0 1rem;
  text-align: center;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Hero ──────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Sections ──────────────────────────────────────── */

section {
  padding: 2.5rem 0;
}

section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* ── Steps ─────────────────────────────────────────── */

.steps {
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fafaf8;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li strong {
  display: block;
  margin-bottom: 0.15rem;
}

.steps li span {
  color: #666;
  font-size: 0.95rem;
}

/* ── Values ────────────────────────────────────────── */

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.value-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 1.2rem;
}

.value-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.value-card span {
  color: #666;
  font-size: 0.9rem;
}

/* ── CTA ───────────────────────────────────────────── */

.cta {
  text-align: center;
  padding: 3rem 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 60px;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #1fb855;
}

.cta-button svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.cta-sub {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #999;
}

/* ── Footer ────────────────────────────────────────── */

footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa;
  border-top: 1px solid #e8e8e4;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer a:hover {
  color: #1a1a1a;
}

/* ── Legal pages ───────────────────────────────────── */

.legal {
  padding: 2rem 0 4rem;
}

.legal h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.legal .subtitle {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal p,
.legal li {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.legal ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.3rem;
}

/* ── Thank you page ────────────────────────────────── */

.thankyou {
  text-align: center;
  padding: 6rem 0 4rem;
}

.thankyou .check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.thankyou .check svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.thankyou p {
  color: #555;
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  font-weight: 600;
  font-size: 1rem;
}

.thankyou .back-link:hover {
  text-decoration: underline;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 500px) {
  html {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

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

.brand {display: none;}