:root {
  --forest-dark: #1e4d1a;
  --header-dark: #1a2e17;
  --accent: #4caf50;
  --bg-light: #f4f7f2;
  --card-bg: #ffffff;
  --card-border: #e0e8de;
  --text-primary: #1a2e17;
  --text-secondary: #5a7a58;
  --white: #ffffff;
  --bright: #7ecb6e;
  --shadow: 0 1px 2px rgba(26, 46, 23, 0.06), 0 8px 24px rgba(26, 46, 23, 0.08);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 { color: var(--text-primary); font-weight: 800; letter-spacing: -0.01em; margin: 0; }

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
h3 { font-size: 1.1rem; }

main { display: block; }

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(135deg, var(--bright), var(--forest-dark));
  display: inline-block;
}
.brand-name { font-size: 1.15rem; }
.nav { display: flex; align-items: center; gap: 1.6rem; font-weight: 600; font-size: 0.95rem; }
.nav a { color: var(--text-primary); }
.nav-cta {
  background: var(--forest-dark);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}
.nav-cta:hover { text-decoration: none; background: var(--header-dark); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 2rem 5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 1rem 0 1.8rem;
}
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-primary,
.btn-secondary,
.store-btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); text-decoration: none; }
.btn-secondary {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-primary);
}
.btn-secondary:hover { border-color: var(--forest-dark); text-decoration: none; }
.hero-meta { color: var(--text-secondary); font-size: 0.85rem; margin-top: 1.6rem; }

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  max-width: 360px;
  justify-self: end;
}
.hero-card-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.hero-card-tag {
  background: rgba(76, 175, 80, 0.12);
  color: var(--forest-dark);
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-card-price { font-size: 1.6rem; font-weight: 800; }
.hero-card-line { font-size: 0.95rem; }
.hero-card-line.muted { color: var(--text-secondary); margin-top: 0.2rem; }
.hero-card-cta {
  margin-top: 1.2rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
}

/* Sections */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.steps li {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.6rem;
  position: relative;
}
.step-num {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  background: var(--forest-dark);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.steps h3 { margin-bottom: 0.4rem; }
.steps p { color: var(--text-secondary); margin: 0; }

/* Pricing */
.pricing {
  background: var(--header-dark);
  color: var(--white);
  padding: 4rem 2rem;
}
.pricing h2 { color: var(--white); text-align: center; }
.pricing-sub { text-align: center; color: rgba(255,255,255,0.7); margin: 0.4rem 0 2.2rem; }
.tiers {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
}
.tier-label { color: var(--bright); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; }
.tier-price { font-size: 2rem; font-weight: 800; margin: 0.4rem 0; }
.tier-detail { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* Providers section */
.providers-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.providers-text p { color: var(--text-secondary); font-size: 1.05rem; margin: 1rem 0; }
.bullets { list-style: none; padding: 0; margin: 1rem 0 1.8rem; }
.bullets li { padding-left: 1.4rem; position: relative; margin-bottom: 0.5rem; }
.bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.providers-photo {
  height: 380px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(30,77,26,0.15), rgba(126,203,110,0.25)),
    repeating-linear-gradient(45deg, var(--bright) 0 2px, var(--accent) 2px 6px);
  border: 1px solid var(--card-border);
}

/* Download */
.download { text-align: center; }
.download p { color: var(--text-secondary); margin: 0.4rem 0 1.6rem; }
.store-row { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }
.store-btn { background: var(--header-dark); color: var(--white); }
.store-btn:hover { background: var(--forest-dark); text-decoration: none; }
.download-note { font-size: 0.85rem; color: var(--text-secondary); margin-top: 1.6rem; }

/* Footer */
footer {
  background: var(--header-dark);
  color: rgba(255,255,255,0.6);
  padding: 1.6rem 2rem;
  font-size: 0.85rem;
}
.footer-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.4rem 3rem; }
  .hero-card { justify-self: stretch; max-width: none; }
  .nav { gap: 0.8rem; font-size: 0.85rem; }
  .topbar { padding: 1rem 1.4rem; }
  .section { padding: 3rem 1.4rem; }
  .steps { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .providers-section { grid-template-columns: 1fr; }
  .providers-photo { height: 220px; }
  .footer-row { flex-direction: column; gap: 0.4rem; align-items: center; }
}
