:root {
  --bg: #fafaf7;
  --ink: #161616;
  --muted: #5a5a5a;
  --line: #e2e0da;
  --accent: #0b7a4b;
  --accent-dark: #084d2f;
  --accent-light: #e8f5ee;
  --accent-ink: #fff;
  --danger: #b32424;
  --radius: 10px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif; }

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

.site-header { background: #111; color: #fff; padding: 14px 0; }
.site-header .wrap { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.site-header .brand { color: #fff; text-decoration: none; font-weight: 700; font-size: 20px; }
.site-header .tagline { color: #bbb; font-size: 13px; }

.site-footer { margin-top: 60px; background: #111; color: #ccc; padding: 18px 0; font-size: 13px; }
.site-footer a { color: #fff; }

.hero { padding: 44px 0 24px; }
.hero h1 { margin: 0 0 10px; font-size: 34px; letter-spacing: -0.01em; }
.hero .lede { font-size: 17px; color: var(--muted); margin: 0; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; margin-bottom: 28px; box-shadow: 0 1px 0 rgba(0,0,0,.03); }
.small-card { max-width: 480px; }

h2 { margin-top: 28px; font-size: 18px; text-transform: uppercase; letter-spacing: .05em; color: #333; }

form label { display: block; margin: 14px 0 8px; font-weight: 500; }
form input[type=text], form input[type=email], form input:not([type]),
form textarea, form select, form input[type=password] {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 15px; font-family: inherit; background: #fff; }
form textarea { resize: vertical; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form hr { border: none; border-top: 1px solid var(--line); margin: 28px 0; }

.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.radio-group .pill { display: block; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px; cursor: pointer; background: #fff; font-weight: 500; }
.radio-group .pill:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11,122,75,.15); }
.radio-group .pill input { margin-right: 6px; }
.radio-group .pill small { display: block; color: var(--muted); font-weight: 400; margin-top: 4px; font-size: 12px; }

.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 10px; }
.addon-card { display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px; cursor: pointer; background: #fff;
  font-weight: 500; font-size: 14px; }
.addon-card:has(input:checked) { border-color: var(--accent); background: #f1faf5; }
.addon-card small { margin-left: auto; color: var(--muted); }

.check { display: flex; align-items: center; gap: 10px; margin: 10px 0; font-weight: 500; }
.check input { width: auto; }

.live-total { margin: 20px 0 12px; padding: 12px 16px; background: #111; color: #fff;
  border-radius: 10px; display: flex; justify-content: space-between; align-items: center; }
.live-total .price { font-size: 24px; font-weight: 700; }
.live-total .label { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #ccc; }

button.primary { background: var(--accent); color: var(--accent-ink); border: none;
  padding: 12px 24px; border-radius: 8px; font-size: 16px; font-weight: 600;
  cursor: pointer; }
button.primary:hover { background: #0a6340; }
button.primary.big { font-size: 17px; padding: 14px 28px; margin-top: 14px; width: 100%; }

.tiny { font-size: 12px; color: var(--muted); margin-top: 14px; }
.small { font-size: 13px; color: var(--muted); }
.muted { color: var(--muted); }
.link { color: var(--accent); }
.err { color: var(--danger); margin: 0 0 12px; }
.right { text-align: right; }

.quote-table { width: 100%; border-collapse: collapse; }
.quote-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.quote-table tr.discount td { color: var(--accent); }
.quote-table tfoot tr.total td { font-size: 22px; font-weight: 700; padding-top: 18px; border: none; }
.next-steps { margin: 22px 0; padding: 14px; background: #f3f1eb; border-radius: 8px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 12px; margin-bottom: 24px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; text-align: center; }
.stat b { font-size: 28px; display: block; }
.stat span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }

.data-table { width: 100%; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; border-collapse: separate; border-spacing: 0; margin-bottom: 28px; }
.data-table th, .data-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.data-table th { background: #f3f1eb; font-weight: 600; }
.data-table tr:last-child td { border-bottom: none; }

/* Landing page */
.hero-ctas { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 22px; border-radius: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #0a6340; }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: #111; color: #fff; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin: 20px 0 40px; }
.services-grid.single { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
.service-card { background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; }
.service-card h2 { margin-top: 0; font-size: 22px; text-transform: none;
  letter-spacing: 0; color: var(--ink); }
.service-card ul { padding-left: 20px; margin: 10px 0; }
.service-card li { margin: 4px 0; }
.link-arrow { color: var(--accent); font-weight: 600; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

.trust-band { text-align: center; color: var(--muted);
  padding: 24px; background: #f3f1eb; border-radius: var(--radius);
  margin-bottom: 40px; }

@media (max-width: 640px) {
  .radio-group { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ==============================
   Landing page v2 — rich design
   ============================== */

/* Hero */
.hero-v2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0 50px;
}
.hero-v2 .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-v2 h1 {
  font-size: 46px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 18px; font-weight: 800;
}
.hero-v2 .accent-text { color: var(--accent); }
.hero-v2 .lede { font-size: 17px; color: var(--muted); margin: 0 0 30px; max-width: 540px; }
.hero-ctas-v2 { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.btn-big { padding: 16px 32px; font-size: 17px; }
.tiny-trust { font-size: 13px; color: var(--muted); }

/* Mock browser window */
.mock-browser {
  background: #fff; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  overflow: hidden; border: 1px solid var(--line);
  transform: rotate(-1deg);
}
.mock-bar {
  background: #ededea; padding: 10px 14px; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--line);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }
.mock-url {
  margin-left: 12px; font-size: 12px; color: #888;
  background: #fff; padding: 3px 12px; border-radius: 12px;
  flex: 1; text-align: center; max-width: 200px;
}
.mock-content { padding: 28px 24px; }
.mock-hero { margin-bottom: 20px; }
.mock-h { height: 18px; background: #222; border-radius: 4px; width: 70%; margin-bottom: 10px; }
.mock-p { height: 8px; background: #ddd; border-radius: 4px; margin-bottom: 6px; }
.mock-p.short { width: 60%; }
.mock-btn { height: 22px; width: 100px; background: var(--accent); border-radius: 5px; margin-top: 12px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 18px; }
.mock-card { height: 60px; background: #f3f1eb; border-radius: 6px; }

/* Stats band */
.stats-band {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; padding: 36px 28px;
  background: #111; color: #fff; border-radius: 14px; margin: 20px 0 60px;
}
.stat-item { text-align: center; }
.stat-num { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 4px; letter-spacing: -0.01em; }
.stat-label { font-size: 13px; color: #aaa; text-transform: uppercase; letter-spacing: .06em; }

/* Generic section title */
.section-title {
  font-size: 32px; font-weight: 800; text-align: center;
  margin: 0 0 12px; color: var(--ink); text-transform: none; letter-spacing: -0.01em;
}
.section-sub {
  text-align: center; color: var(--muted); font-size: 16px;
  max-width: 620px; margin: 0 auto 36px;
}

/* Why section */
.why-section { padding: 40px 0 60px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 32px; }
.why-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 28px; text-align: center;
}
.why-icon { font-size: 34px; margin-bottom: 14px; }
.why-card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.why-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Pricing section */
.pricing-section { padding: 40px 0 60px; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
  margin: 20px 0; align-items: stretch;
}
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.price-card.popular {
  border: 2px solid var(--accent); position: relative;
  box-shadow: 0 8px 24px rgba(11,122,75,.12);
}
.popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 12px; letter-spacing: .04em; text-transform: uppercase;
}
.price-tier {
  font-size: 14px; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.price-amount { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 20px; min-height: 38px; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.price-features li {
  padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--line);
}
.price-features li:before { content: "✓  "; color: var(--accent); font-weight: 700; }
.price-features li:last-child { border-bottom: none; }
.price-cta {
  display: block; text-align: center;
  background: var(--ink); color: #fff; text-decoration: none;
  padding: 12px; border-radius: 8px; font-weight: 600; font-size: 15px;
}
.price-cta:hover { background: #000; }
.price-card.popular .price-cta { background: var(--accent); }
.price-card.popular .price-cta:hover { background: var(--accent-dark); }
.pricing-note {
  text-align: center; color: var(--muted); font-size: 14px;
  margin-top: 18px; max-width: 680px; margin-left: auto; margin-right: auto;
}

/* How it works */
.how-section { padding: 40px 0 60px; background: var(--accent-light); border-radius: 16px; padding: 60px 40px; margin-bottom: 60px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 32px; }
.how-step { text-align: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  margin: 0 auto 14px;
}
.how-step h3 { font-size: 17px; margin: 0 0 8px; font-weight: 700; }
.how-step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Included section */
.included-section { padding: 40px 0 60px; }
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 32px; max-width: 720px; margin: 28px auto 0;
}
.inc-item { font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); }

/* FAQ */
.faq-section { padding: 40px 0 60px; max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 22px; margin-bottom: 12px; background: #fff;
}
.faq-item summary {
  font-weight: 600; font-size: 16px; cursor: pointer; list-style: none;
  position: relative; padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 22px; color: var(--accent); font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin: 14px 0 0; line-height: 1.6; font-size: 15px; }

/* Bottom CTA */
.bottom-cta {
  text-align: center; background: var(--ink); color: #fff;
  padding: 60px 40px; border-radius: 16px; margin-bottom: 40px;
}
.bottom-cta h2 { font-size: 32px; margin: 0 0 12px; color: #fff; font-weight: 800; }
.bottom-cta p { color: #bbb; font-size: 16px; margin: 0 0 26px; }
.bottom-cta .btn-primary { background: #fff; color: var(--ink); }
.bottom-cta .btn-primary:hover { background: var(--accent); color: #fff; }

/* Responsive */
@media (max-width: 840px) {
  .hero-v2 { grid-template-columns: 1fr; padding: 30px 0 20px; gap: 30px; }
  .hero-v2 h1 { font-size: 34px; }
  .hero-right { display: none; }
  .stats-band { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
  .why-grid, .pricing-grid, .how-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .bottom-cta { padding: 40px 24px; }
  .bottom-cta h2 { font-size: 24px; }
  .how-section { padding: 40px 24px; }
}
