:root {
  --green: #20b955;
  --green-dark: #0b7a37;
  --lime: #b8ef55;
  --ink: #102018;
  --muted: #607168;
  --line: #dbe9df;
  --paper: #f7fbf7;
  --white: #ffffff;
  --yellow: #f6c84c;
  --blue: #4f8df7;
  --shadow: 0 18px 45px rgba(16, 32, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 247, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 233, 223, .85);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.2rem; }
.brand img { width: 50px; height: 50px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #31453a; font-weight: 650; font-size: .95rem; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--green);
  color: white;
  font-weight: 800;
  cursor: pointer;
}
.btn.secondary { background: white; color: var(--ink); border-color: var(--line); }
.btn.dark { background: var(--ink); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(32, 185, 85, .12);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 58px 0 42px;
  background:
    linear-gradient(120deg, rgba(32,185,85,.16), transparent 38%),
    linear-gradient(320deg, rgba(246,200,76,.16), transparent 38%);
}
.hero-grid, .split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: .96;
  margin-bottom: 22px;
  letter-spacing: 0;
}
h2 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.04; margin-bottom: 18px; letter-spacing: 0; }
h3 { line-height: 1.2; margin-bottom: 8px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.32rem); color: #40544a; max-width: 660px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; color: #40544a; font-weight: 700; font-size: .94rem; }
.trust-row span { padding: 8px 11px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.photo-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
  background: white;
}
.photo-card img { width: 100%; height: 520px; object-fit: cover; }
.product-board {
  position: relative;
  padding: 22px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.phone {
  width: min(330px, 100%);
  margin: auto;
  border: 12px solid #18241d;
  border-radius: 34px;
  background: #eef8ef;
  overflow: hidden;
  min-height: 590px;
  box-shadow: 0 16px 40px rgba(16, 32, 24, .24);
}
.phone-top { height: 48px; background: var(--green); }
.phone-body { padding: 18px; }
.metric {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}
.metric strong { display: block; font-size: 1.8rem; line-height: 1.1; }
.bars { display: grid; gap: 8px; margin-top: 14px; }
.bar { height: 10px; border-radius: 999px; background: #dcebe1; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--green); }
.route {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.dot-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-weight: 900;
}
.section { padding: 86px 0; }
.section.alt { background: white; }
.section.green { background: #123d24; color: white; }
.section.green .lead, .section.green p { color: #d8f2df; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.feature-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 210px;
}
.feature .dot-icon { margin-bottom: 16px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: #f7fbf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.stat { padding: 22px; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; background: rgba(255,255,255,.08); }
.stat strong { display: block; font-size: 2.15rem; color: var(--lime); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.quote strong { display: block; margin-top: 14px; }
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}
.page-hero { padding: 68px 0 42px; background: linear-gradient(135deg, rgba(32,185,85,.18), rgba(184,239,85,.12)); }
.page-hero .lead { max-width: 760px; }
.content-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 28px rgba(16,32,24,.06);
}
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; }
.legal-nav { position: sticky; top: 96px; padding: 18px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.legal-nav a { display: block; padding: 8px 0; color: #42554b; font-weight: 700; }
.legal-doc { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 34px; }
.legal-doc section { padding: 20px 0; border-bottom: 1px solid var(--line); }
.legal-doc section:last-child { border-bottom: 0; }
.notice { padding: 18px; border-radius: 8px; background: #ecf8ef; border: 1px solid #c9ead2; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; color: #31453a; font-weight: 750; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fbfefb;
}
textarea { min-height: 150px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: #40544a; }
.check input { width: 18px; margin-top: 5px; }
.form-message { display: none; padding: 12px 14px; border-radius: 8px; font-weight: 800; }
.form-message.show { display: block; background: #ecf8ef; border: 1px solid #c9ead2; color: var(--green-dark); }
.download-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: center; }
.store-buttons { display: grid; gap: 12px; max-width: 310px; }
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px;
  background: #111;
  color: white;
  border-radius: 8px;
  font-weight: 800;
}
.store span:first-child { width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; background: white; color: #111; }
.requirements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.site-footer { background: #0d1d14; color: #d8f2df; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; }
.mobile-only-note { display: none; }

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { align-items: flex-start; padding: 12px 0; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; gap: 10px 14px; font-size: .88rem; }
  .nav-cta { min-height: 38px; padding: 0 12px; }
  .hero-grid, .split, .contact-grid, .download-panel, .legal-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .photo-card img { height: 330px; }
  .feature-line, .steps, .stats, .testimonials, .values, .requirements { grid-template-columns: 1fr; }
  .cta-band, .footer-grid { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(2.35rem, 15vw, 3.6rem); }
}

@media (max-width: 560px) {
  .nav { display: block; }
  .brand { margin-bottom: 12px; }
  .nav-links { justify-content: flex-start; }
  .phone { min-height: 510px; border-width: 9px; }
  .content-card, .legal-doc { padding: 22px; }
}
