/* ============================================================
   LEBMAPPER — Landing Page Styles
   Colors: #006848 (primary green), #F14249 (accent red)
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #006848;
  --green-dark:   #004f37;
  --green-light:  #e6f4ef;
  --red:          #F14249;
  --red-light:    #fdeced;
  --text:         #0d1f1a;
  --text-muted:   #5a7269;
  --border:       #d8e9e3;
  --bg:           #ffffff;
  --bg-subtle:    #f5faf8;
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow-sm:    0 1px 4px rgba(0,104,72,.08);
  --shadow:       0 4px 20px rgba(0,104,72,.12);
  --shadow-lg:    0 12px 48px rgba(0,104,72,.18);
  --font:         'Inter', system-ui, sans-serif;
  --transition:   0.25s ease;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
p  { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
em { font-style: normal; color: var(--green); }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header h2 { margin: 12px 0; }
.section-header p  { font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 14px;
}

.section-label--white {
  color: var(--green);
  background: rgba(255,255,255,0.9);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(0,104,72,.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,104,72,.35);
}


.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  background: var(--green-light);
  border-color: var(--green);
}

.btn-sm  { padding: 8px 20px; font-size: 0.88rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  padding: 5px 14px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── AOS (scroll reveal) ──────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo .logo-full  { height: 32px; }
.nav-logo .logo-mark  { height: 32px; display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--green); background: var(--green-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ───────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: opacity 0.4s ease, clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 28px 40px;
  overflow-y: auto;
}

/* Top bar inside overlay */
.mobile-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
}
.mobile-overlay-logo img { height: 28px; }

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition);
}
.mobile-close:hover { background: rgba(255,255,255,0.2); }
.mobile-close svg { width: 20px; height: 20px; }

/* Nav items */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.22s ease;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(-24px);
}
.mobile-overlay.open .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}
.mobile-overlay.open .mobile-nav-item[data-index="0"] { transition-delay: 0.18s; }
.mobile-overlay.open .mobile-nav-item[data-index="1"] { transition-delay: 0.24s; }
.mobile-overlay.open .mobile-nav-item[data-index="2"] { transition-delay: 0.30s; }
.mobile-nav-item,
.mobile-nav-item[data-index] { transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.mobile-nav-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  min-width: 24px;
}
.mobile-nav-label {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.02em;
}
.mobile-nav-item svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}
.mobile-nav-item:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Footer inside overlay */
.mobile-overlay-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s;
}
.mobile-overlay.open .mobile-overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: #fff;
  color: var(--green);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
}
.mobile-cta:hover { background: var(--green-light); transform: translateY(-2px); }
.mobile-cta svg { width: 20px; height: 20px; }

.mobile-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.mobile-linkedin:hover { background: rgba(255,255,255,0.12); color: #fff; }
.mobile-linkedin svg { width: 18px; height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f5faf8 0%, #ffffff 60%);
}

.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,104,72,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-text h1 { margin-bottom: 20px; }
.hero-text > p { font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Phone mockup ─────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-img {
  width: 280px;
  border-radius: 40px;
  display: block;
}

.phone-glow { display: none; }

/* ── Hero scroll hint ─────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeIn 2s 1s both;
}
.hero-scroll-hint span { font-size: 0.75rem; color: var(--text-muted); }
.scroll-arrow svg { width: 20px; color: var(--text-muted); animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.5; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg-subtle); }

.steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-4px); transition: all var(--transition); }

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}
.step-icon svg { width: 24px; height: 24px; }

.step h3 { margin-bottom: 10px; }

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--border);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green);
  transform: translateY(-3px);
}
.feature-card--large {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
}
.feature-card--accent {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.feature-card--accent p,
.feature-card--accent h3 { color: rgba(255,255,255,0.9); }
.feature-card--accent .feature-icon { background: rgba(255,255,255,0.15); color: #fff; }
.feature-card--accent .feature-tag { background: rgba(255,255,255,.2); color: #fff; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }

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

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 14px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-subtle); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-map-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.about-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-logo { height: 26px; }

.about-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 14px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.8s infinite;
}

.about-map-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  padding: 4px 12px 0;
}

.about-map-wrap > svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-map-bg {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.82;
}

/* City markers — absolutely positioned over the SVG */
.city-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: none;
}

.city-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
  flex-shrink: 0;
}

.city-dot--main {
  width: 12px;
  height: 12px;
  opacity: 1;
}

.city-pulse {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: pulse 1.8s infinite;
}

.city-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  font-family: var(--font);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.city-label--main {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  opacity: 1;
}

.about-map-footer {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  margin: 0 28px;
}
.about-map-stat {
  flex: 1;
  text-align: center;
}
.about-map-stat strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.about-map-stat span   { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.about-map-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

.about-text .section-label { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--text); }
.pillar span   { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   NOTIFY / COMING SOON
   ============================================================ */
.notify {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.notify::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.notify::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.notify-inner {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.notify-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.notify-stores {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
}
.store-pill svg { width: 14px; height: 14px; }

.notify-content h2 { color: #fff; margin: 12px 0 16px; }
.notify-content > p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }

.notify-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.notify-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 0 18px;
  transition: border-color var(--transition), background var(--transition);
}
.notify-input-wrap:focus-within {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}
.notify-input-wrap svg { width: 18px; height: 18px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.notify-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 16px 0;
}
.notify-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }

.btn-notify {
  background: #fff;
  color: var(--green);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-notify:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.notify-note {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.notify-note.show { display: flex; }
.notify-note svg { width: 18px; height: 18px; color: #fff; flex-shrink: 0; }

.notify-available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 8px;
}
.notify-available svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080f0d;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 64px 24px 40px;
}

.footer-brand { max-width: 320px; }
.footer-logo  { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col strong { color: #fff; font-size: 0.9rem; margin-bottom: 4px; }
.footer-col a  { font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤ 960px */
@media (max-width: 960px) {
  .section { padding: 72px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-text > p { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-mockup-img { width: 220px; }

  .steps {
    flex-direction: column;
    gap: 20px;
  }
  .step-connector { width: 2px; height: 40px; }
  .step-connector::after {
    right: -5px;
    top: auto;
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--border);
    border-bottom: none;
  }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: 1 / -1; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .notify-form { flex-direction: column; }
  .btn-notify { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { max-width: 100%; }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .nav-logo .logo-full { height: 26px; }

  .hero { min-height: 100svh; }
  .hero-inner { padding-top: 32px; padding-bottom: 32px; gap: 36px; }
  .hero-scroll-hint { display: none; }
  .hero-mockup-img { width: 200px; }

  .hero-stats { gap: 16px; }
  .stat strong { font-size: 1rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: 1; }

  .about-map-footer { margin: 0 20px; }

  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* Very small: ≤ 360px */
@media (max-width: 360px) {
  .btn-lg { padding: 13px 24px; font-size: 0.92rem; }
  .phone-frame { width: 180px; height: 360px; }
  .about-map-header { padding: 20px; }
}
