:root {
  --navy: #07111f;
  --navy-2: #0d1b2e;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f6f7f9;
  --white: #ffffff;
  --lime: #c8f542;
  --lime-2: #b4e62a;
  --amber: #ff8a1f;
  --red: #e11d48;
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
  --radius: 18px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3f6212;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--lime-2);
}
h1, h2, h3, .display { font-family: var(--display); line-height: 1.15; }
h2 { font-size: clamp(28px, 4vw, 42px); }
.lead { color: var(--muted); font-size: 17px; max-width: 62ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}
.btn-lime { background: var(--lime); color: #10200a; }
.btn-lime:hover { background: var(--lime-2); transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: #15263d; }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }

/* Header */
.topbar {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--lime); }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.menu { display: flex; gap: 26px; font-weight: 600; font-size: 15px; }
.menu a { color: #334155; }
.menu a:hover, .menu a.active { color: var(--navy); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  color: white;
  background:
    linear-gradient(90deg, rgba(7,17,31,0.88) 0%, rgba(7,17,31,0.45) 55%, rgba(7,17,31,0.2) 100%),
    url("../images/hero-city.jpg") center/cover no-repeat;
  display: grid;
  align-items: center;
}
.hero-content { padding: 90px 0 70px; max-width: 680px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.04em;
  margin: 10px 0 18px;
}
.hero p { color: #dbe4f0; font-size: 18px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Stats */
.stats {
  background: var(--navy);
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  color: var(--lime);
}
.stat span { color: #94a3b8; font-size: 14px; }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img { width: 100%; height: 460px; object-fit: cover; border-radius: 24px; }
.checklist { margin-top: 22px; display: grid; gap: 10px; }
.checklist li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--lime);
  color: #10200a;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  margin-top: 3px; flex: 0 0 auto;
}

/* Cards */
.grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  transition: 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { width: 100%; height: 190px; object-fit: cover; background: #eef1f5; }
.card-body { padding: 18px 18px 20px; }
.card h3 { font-size: 20px; margin-bottom: 6px; }
.specs { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.spec {
  background: var(--paper);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.price { font-family: var(--display); font-size: 22px; margin: 8px 0 14px; }
.price small { font-size: 12px; color: var(--muted); font-family: var(--font); font-weight: 600; }
.card-actions { display: flex; gap: 8px; }

.feature {
  padding: 24px;
  background: var(--paper);
  border-radius: 20px;
}
.feature h3 { margin: 10px 0 8px; font-size: 18px; }
.icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--lime);
  display: grid; place-items: center; font-size: 20px;
}

/* Testimonials */
.quote {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 10px; }
.quote p { color: #334155; margin-bottom: 16px; }
.who { font-weight: 700; }
.who span { display: block; color: var(--muted); font-weight: 500; font-size: 13px; }

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(7,17,31,0.92), rgba(13,27,46,0.82)),
    url("../images/scooty-red.jpg") center/cover no-repeat;
  color: white;
}
.cta-band h2 { margin: 8px 0 12px; }
.cta-band p { color: #dbe4f0; margin-bottom: 22px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.info-card, form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}
.info-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: #fbfbfc;
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.success {
  display: none;
  background: #ecfccb;
  color: #365314;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
footer h4 { color: white; margin-bottom: 14px; }
footer a { display: block; padding: 4px 0; color: #94a3b8; }
footer a:hover { color: var(--lime); }
.copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: #22c55e;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

.page-hero {
  background: var(--navy);
  color: white;
  padding: 72px 0 48px;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 10px; }
.page-hero p { color: #94a3b8; max-width: 60ch; }

.tabs { display: flex; gap: 8px; margin: 0 0 28px; flex-wrap: wrap; }
.tab {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}
.tab.active { background: var(--navy); color: white; border-color: var(--navy); }

@media (max-width: 980px) {
  .menu, .nav-cta .btn-outline { display: none; }
  .hamburger { display: grid; place-items: center; }
  .menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 118px; left: 0; right: 0;
    background: white;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
  }
  .split, .stats-grid, .grid-3, .grid-4, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; background-position: 70% center; }
  .split img { height: 280px; }
}
