:root {
  --bg: #f6f8f7;
  --card: #ffffff;
  --surface: #eef3f0;
  --surface-strong: #ddf3e0;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --primary: #2e7d32;
  --secondary: #66bb6a;
  --shadow: 0 2px 12px rgba(17, 24, 39, 0.06), 0 1px 3px rgba(17, 24, 39, 0.04);
  --shadow-md: 0 8px 32px rgba(17, 24, 39, 0.08);
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #f8faf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── SHELL ────────────────────────────────────────────── */

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 56px;
}

/* ─── TOPBAR ────────────────────────────────────────────── */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-bottom: 36px;
  padding: 12px 20px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-text {
  color: var(--text);
}

.topnav {
  display: flex;
  gap: 20px;
}

.topnav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.topnav a:hover {
  color: var(--primary);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.04em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.0;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lead {
  max-width: 52ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ─── HERO ──────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 40px;
  align-items: center;
  padding: 20px 0 60px;
}

.hero-text {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.store-badge {
  display: block;
  height: 48px;
  width: auto;
  transition: opacity 0.15s ease;
}

.store-badge:hover {
  opacity: 0.85;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-phone {
  max-height: 600px;
  width: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.13));
}

/* ─── INFO STRIP ────────────────────────────────────────── */

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 60px;
}

.info-strip article {
  padding: 24px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.info-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
}

.info-strip p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── SECTIONS ──────────────────────────────────────────── */

.section {
  padding: 56px 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 36px;
}

/* ─── FEATURE GRID ──────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 28px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ─── STEPS ─────────────────────────────────────────────── */

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

.step-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.step-visual {
  background: var(--surface);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 20px 0;
  min-height: 220px;
  overflow: hidden;
}

.step-visual img {
  max-height: 210px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.10));
}

.step-body {
  padding: 22px 26px 26px;
}

.step-index {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── CTA ───────────────────────────────────────────────── */

.cta-section {
  padding-top: 12px;
}

.cta-inner {
  padding: 52px 48px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(102, 187, 106, 0.35);
  text-align: center;
}

.cta-availability {
  max-height: 52px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
}

.cta-inner h2 {
  margin-bottom: 12px;
}

.cta-inner p {
  margin: 0 auto 32px;
  max-width: 48ch;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
}

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

/* ─── FOOTER ────────────────────────────────────────────── */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 52px;
  padding: 20px 2px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.87rem;
}

.footer a {
  color: var(--primary);
  font-weight: 700;
  transition: opacity 0.15s ease;
}

.footer a:hover {
  opacity: 0.75;
}

/* ─── PRIVACY PAGE ──────────────────────────────────────── */

.policy-hero {
  padding: 28px 0 14px;
}

.policy-card {
  max-width: 860px;
  padding: 34px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.policy-card h2 {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.policy-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.policy-card a {
  color: var(--primary);
  font-weight: 700;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 8px 0 48px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .hero-phone {
    max-height: 420px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps .step-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .topbar {
    position: static;
    border-radius: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps .step-card:last-child {
    max-width: 100%;
    grid-column: auto;
    justify-self: auto;
  }

  .cta-inner {
    padding: 36px 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-badge {
    height: 44px;
  }

  .cta-availability {
    max-height: 40px;
  }
}
