*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1e6b4a;
  --green-light: #27946a;
  --green-muted: #d1ede3;
  --amber:       #e07b2a;
  --amber-light: #f9dfc6;
  --blue:        #1a6e9f;
  --blue-light:  #d0eaf9;
  --dark:        #151c22;
  --mid:         #3d4f5c;
  --soft:        #6b7e8c;
  --line:        #e4eaee;
  --bg:          #f8fafb;
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 4px 32px rgba(0,0,0,.09);
  --shadow-sm:   0 2px 12px rgba(0,0,0,.07);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ─────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green-muted);
  color: var(--green);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--dark);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--soft);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 24px rgba(30,107,74,.32);
}
.btn-primary:hover { background: var(--green-light); box-shadow: 0 8px 28px rgba(30,107,74,.4); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green-muted); }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  text-decoration: none;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { font-size: .88rem !important; padding: 10px 22px !important; }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding-top: 110px;
  padding-bottom: 0;
  background: linear-gradient(160deg, #f0f8f4 0%, #e8f4fb 60%, #fef6ee 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(30,107,74,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-text { padding-bottom: 64px; padding-top: 24px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-muted);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--dark);
}
.hero-title span { color: var(--green); }
.hero-desc {
  font-size: 1.12rem;
  color: var(--soft);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.stat-item { }
.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .8rem;
  color: var(--soft);
  font-weight: 500;
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
/* Simulated phone mockup */
.phone-wrap {
  position: relative;
  width: 260px;
}
.phone {
  width: 260px;
  height: 520px;
  background: var(--dark);
  border-radius: 38px;
  border: 7px solid #2a3540;
  box-shadow: 0 32px 80px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a3d28 0%, #1b5e3e 40%, #1a6e9f 100%);
  display: flex;
  flex-direction: column;
  padding: 28px 18px 20px;
  overflow: hidden;
}
.phone-notch {
  width: 90px; height: 24px;
  background: var(--dark);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}
.phone-map-trail {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.trail-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #2a5f3e 0%, #1e8a5c 30%, #16a07a 60%, #1a6e9f 100%);
}
/* Trail line */
.trail-line {
  position: absolute;
  left: 20%; top: 25%;
  width: 62%; height: 3px;
  background: rgba(255,255,255,.7);
  border-radius: 999px;
  transform: rotate(18deg);
}
.trail-line::before {
  content: '';
  position: absolute;
  left: 50%; top: -1px;
  width: 40%; height: 3px;
  background: rgba(255,255,255,.4);
  transform: rotate(-30deg) translateX(-40%);
  border-radius: 999px;
}
/* Stamp zones */
.map-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.map-dot.green  { background: #27ae60; top: 26%; left: 22%; }
.map-dot.amber  { background: #e07b2a; top: 34%; left: 44%; }
.map-dot.blue   { background: #2980b9; top: 30%; left: 65%; }
/* User dot */
.map-user {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--amber);
  bottom: 35%; left: 52%;
  box-shadow: 0 0 0 5px rgba(224,123,42,.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(224,123,42,.3); }
  50%       { box-shadow: 0 0 0 10px rgba(224,123,42,.08); }
}
/* Bottom card */
.phone-card {
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 10px;
}
.phone-card-label {
  font-size: .6rem;
  font-weight: 700;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.phone-card-zone {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2px;
}
.phone-card-detail {
  font-size: .65rem;
  color: var(--soft);
  margin-top: 1px;
}
.phone-progress-bar {
  height: 5px;
  background: var(--line);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.phone-progress-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 999px;
}
/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 9px 14px;
  box-shadow: var(--shadow);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.float-badge.stamp {
  top: 20%;
  right: -44px;
  color: var(--green);
  animation-delay: 0s;
}
.float-badge.perk {
  bottom: 35%;
  right: -52px;
  color: var(--amber);
  animation-delay: 1.4s;
}
.float-badge.km {
  top: 55%;
  left: -54px;
  color: var(--blue);
  animation-delay: 2.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding-bottom: 48px; }
}

/* ── TRAILS BAND ─────────────────────────────────────── */
.trails-band {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
}
.trails-band-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: slide 28s linear infinite;
}
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trail-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
}
.trail-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────── */
.how { padding: 100px 0; background: var(--white); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-sub { margin: 12px auto 0; text-align: center; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 38px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  z-index: 0;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  transition: transform .22s, box-shadow .22s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: .87rem;
  color: var(--soft);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ── FEATURES ────────────────────────────────────────── */
.features { padding: 100px 0; background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform .22s, box-shadow .22s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat.highlight {
  grid-column: span 2;
  background: var(--green);
  color: #fff;
  border-color: transparent;
}
.feat.highlight .feat-icon-wrap { background: rgba(255,255,255,.15); }
.feat.highlight h3 { color: #fff; }
.feat.highlight p { color: rgba(255,255,255,.8); }
.feat-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feat h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat p {
  font-size: .88rem;
  color: var(--soft);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feat.highlight { grid-column: span 1; }
}

/* ── TRAILS SECTION ──────────────────────────────────── */
.trails { padding: 100px 0; background: var(--white); }
.trails-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trail-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.trail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.trail-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.trail-status {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.trail-status.open   { background: var(--green-light); }
.trail-status.free   { background: var(--amber); }
.trail-info {}
.trail-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}
.trail-meta {
  font-size: .8rem;
  color: var(--soft);
  margin-top: 2px;
}
.trail-badge {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.trail-badge.free     { background: var(--amber-light); color: var(--amber); }
.trail-badge.premium  { background: var(--blue-light); color: var(--blue); }
/* Map illustration */
.map-illustration {
  background: linear-gradient(135deg, #1e3a2d 0%, #1a5c3a 50%, #165880 100%);
  border-radius: 24px;
  height: 460px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-label {
  position: absolute;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.map-label.v  { top: 24px; left: 22px; }
.map-label.lc { top: 38%; left: 20%; }
.map-label.k  { bottom: 32px; right: 24px; }
/* Trail path */
.map-path {
  position: absolute;
  left: 14%; top: 20%;
  width: 72%; height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.5));
  border-radius: 999px;
  transform: rotate(12deg);
}
.map-path::after {
  content: '';
  position: absolute;
  left: 55%; top: -1px;
  width: 55%; height: 4px;
  background: rgba(255,255,255,.35);
  transform: rotate(-22deg) translateX(-10%);
  border-radius: 999px;
}
.map-zone {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
}
.map-zone.z1 { width: 60px; height: 60px; top: 16%; left: 12%; background: rgba(39,174,96,.22); }
.map-zone.z2 { width: 48px; height: 48px; top: 28%; left: 40%; background: rgba(224,123,42,.22); }
.map-zone.z3 { width: 54px; height: 54px; top: 22%; left: 65%; background: rgba(41,128,185,.22); }
.map-zone.z4 { width: 44px; height: 44px; bottom: 30%; left: 55%; background: rgba(142,68,173,.22); }
.map-dot-large {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.map-dot-large.a { background: #27ae60; top: 22%; left: 17%; }
.map-dot-large.b { background: #e07b2a; top: 32%; left: 44%; }
.map-dot-large.c { background: #2980b9; top: 27%; left: 68%; }
.map-dot-large.d { background: #8e44ad; bottom: 28%; left: 59%; }
.map-info-box {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 160px;
}
.map-info-box-title { font-size: .72rem; font-weight: 800; color: var(--dark); }
.map-info-box-sub   { font-size: .65rem; color: var(--soft); margin-top: 3px; }
.map-km-marker {
  position: absolute;
  color: rgba(255,255,255,.6);
  font-size: .58rem;
  font-weight: 700;
}
.map-km-marker.a { top: 42%; left: 16%; }
.map-km-marker.b { top: 42%; left: 44%; }
.map-km-marker.c { top: 36%; left: 68%; }
@media (max-width: 768px) {
  .trails-layout { grid-template-columns: 1fr; }
  .map-illustration { height: 300px; }
}

/* ── PERKS SECTION ───────────────────────────────────── */
.perks { padding: 100px 0; background: var(--bg); }
.perks-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.perk-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.perk-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.perk-cat-icon { font-size: 1.3rem; }
.perk-cat-text {}
.perk-cat-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
}
.perk-cat-detail {
  font-size: .72rem;
  color: var(--soft);
}
.perk-card-stack {
  position: relative;
  height: 380px;
}
.perk-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  width: 280px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.perk-card-1 { top: 0; left: 10%; z-index: 3; }
.perk-card-2 { top: 30px; left: 30%; z-index: 2; opacity: .85; transform: rotate(4deg); }
.perk-card-3 { top: 60px; left: 50%; z-index: 1; opacity: .65; transform: rotate(8deg); }
.perk-card-offer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.perk-card-business { font-size: 1rem; font-weight: 800; color: var(--dark); }
.perk-card-desc { font-size: .82rem; color: var(--soft); margin-top: 4px; }
.perk-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.perk-card-distance { font-size: .75rem; color: var(--soft); }
.perk-card-redeem {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-muted);
  padding: 5px 12px;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .perks-layout { grid-template-columns: 1fr; }
  .perk-categories { grid-template-columns: 1fr; }
  .perk-card-stack { height: 300px; }
  .perk-card { width: 220px; }
}

/* ── COMMUNITY ALERTS ────────────────────────────────── */
.alerts-section { padding: 100px 0; background: var(--white); }
.alerts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alert-types { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.alert-type {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.alert-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.alert-icon.hazard  { background: #fff3cd; }
.alert-icon.pet     { background: #ffe3cc; }
.alert-icon.person  { background: #e9ddfa; }
.alert-text h4 { font-size: .95rem; font-weight: 700; }
.alert-text p  { font-size: .83rem; color: var(--soft); margin-top: 3px; line-height: 1.55; }
.alerts-right {}
.alert-stat-card {
  background: linear-gradient(135deg, #1e3a2d, #1a5c3a);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
}
.alert-stat-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.alert-stat-title { font-size: 1.2rem; font-weight: 800; }
.alert-stat-desc  { font-size: .88rem; color: rgba(255,255,255,.75); margin-top: 8px; line-height: 1.65; }
.alert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.alert-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
@media (max-width: 768px) {
  .alerts-inner { grid-template-columns: 1fr; }
}

/* ── OFFLINE SECTION ─────────────────────────────────── */
.offline { padding: 80px 0; }
.offline-card {
  background: linear-gradient(135deg, var(--blue) 0%, #1a3f6e 100%);
  border-radius: 28px;
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  position: relative;
}
.offline-card::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.offline-card::after {
  content: '';
  position: absolute;
  right: 40px; bottom: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.offline-text { color: #fff; flex: 1; position: relative; z-index: 1; }
.offline-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.offline-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.offline-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.7;
}
.offline-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.offline-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
}
.offline-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}
.offline-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.signal-icon {
  font-size: 5rem;
  display: block;
  text-align: center;
}
.signal-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .offline-card { flex-direction: column; padding: 40px 28px; gap: 32px; }
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 12px auto 0; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .22s, box-shadow .22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,107,74,.12);
}
.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tier {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--soft);
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.03em;
  line-height: 1;
  margin: 12px 0 4px;
}
.price-amount sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; line-height: 0; }
.price-period { font-size: .82rem; color: var(--soft); }
.price-divider { height: 1px; background: var(--line); margin: 22px 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--mid);
}
.price-features li .check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.price-cta { margin-top: 28px; width: 100%; text-align: center; display: block; padding: 14px; }
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── CTA ─────────────────────────────────────────────── */
.cta { padding: 100px 0; background: var(--white); }
.cta-card {
  background: linear-gradient(135deg, var(--green) 0%, #1a5035 100%);
  border-radius: 28px;
  padding: 80px 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  left: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-card::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.15;
  max-width: 660px;
  margin: 0 auto;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin: 18px auto 0;
  max-width: 500px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.btn-white:hover { background: #f0f8f4; }
.btn-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.cta-note {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: 18px;
}
@media (max-width: 768px) {
  .cta-card { padding: 52px 28px; }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
}
.footer-brand-icon {
  width: 30px; height: 30px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.footer-copy { font-size: .8rem; }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

/* ── SCROLL ANIMATION ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
