/* Mobile-first, no framework dependencies */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-primary:   #e8704a;
  --clr-primary-d: #c9563a;
  --clr-text:      #1a1a2e;
  --clr-muted:     #5a5a7a;
  --clr-bg:        #faf9f7;
  --clr-card:      #ffffff;
  --clr-border:    #ebe9e3;
  --radius:        12px;
  --shadow:        0 2px 12px rgba(0,0,0,.07);
  --max-w:         640px;
}

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

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

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-card);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); text-decoration: none; }
.nav-link {
  font-size: .85rem; color: var(--clr-muted); text-decoration: none;
  border: 1px solid var(--clr-border); border-radius: 6px; padding: 6px 12px;
}
.nav-link:hover { color: var(--clr-primary); border-color: var(--clr-primary); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 56px 0 40px;
  text-align: center;
  background: linear-gradient(160deg, #fff8f5 0%, var(--clr-bg) 100%);
}
.hero-emoji { font-size: 3rem; display: block; margin-bottom: 16px; }
.hero h1 {
  font-size: 1.8rem; font-weight: 800; line-height: 1.25;
  color: var(--clr-text); margin-bottom: 14px;
}
.hero h1 span { color: var(--clr-primary); }
.hero p { font-size: 1.05rem; color: var(--clr-muted); max-width: 480px; margin: 0 auto 28px; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 15px 28px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 600; text-decoration: none;
  text-align: center; cursor: pointer; transition: opacity .15s, transform .1s;
  min-width: 220px;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--clr-primary); color: #fff; }
.btn-primary:hover { background: var(--clr-primary-d); }
.btn-secondary {
  background: transparent; color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-secondary:hover { background: #fff4f0; }
.btn-group { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ── Trust badges ──────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--clr-card); border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border); padding: 20px 0;
}
.trust-list {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 10px 20px; justify-content: center; padding: 0;
}
.trust-list li { font-size: .9rem; color: var(--clr-muted); }
.trust-list li::before { content: "✅ "; }

/* ── How it works ──────────────────────────────────────────────────────────── */
.section { padding: 48px 0; }
.section-title {
  font-size: 1.35rem; font-weight: 700; text-align: center;
  margin-bottom: 32px; color: var(--clr-text);
}
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 20px; display: flex; gap: 16px;
  box-shadow: var(--shadow);
}
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; background: var(--clr-primary);
  color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 1rem;
}
.step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: .9rem; color: var(--clr-muted); }

/* ── CTA Section ───────────────────────────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 48px 0 56px;
  background: linear-gradient(160deg, #fff8f5 0%, var(--clr-bg) 100%);
}
.cta-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.cta-section p { color: var(--clr-muted); margin-bottom: 28px; }

/* ── Sitter earnings block ─────────────────────────────────────────────────── */
.earnings-card {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow); margin: 0 auto 32px; max-width: 400px;
}
.earnings-amount { font-size: 2rem; font-weight: 800; color: var(--clr-primary); }
.earnings-label { font-size: .9rem; color: var(--clr-muted); margin-top: 4px; }

/* ── Requirements list ─────────────────────────────────────────────────────── */
.req-list { list-style: none; padding: 0; max-width: 480px; margin: 0 auto 32px; }
.req-list li {
  padding: 8px 0; border-bottom: 1px solid var(--clr-border);
  font-size: .95rem; display: flex; gap: 10px;
}
.req-list li:last-child { border-bottom: none; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--clr-border); padding: 28px 0;
  text-align: center; font-size: .82rem; color: var(--clr-muted);
}
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.footer-links a { color: var(--clr-muted); text-decoration: none; }
.footer-links a:hover { color: var(--clr-primary); }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 560px; margin: 0 auto; }
.faq-item {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-size: .98rem; font-weight: 600;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--clr-primary); }
.faq-item[open] summary::after { content: "−"; }
.faq-body { padding: 0 20px 16px; font-size: .92rem; color: var(--clr-muted); line-height: 1.6; }
.faq-body p { margin: 0; }
.faq-body a { color: var(--clr-primary); }

/* ── Desktop tweaks ────────────────────────────────────────────────────────── */
@media (min-width: 560px) {
  .hero h1 { font-size: 2.2rem; }
  .btn-group { flex-direction: row; justify-content: center; }
  .steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
