:root {
  --bg: #F5EEE6;
  --surface: #FAF8F5;
  --green: #1B4D2E;
  --green-mid: #2D6A45;
  --green-light: #E4EDE7;
  --amber: #E8A838;
  --amber-light: #FDF3DC;
  --text: #1A1A18;
  --text-muted: #6B6B60;
  --border: #D9D3C8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 60px 48px 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-pins {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pin-row { display: flex; flex-direction: column; gap: 8px; }
.pin {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.pin-icon {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.pin-icon.unverified { background: var(--border); }
.pin-label { color: var(--text); font-weight: 500; }
.pin-status { font-size: 11px; color: var(--text-muted); }
.pin-status.verified { color: var(--green-mid); }
.pin-status.unverified { color: #B0A898; }

/* MAP FRAME */
.map-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.map-header {
  background: #2A2A2A;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-dot { width: 10px; height: 10px; border-radius: 50%; background: #555; }
.map-dot:first-child { background: #FF5F57; }
.map-dot:nth-child(2) { background: #FFBD2E; }
.map-dot:nth-child(3) { background: #28CA41; }
.map-title { color: #ddd; font-size: 12px; margin-left: 8px; font-weight: 500; }
.map-body {
  position: relative;
  height: 320px;
  background: #E8E4DC;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#D4CFC6 1px, transparent 1px),
    linear-gradient(90deg, #D4CFC6 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.p1 { background: var(--green); top: 60px; left: 80px; }
.p2 { background: var(--green); top: 140px; left: 200px; }
.p3 { background: var(--amber); top: 100px; left: 280px; }
.p4 { background: var(--border); top: 200px; left: 120px; }
.map-label {
  position: absolute;
  background: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.l1 { top: 68px; left: 100px; color: var(--green); }
.l2 { top: 148px; left: 218px; color: var(--green); }
.l3 { top: 108px; left: 300px; color: var(--amber); }

/* SECTIONS */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 40px;
}

/* HOW */
.how {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { position: relative; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--green-light);
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* FEATURES */
.features {
  background: var(--green);
  padding: 80px 48px;
}
.features .section-title { color: white; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px;
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #C8E6D0;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* VERIFICATION */
.verification {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.verification-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.verification-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--amber-light);
  border-radius: 12px;
  padding: 20px 24px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--green);
  white-space: nowrap;
}
.stat-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.vc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.vc-icon {
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
}
.vc-name { font-weight: 600; font-size: 15px; }
.vc-type { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.vc-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.vc-badge {
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.vc-time { font-size: 12px; color: var(--text-muted); }
.vc-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.vc-stars { display: flex; gap: 3px; }
.star { width: 14px; height: 14px; border-radius: 2px; }
.star.filled { background: var(--amber); }
.star.empty { background: var(--border); }
.vc-rating-text { font-size: 13px; color: var(--text-muted); }
.vc-photos { display: flex; gap: 8px; }
.vc-photo {
  width: 60px; height: 60px;
  background: #E8E4DC;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.verification-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* CLOSING */
.closing {
  background: var(--text);
  padding: 80px 48px;
  text-align: center;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
footer {
  background: var(--green);
  padding: 32px 48px;
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  display: block;
  margin-bottom: 8px;
}
footer p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 40px; }
  .map-body { height: 240px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .verification { grid-template-columns: 1fr; gap: 40px; }
  .how, .features, .verification, .closing { padding: 60px 24px; }
  .nav { padding: 16px 24px; }
  .closing { padding: 60px 24px; }
  footer { padding: 24px; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .map-label.l3 { display: none; }
  .hero-headline { font-size: 34px; }
}