:root {
  --hg-dark: #333333;
  --hg-blue: #4a90e2;
  --hg-blue-hover: #3a7bc8;
  --hg-blue-light: #5dade2;
  --hg-bg: #f4f6f9;
  --hg-white: #ffffff;
  --hg-border: #e2e8f0;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(51, 51, 51, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--hg-dark);
  background: var(--hg-white);
  line-height: 1.55;
  font-size: 1rem;
}

a { color: var(--hg-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.narrow { max-width: 520px; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hg-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.logo img { display: block; height: 48px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.main-nav a { color: var(--hg-dark); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--hg-blue); text-decoration: none; }

.nav-toggle {
  display: none;
  border: 1px solid var(--hg-border);
  background: var(--hg-white);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    right: 4vw;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--hg-white);
    border: 1px solid var(--hg-border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    min-width: 200px;
  }
  .main-nav.is-open { display: flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--hg-blue);
  color: #fff !important;
}
.btn-primary:hover { background: var(--hg-blue-hover); }
.btn-outline {
  background: transparent;
  color: var(--hg-dark) !important;
  border: 2px solid var(--hg-dark);
}
.btn-outline:hover { border-color: var(--hg-blue); color: var(--hg-blue) !important; }
.btn-lg { padding: 0.75rem 1.4rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4fc 50%, #fff 100%);
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--hg-border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero-copy h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.text-accent { color: var(--hg-blue); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hg-blue);
  margin: 0;
}
.lead { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust-stats {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.trust-stats li {
  background: #eaf2fd;
  color: #1d4f8f;
  border: 1px solid #cfe1fb;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-card {
  background: var(--hg-white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--hg-border);
}
.hero-card h3 { margin-top: 0; font-size: 1.05rem; }
.hero-list { list-style: none; padding: 0; margin: 0; }
.hero-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--hg-border);
  font-size: 0.92rem;
}
.hero-list li:last-child { border-bottom: 0; }
.hero-list span { color: var(--hg-blue); font-weight: 600; white-space: nowrap; }
.featured-inline { max-width: 640px; margin: 0 auto; background: var(--hg-white); border-radius: var(--radius); padding: 0 1.25rem; border: 1px solid var(--hg-border); box-shadow: 0 2px 12px rgba(0,0,0,.04); }

.hero-with-slider { padding: 0; }
.hero-slider-grid {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: block;
  min-height: 86vh;
}
.hero-slider-grid .hero-copy {
  position: absolute;
  z-index: 6;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(2.5rem, 14vh, 9rem);
  width: min(1180px, 92vw);
  max-width: min(1180px, 92vw);
  color: #fff;
}
.hero-slider-grid .hero-copy > * { max-width: 560px; }
.hero-slider-grid .hero-copy .eyebrow { color: #93c5fd; }
.hero-slider-grid .hero-copy .lead { color: #e2e8f0; }
.hero-slider-grid .hero-copy h1 { color: #fff; }
.hero-slider-grid .hero-copy .hero-actions { max-width: 920px; }
.btn-icon { display: inline-flex; align-items: center; gap: 0.45rem; }
.icon-bubble {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  line-height: 1;
}
.hero-btn {
  border: 1px solid transparent;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(15,23,42,.25);
}
.hero-btn:hover { transform: translateY(-1px); }
.hero-btn-fleet { background: #3b82f6; }
.hero-btn-fleet:hover { background: #2563eb; }
.hero-btn-res { background: #7c3aed; }
.hero-btn-res:hover { background: #6d28d9; }
.hero-btn-map { background: #0ea5a4; }
.hero-btn-map:hover { background: #0f918f; }
.hero-btn-wa { background: #16a34a; }
.hero-btn-wa:hover { background: #15803d; }
.hero-btn-contact { background: #334155; border-color: #64748b; }
.hero-btn-contact:hover { background: #1f2937; }
.hero-btn .icon-bubble { background: rgba(255,255,255,.22); }
.hero-slider-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  min-height: 86vh;
  background: #0f172a;
}
.hero-slider-viewport { overflow: hidden; position: relative; height: 86vh; max-height: none; }
.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}
.hero-slide-media { position: absolute; inset: 0; }
.hero-slide-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}
.hero-slide-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.35) 10%, rgba(15,23,42,.88) 100%);
  pointer-events: none;
}
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--hg-dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hero-slider-nav:hover { background: #fff; }
.hero-slider-prev { left: 0.65rem; }
.hero-slider-next { right: 0.65rem; }
.hero-slider-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.4rem;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.hero-slider-dot.is-active { background: #fff; transform: scale(1.15); }
@media (max-width: 860px) {
  .hero-slider-wrap, .hero-slider-viewport, .hero-slider-grid { min-height: 72vh; height: 72vh; }
  .hero-slider-grid .hero-copy { top: 1.25rem; left: 50%; right: auto; width: 92vw; max-width: 92vw; }
  .hero-slider-grid .hero-copy > * { max-width: none; }
  .hero-slider-grid .hero-copy .hero-actions { gap: 0.5rem; }
}

.brand-strip {
  background: var(--hg-dark);
  color: #e2e8f0;
  padding: 0.85rem 0;
  border-block: 1px solid #334155;
}
.brand-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.brand-strip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
}
.brand-strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.brand-strip-list a {
  color: #f1f5f9 !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
  opacity: 0.92;
}
.brand-strip-list a:hover { color: #93c5fd !important; text-decoration: none !important; }

.section-tight { padding: 1.75rem 0; }
.lead-tight { margin: 0 0 1rem; max-width: 720px; }
.seo-quick-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 860px) {
  .split-two { grid-template-columns: 1fr; }
}
.check-list { margin: 0; padding-left: 1rem; }
.check-list li { margin: 0.4rem 0; font-weight: 600; }
.info-card {
  border: 1px solid var(--hg-border);
  background: #f8fbff;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.info-card h3 { margin-top: 0; }
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.doc-card {
  background: #fff;
  border: 1px solid var(--hg-border);
  border-radius: var(--radius);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.doc-card h3 { margin: 0; font-size: 1rem; }
.doc-card iframe {
  width: 100%;
  height: 280px;
  border: 1px solid var(--hg-border);
  border-radius: 8px;
  background: #f8fafc;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}
.review-card {
  border: 1px solid var(--hg-border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
}
.review-card p { margin-top: 0; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-item {
  border: 1px solid var(--hg-border);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  background: #fff;
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { margin: 0.6rem 0 0; color: #475569; }
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.district-card {
  border: 1px solid var(--hg-border);
  border-radius: 10px;
  background: #fff;
  padding: 0.8rem;
  color: var(--hg-dark) !important;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none !important;
}
.district-card:hover { border-color: var(--hg-blue); }
.district-card span { color: #64748b; font-size: 0.84rem; }

.section { padding: 2.75rem 0; }
.section-alt { background: var(--hg-bg); }
.section-title {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--hg-white);
  border: 1px solid var(--hg-border);
  color: var(--hg-dark) !important;
  font-size: 0.88rem;
  font-weight: 500;
}
.chip:hover { border-color: var(--hg-blue); text-decoration: none; }
.chip.active { background: var(--hg-blue); border-color: var(--hg-blue); color: #fff !important; }

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.vehicle-card {
  background: var(--hg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hg-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
}
.vehicle-card-img {
  aspect-ratio: 16/10;
  background: #e8edf5;
  display: block;
  overflow: hidden;
}
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; }
.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #94a3b8;
  font-size: 0.9rem;
}
.no-img.large { min-height: 280px; }
.vehicle-card-body { padding: 1rem 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hg-blue);
  font-weight: 700;
}
.vehicle-card h3 { margin: 0; font-size: 1.05rem; }
.vehicle-card h3 a { color: inherit; }
.spec-mini { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #64748b; }
.price-row { margin-top: auto; padding-top: 0.5rem; }
.price-row span { font-size: 1.25rem; font-weight: 700; color: var(--hg-blue); }
.muted { color: #64748b; }
.small { font-size: 0.88rem; }
.center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }

.blog-teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.blog-teaser {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--hg-border);
  background: var(--hg-white);
}
.blog-teaser h3 { margin-top: 0; }

.site-footer {
  background: var(--hg-dark);
  color: #cbd5e1;
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}
.site-footer a { color: #e2e8f0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0.35rem 0; }
.footer-bottom {
  border-top: 1px solid #444;
  padding: 1rem 0;
  font-size: 0.85rem;
}

.page-head { padding: 2rem 0 1rem; background: var(--hg-bg); border-bottom: 1px solid var(--hg-border); }
.page-head h1 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); }
.breadcrumb { font-size: 0.88rem; margin-bottom: 0.5rem; color: #64748b; }

.vehicle-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .vehicle-detail { grid-template-columns: 1fr; }
}
.vehicle-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.vehicle-gallery .main img { width: 100%; border-radius: var(--radius); display: block; }
.vehicle-gallery .thumb img { width: 100%; max-height: 120px; object-fit: cover; border-radius: 8px; }
.price-box {
  background: linear-gradient(145deg, #fff, #f0f6fd);
  border: 1px solid var(--hg-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.price-big { font-size: 1.75rem; font-weight: 800; color: var(--hg-blue); }
.spec-list { list-style: none; padding: 0; margin: 1rem 0; }
.spec-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--hg-border); font-size: 0.92rem; }
.dot-list { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.prose { max-width: 720px; }
.prose p { margin: 0.75rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.card { padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--hg-border); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 600; font-size: 0.88rem; }
.input {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--hg-border);
  border-radius: 8px;
  font: inherit;
}
.alert { padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.alert.success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.alert.error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

.blog-list .blog-row { padding: 1.5rem 0; border-bottom: 1px solid var(--hg-border); }

.breadcrumb { font-size: 0.9rem; margin-bottom: 0.75rem; }
.breadcrumb a { font-weight: 500; }

.district-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}
.district-links a {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  background: var(--hg-bg);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--hg-dark);
  border: 1px solid var(--hg-border);
}
.district-links a:hover { text-decoration: none; background: #e8eef5; }
