:root {
  --primary: #0EA968;
  --primary-dark: #076548;
  --primary-light: #E4F7EE;
  --accent: #F5A524;
  --accent-light: #FEF3DD;
  --blue: #3E7BFA;
  --purple: #7C5CFC;
  --background: #F5F7F6;
  --surface: #FFFFFF;
  --surface-alt: #F0F3F1;
  --border: #E7ECE9;
  --text: #101815;
  --text-muted: #66756E;
  --text-faint: #9AA7A0;
  --white: #FFFFFF;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 30px rgba(16, 24, 21, 0.08);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── Nav ─────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 247, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover { color: var(--primary-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0B7A50, #0EA968);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(14, 169, 104, 0.35);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(14, 169, 104, 0.4); }

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary-dark); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 16px;
}

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

.hero {
  background: linear-gradient(135deg, #14231D 0%, #0B7A50 100%);
  color: var(--white);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 85% 10%, rgba(245, 165, 36, 0.18), transparent 60%);
  pointer-events: none;
}

.hero .wrap { position: relative; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span { color: var(--accent); }

.hero p.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.hero .btn-outline:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.4); }

.store-badges {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}
.store-badge strong { display: block; color: var(--white); font-size: 14px; }

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

section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head .kicker {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); margin: 0 0 12px; letter-spacing: -0.015em; }
.section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.step h3 { margin: 0 0 8px; font-size: 17px; }
.step p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* Feature grid */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}

.feature h3 { margin: 0 0 6px; font-size: 15.5px; }
.feature p { margin: 0; color: var(--text-muted); font-size: 13.5px; }

.bg-green { background: var(--primary-light); }
.bg-amber { background: var(--accent-light); }
.bg-blue { background: #E8EFFE; }
.bg-purple { background: #EFEBFE; }

/* Templates strip */

.template-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scrollbar-width: thin;
}

.template-chip {
  flex: 0 0 auto;
  min-width: 150px;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.price-card.highlight {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.price-card .badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-card h3 { margin: 0 0 4px; font-size: 20px; }
.price-card .amount { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; margin: 14px 0 2px; }
.price-card .amount span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.price-card .stats { display: flex; gap: 10px; margin: 16px 0 20px; }
.price-card .stat-chip {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card ul { list-style: none; padding: 0; margin: 0; }
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 11px;
}
.price-card li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 12.5px;
  max-width: 480px;
  margin: 28px auto 0;
}

/* CTA band */

.cta-band {
  background: linear-gradient(135deg, #14231D 0%, #0B7A50 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
  max-width: var(--max-width);
  margin: 0 auto;
}
.cta-band h2 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 32px); }
.cta-band p { margin: 0 0 28px; color: rgba(255, 255, 255, 0.78); }

/* Footer */

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin: 0 0 14px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--primary-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

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

.legal-hero {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 40px;
}
.legal-hero h1 { margin: 0 0 8px; font-size: clamp(26px, 3.5vw, 34px); letter-spacing: -0.015em; }
.legal-hero p { margin: 0; color: var(--text-muted); font-size: 14px; }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-body h2 { font-size: 19px; margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.legal-body ul { padding-left: 22px; }
.legal-body a { color: var(--primary-dark); font-weight: 600; }
.legal-body strong { color: var(--text); }

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

@media (max-width: 860px) {
  .nav-links { display: none; }
  .steps, .features { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 64px 0; }
  .hero { padding: 72px 0 88px; }
}
