:root {
  color-scheme: light;
  --ink: #172018;
  --muted: #5b665e;
  --line: #dce6de;
  --surface: #f7faf7;
  --panel: #ffffff;
  --brand: #167a3f;
  --brand-strong: #0b5d2c;
  --gold: #d79b20;
  --accent: #dff3e6;
  --shadow: 0 18px 40px rgba(17, 42, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(23, 32, 24, 0.08);
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  box-shadow: 0 8px 18px rgba(22, 122, 63, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.button.secondary {
  background: #fff;
  color: var(--brand-strong);
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 68px 0 58px;
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 155, 32, 0.24), transparent 30%),
    linear-gradient(135deg, #f7faf7 0%, #e9f6ed 48%, #fff7df 100%);
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(22, 122, 63, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 13px;
}

.phone-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(330px, 78vw);
  aspect-ratio: 9 / 18.5;
  padding: 16px;
  border: 10px solid #182219;
  border-radius: 34px;
  background: #f8fff9;
  box-shadow: var(--shadow);
}

.phone-screen {
  height: 100%;
  border-radius: 23px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #0f4d28, #168344 52%, #f8fff9 52%);
}

.app-top {
  padding: 24px;
  color: #fff;
}

.app-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
}

.app-title {
  margin-top: 28px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.app-subtitle {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.app-panel {
  margin: 20px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(17, 42, 24, 0.12);
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.metric:last-child {
  border-bottom: 0;
}

.metric strong {
  color: var(--ink);
}

.section {
  padding: 74px 0;
}

.section.white {
  background: #fff;
}

.section.gold {
  background: #fff8e6;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--brand-strong);
  font-weight: 900;
}

.comparison {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: #eef8f1;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.cta-band {
  padding: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0c5b2e, #168344);
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 36px 0;
  background: #101812;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

@media (max-width: 860px) {
  .nav {
    height: auto;
    min-height: 64px;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .phone-art {
    min-height: 430px;
  }

  .cta-band {
    padding: 30px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }
}
