:root {
  --bg: #0a0a0b;
  --bg-soft: #141416;
  --card: #18181b;
  --line: #27272a;
  --text: #fafafa;
  --muted: #a1a1aa;
  --lime: #a3e635;
  --lime-dark: #65a30d;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; max-width: 1080px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; }
.nav-brand img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--lime); }

/* hero */
.hero {
  text-align: center;
  padding: 80px 24px 64px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(163, 230, 53, 0.10), transparent);
}
.hero img.logo { width: 96px; height: 96px; margin-bottom: 28px; }
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lime);
  border: 1px solid rgba(163, 230, 53, 0.3); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 24px;
}
.hero h1 { font-size: 44px; line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--lime); }
.hero p.sub {
  font-size: 18px; color: var(--muted); max-width: 600px;
  margin: 20px auto 32px;
}
.btn {
  display: inline-block; background: var(--lime); color: #0a0a0b;
  font-weight: 700; font-size: 15px; padding: 14px 30px; border-radius: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(163, 230, 53, 0.25); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* sections */
section { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* grid cards */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px;
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover { border-color: rgba(163, 230, 53, 0.4); transform: translateY(-3px); }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(163, 230, 53, 0.12); color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}

/* big choice cards (home) */
.choice {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  transition: border-color 0.18s, transform 0.18s;
}
.choice:hover { border-color: var(--lime); transform: translateY(-4px); }
.choice img { width: 100%; height: 220px; object-fit: cover; display: block; }
.choice .body { padding: 26px 28px 30px; }
.choice .body h3 { font-size: 22px; }
.choice .body p { color: var(--muted); margin: 8px 0 16px; }
.choice .more { color: var(--lime); font-weight: 700; font-size: 14px; }

/* fleet */
.fleet-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.fleet-card img { width: 100%; height: 170px; object-fit: cover; background: #1f1f23; }
.fleet-card .body { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.fleet-card .body h4 { font-size: 16px; }
.fleet-card .body .price { color: var(--lime); font-weight: 800; font-size: 18px; white-space: nowrap; }
.fleet-card .body .price span { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }

/* contact */
.contact {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 20px; padding: 44px; text-align: center;
}
.contact h2 { font-size: 28px; font-weight: 800; }
.contact p { color: var(--muted); margin: 10px 0 22px; }
.contact .phone { font-size: 26px; font-weight: 800; color: var(--lime); }

/* footer */
footer {
  border-top: 1px solid var(--line); margin-top: 40px;
  padding: 36px 24px; text-align: center; color: var(--muted); font-size: 13px;
}
footer .legal { color: var(--text); font-weight: 600; }
footer a { color: var(--lime); }

@media (max-width: 720px) {
  .hero h1 { font-size: 32px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .contact { padding: 32px 22px; }
}
