:root {
  --green: #0f9d58;
  --green-dark: #0b7a44;
  --dark: #0e1a13;
  --text: #1c2b22;
  --muted: #5a6b60;
  --bg-alt: #f3f8f5;
  --border: #e1ebe5;
  --radius: 14px;
  --max-width: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: #fff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 28px; text-align: center; }
h3 { font-size: 1.15rem; margin: 14px 0 8px; }

p { margin: 0 0 12px; }

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo { font-weight: 800; font-size: 1.2rem; }
.logo span { color: var(--green); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 157, 88, .3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-small { padding: 8px 16px; font-size: .9rem; background: var(--green); color: #fff; }
.btn-large { font-size: 1.1rem; padding: 16px 34px; }

.cta-center { text-align: center; margin-top: 36px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #eafbf1 0%, #ffffff 100%);
  padding: 56px 0 40px;
}
.hero-inner { text-align: center; }
.badge {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: .3px;
}
.badge-highlight {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  background: #fff3cd;
  border-color: #f4d477;
  color: #8a5a00;
  font-size: .95rem;
  padding: 8px 20px;
  animation: pulse-badge 2.2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 180, 0, .35); }
  50% { box-shadow: 0 0 0 8px rgba(244, 180, 0, 0); }
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-note { color: var(--muted); font-size: .95rem; margin-top: 16px; }

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.8rem; color: var(--green-dark); }
.stat span { color: var(--muted); font-size: .9rem; }
.stat-hero strong { color: #b8860b; }

/* Fee section */
.fee-section { text-align: center; }
.fee-intro {
  max-width: 640px;
  margin: 0 auto 30px;
  color: var(--muted);
}
.fee-bar-wrap { max-width: 560px; margin: 0 auto 12px; }
.fee-bar {
  height: 22px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.fee-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #f4b400 100%);
  border-radius: 999px 0 0 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
}
.fee-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.fee-bar-target { color: #b8860b; font-weight: 700; }

.fee-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 30px;
}
.fee-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 10px;
}
.fee-step strong { display: block; font-size: 1.4rem; margin-bottom: 4px; }
.fee-step span { font-size: .78rem; color: var(--muted); }
.fee-step-active { border-color: var(--green); }
.fee-step-active strong { color: var(--green-dark); }
.fee-step-goal { border-color: #f4b400; background: #fff9e8; }
.fee-step-goal strong { color: #b8860b; }

.fee-note {
  max-width: 640px;
  margin: 0 auto 20px;
  color: #8a5a00;
  font-weight: 600;
  font-size: .95rem;
}

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }

/* Direct answer block */
.direct-answer { background: #fffdf4; }
.answer-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  text-align: center;
}
.answer-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid #eadfae;
  border-radius: var(--radius);
  background: #fff;
}
.answer-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.answer-table caption {
  padding: 14px 18px;
  color: #8a5a00;
  font-size: .85rem;
  font-weight: 700;
  text-align: left;
}
.answer-table th,
.answer-table td {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}
.answer-table th {
  width: 50%;
  font-weight: 700;
}
.answer-table td { color: var(--green-dark); font-weight: 700; }

/* Author */
.author-section { background: #fff; }
.author-card {
  max-width: 760px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.author-card h2 { text-align: left; margin-bottom: 18px; }
.author-card p { color: var(--muted); }
.eyebrow {
  margin-bottom: 8px;
  color: var(--green-dark) !important;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.author-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.step-number {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin: 0 auto 8px;
}

/* Calc table */
.calc-table {
  max-width: 560px;
  margin: 0 auto 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.calc-row:last-child { border-bottom: none; }
.calc-highlight {
  background: var(--bg-alt);
  font-size: 1.1rem;
}
.calc-highlight strong { color: var(--green-dark); }

.fine-print {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

/* Checklist */
.checklist {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--green); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 10px; color: var(--muted); }

/* Final CTA */
.final-cta {
  text-align: center;
  background: var(--dark);
  color: #fff;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #cfe8da; margin-bottom: 24px; }

/* Footer */
.site-footer {
  padding: 32px 0 50px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .calc-row { font-size: .95rem; }
  .fee-steps { grid-template-columns: repeat(2, 1fr); }

  body { padding-bottom: 76px; }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, .08);
  }
  .sticky-cta .btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 10px;
    font-size: .95rem;
  }
}
