:root {
  --green: #0e9f6e;
  --green-dark: #057a55;
  --green-light: #e6f6ef;
  --red: #e11d48;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  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;
  color: var(--ink);
}
.brand .logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 50% -10%, #d3f4e6 0%, transparent 60%), var(--bg);
  padding: 72px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero .accent { color: var(--green); }
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 32px;
}
.badge-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}
.store-badge:hover { background: #1f2937; color: #fff; transform: translateY(-2px); }
.store-badge .store-icon { font-size: 24px; }
.store-badge .small { display: block; font-size: 11px; opacity: 0.75; font-weight: 500; }

/* Phone mock */
.phone-wrap { margin-top: 48px; }
.phone {
  width: 220px;
  height: 460px;
  margin: 0 auto;
  border-radius: 32px;
  background: var(--ink);
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone .screen .mini-map {
  flex: 1;
  background: linear-gradient(135deg, #d7efe4 0%, #c9e8da 100%);
  position: relative;
}
.mini-map .dot {
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
}
.mini-map .dot.g { background: var(--green); box-shadow: 0 0 0 3px rgba(14,159,110,0.25); }
.mini-map .dot.y { background: #eab308; box-shadow: 0 0 0 3px rgba(234,179,8,0.25); }
.phone .screen .sheet { padding: 12px 14px; border-top: 1px solid var(--border); }
.phone .screen .sheet .row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.phone .screen .sheet .badge-pill {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.phone .screen .sheet .line { height: 8px; background: var(--border); border-radius: 4px; }
.phone .screen .sheet .line.w60 { width: 60%; }
.phone .screen .sheet .line.w40 { width: 40%; margin-top: 6px; }

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--surface); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 32px; margin: 0 0 12px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin: 0; }

.grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  background: var(--green-light); color: var(--green);
}
.card.urgent .icon { background: #fde8ee; color: var(--red); }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Steps */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step .num {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cta h2 { font-size: 32px; margin: 0 0 12px; }
.cta p { opacity: 0.9; max-width: 560px; margin: 0 auto 32px; }
.cta .store-badge { background: #fff; color: var(--ink); }
.cta .store-badge:hover { background: #f3f4f6; color: var(--ink); }

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-col h4 { margin: 0 0 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.footer-col a { display: block; margin-bottom: 8px; color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 34px; margin: 0 0 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 36px 0 10px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: #374151; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.lang-switch { display: flex; gap: 8px; margin-bottom: 8px; }
.lang-switch a {
  font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
}
.lang-switch a.active { background: var(--green); border-color: var(--green); color: #fff; }

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .nav-links { gap: 14px; }
}
