
:root{
  --bg:#f7f8fc; --surface:#ffffff; --muted:#f1f4fb; --border:#e6e9f2; --text:#1f2430; --sub:#667085;
  --brand:#2563eb; --brand-2:#0ea5e9; --ok:#16a34a; --warn:#f59e0b; --danger:#ef4444; --radius:16px;
  --shadow:0 8px 24px rgba(17,24,39,.06);
}
*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--text);
  font-family:Outfit, Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:auto;padding:24px}
header.site{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:blur(8px);border-bottom:1px solid var(--border);z-index:30}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 24px}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,var(--brand),var(--brand-2));display:grid;place-items:center;color:#fff;font-weight:900}
.menu{display:flex;gap:12px;flex-wrap:wrap}
.menu a{padding:10px 14px;border:1px solid var(--border);border-radius:999px;background:#fff;font-weight:700;color:#334155}
.btn{background:var(--brand);color:#fff;border:none;padding:12px 16px;border-radius:12px;font-weight:700;cursor:pointer;box-shadow:var(--shadow)}
.btn.secondary{background:#ecf2ff;color:#1f2937;border:1px solid #dbe7ff}
.btn.ghost{background:transparent;border:1px solid var(--border);color:#334155}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
.section-title{font-size:22px;font-weight:800;margin:8px 0 12px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.hero{padding:48px 0;background:
  radial-gradient(600px 180px at 15% -40px, #e8f1ff 0, rgba(232,241,255,0) 60%),
  radial-gradient(700px 220px at 88% -80px, #e6fbff 0, rgba(230,251,255,0) 60%);}
.hero .headline{font-size:44px;line-height:1.05;margin:0 0 8px;font-weight:800}
.searchbar{display:grid;grid-template-columns:repeat(4,1fr) 130px;gap:10px;margin-top:14px}
.input,.select{width:100%;padding:12px 14px;border-radius:12px;border:1px solid var(--border);background:#fff;color:#0f172a}
.row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.sub{color:var(--sub)}
.specs{display:flex;flex-wrap:wrap;gap:8px;margin-top:6px}
.spec{background:#f3f6fd;padding:6px 8px;border-radius:999px;border:1px solid #e5ecff;font-size:12px;color:#334155}
.price{font-size:22px;font-weight:800;color:#0f172a}
.pill{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border:1px solid var(--border);border-radius:999px;background:#fff;font-size:12px;color:#334155}
.table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden}
.table th,.table td{border-bottom:1px solid var(--border);padding:12px;text-align:left}
.car-img{aspect-ratio:16/10;border-radius:14px;background:#eef3ff center/cover}
footer.site{margin:40px 0 80px;color:#94a3b8;text-align:center}
@media (max-width:1100px){.grid-4{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}.grid-2{grid-template-columns:1fr} .searchbar{grid-template-columns:1fr 1fr 1fr 1fr 1fr}}
@media (max-width:700px){.grid-4,.grid-3{grid-template-columns:1fr}.searchbar{grid-template-columns:1fr 1fr}}
