:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #1a1d23;
  --muted: #667085;
  --brand: #0a7c64;
  --brand-dark: #08624f;
  --border: #e4e7ec;
  --error: #b42318;
  --success: #027a48;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.site-nav { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.site-nav a { color: var(--muted); }
.site-nav a.primary {
  background: var(--brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius);
}
.site-nav a.primary:hover { background: var(--brand-dark); text-decoration: none; }

main { max-width: 1040px; margin: 0 auto; padding: 32px 20px 64px; }

.hero { padding: 48px 0 24px; }
.hero h1 { font-size: 40px; line-height: 1.15; margin: 0 0 12px; }
.hero p { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 0 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 440px;
  margin: 0 auto;
}

.card h1 { font-size: 22px; margin: 0 0 8px; }
.card .sub { color: var(--muted); margin: 0 0 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
}
.field input:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }

button[type="submit"] {
  width: 100%;
  padding: 11px 14px;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
button[type="submit"]:hover { background: var(--brand-dark); }

.form-message {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14px;
}
.form-message.error { background: #fee4e2; color: var(--error); }
.form-message.success { background: #dcfae6; color: var(--success); }

.muted { color: var(--muted); font-size: 14px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pricing-card .price { font-size: 28px; font-weight: 700; margin: 12px 0; }
.pricing-card ul { padding-left: 18px; color: var(--muted); }
.pricing-card .cta { margin-top: 16px; display: inline-block; }

/* =========================================================================
   Landing page (index.html)
   ========================================================================= */

.brand-soft { color: var(--brand); }

.hero { padding: 72px 0 56px; text-align: center; }
.hero h1 { font-size: clamp(30px, 5vw, 52px); line-height: 1.1; margin: 0 auto 16px; max-width: 860px; }
.hero .lede { font-size: 18px; color: var(--muted); margin: 0 auto 28px; max-width: 640px; }
.hero .lede strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
}
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn.ghost { border: 1px solid var(--border); color: var(--text); background: var(--surface); }
.btn.ghost:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

.section { padding: 56px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 8px; }
.section-intro { color: var(--muted); font-size: 17px; max-width: 760px; margin: 0 0 32px; }

/* 5-step flow */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.step img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 8px; }
.step h3 { margin: 0; font-size: 16px; }

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { color: var(--muted); margin: 0; }

/* Let's make a deal */
.make-deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.make-deal-col h3 { margin: 0 0 12px; }
.checklist { list-style: none; margin: 0; padding: 0; color: var(--muted); }
.checklist li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* Quote */
.quote { max-width: 720px; margin: 0 auto; text-align: center; }
.quote p { font-size: clamp(20px, 2.6vw, 26px); line-height: 1.4; margin: 0 0 12px; }
.quote cite { color: var(--muted); font-style: normal; }

/* Whisper CTA */
.whisper { text-align: center; }
.whisper h2 { margin-bottom: 20px; }

/* FAQs */
.narrow { max-width: 760px; }
.faqs details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 18px;
}
.faqs summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after { content: "+"; float: right; color: var(--brand); font-weight: 700; }
.faqs details[open] summary::after { content: "–"; }
.faqs details p { color: var(--muted); margin: 0 0 16px; }

/* Join CTA */
.join { text-align: center; }
.join .section-intro { margin-left: auto; margin-right: auto; }
.join .btn { margin-top: 12px; }

/* Footer */
.site-footer { background: #101418; color: #cbd2da; padding: 48px 0 24px; }
.site-footer a { color: #cbd2da; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-brand p { color: #8b95a1; margin: 8px 0 0; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { margin: 0 0 4px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.footer-legal { color: #8b95a1; font-size: 13px; border-top: 1px solid #232a31; padding-top: 16px; margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
}

