:root {
  --red: #e6252e;
  --red-2: #ff3c45;
  --dark: #090a0b;
  --dark-2: #111214;
  --dark-3: #17191c;
  --line: #282b2f;
  --muted: #a4a8ad;
  --text: #f7f7f7;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.preview-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.72);
  color: #c7c9cd;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.site-header { position: relative; z-index: 50; }
.topbar { background: #ffffff; border-bottom: 1px solid #e7e7e7; font-size: 11px; color: #5d6268; }
.topbar__inner { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.topbar__left, .topbar__right { display: flex; gap: 24px; align-items: center; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav-wrap.scrolled { box-shadow: 0 12px 40px rgba(0,0,0,.12); background: rgba(255,255,255,.99); }
.nav { min-height: 72px; display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav.container { width: min(1280px, calc(100% - 40px)); }
.brand { width: 184px; flex: 0 0 auto; }
.brand img { height: 50px; width: auto; object-fit: contain; }
.nav-menu { margin-left: auto; display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.15vw, 22px); flex: 1 1 auto; min-width: 0; flex-wrap: nowrap; }
.nav-menu a { position: relative; flex: 0 0 auto; white-space: nowrap; font-size: 11px; font-weight: 700; color: #34383d; text-transform: uppercase; letter-spacing: .035em; }
.nav-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--red); transition: right .2s ease; }
.nav-menu a:hover::after, .nav-menu a.active::after { right: 0; }
.nav-menu a:hover, .nav-menu a.active { color: #111214; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; flex-wrap: nowrap; white-space: nowrap; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid #e0e2e5; background: #f7f8f9; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.lang-switch a { color: #858a90; line-height: 1; }
.lang-switch a:hover, .lang-switch a.active { color: var(--red); }
.lang-switch span { color: #c7cacf; }
.nav-cta { padding: 12px 16px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.nav-cta:hover { background: var(--red-2); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid #d9dce0; background: #fff; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: #111214; margin: 5px 0; }

.hero { min-height: 690px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: url("img/hero-fleet.png") center 46% / cover no-repeat; transform: scale(1.02); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,7,.95) 0%, rgba(5,6,7,.84) 34%, rgba(5,6,7,.34) 68%, rgba(5,6,7,.58) 100%), linear-gradient(0deg, rgba(9,10,11,.8), transparent 55%); }
.hero::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42%; height: 7px; background: var(--red); }
.hero__content { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 70px; }
.eyebrow { color: var(--red-2); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; margin: 0 0 14px; }
.hero h1, .section h2, .cta-band h2 { font-family: Montserrat, Inter, sans-serif; text-transform: uppercase; letter-spacing: -.035em; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 6vw, 86px); line-height: .98; font-weight: 900; }
.hero h1 span { color: var(--red); }
.hero__lead { max-width: 650px; margin: 26px 0 0; color: #d1d4d7; font-size: 17px; }
.hero__actions { display: flex; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-2); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(0,0,0,.16); }
.btn--ghost:hover { border-color: #fff; }
.hero__scroll { position: absolute; right: max(24px, calc((100vw - var(--max))/2)); bottom: 28px; z-index: 3; font-size: 11px; color: #bbbfc4; text-transform: uppercase; letter-spacing: .12em; }
.hero__scroll span { margin-left: 6px; color: var(--red); }

.stats-bar { position: relative; z-index: 5; margin-top: -1px; background: var(--red); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-card { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-card:last-child { border-right: 0; }
.stat-card strong { display: block; font-family: Montserrat, sans-serif; font-size: clamp(30px, 3.2vw, 48px); line-height: 1; }
.stat-card span { display: block; margin-top: 8px; color: rgba(255,255,255,.86); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 94px 0; }
.section--muted { background: #0d0e10; border-block: 1px solid #15171a; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 44px; }
.section-heading h2, .network h2, .image-band__content h2, .quality h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.04; }
.section-heading > p { margin: 0; color: var(--muted); }
.section-heading::after { content: ""; display: block; grid-column: 1 / -1; width: 62px; height: 3px; background: var(--red); margin-top: -34px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { position: relative; min-height: 300px; padding: 28px; background: #131518; border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 54px; background: var(--red); }
.service-card:hover { transform: translateY(-6px); border-color: rgba(230,37,46,.65); }
.service-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #393d42; color: var(--red); font-family: Montserrat, sans-serif; font-weight: 900; }
.service-card h3 { margin: 44px 0 10px; font-size: 22px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card a { display: inline-flex; gap: 10px; margin-top: 16px; color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.service-card a span { color: var(--red); }

.fleet-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.fleet-tab { padding: 10px 15px; border: 1px solid #303338; background: transparent; color: #a9adb2; cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.fleet-tab:hover, .fleet-tab.active { background: var(--red); border-color: var(--red); color: white; }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fleet-card { background: #15171a; border: 1px solid #26292d; min-height: 255px; transition: opacity .2s ease, transform .25s ease, border-color .25s ease; }
.fleet-card:hover { transform: translateY(-5px); border-color: #4a4e54; }
.fleet-card.is-hidden { display: none; }
.fleet-card__visual { height: 122px; display: grid; place-items: center; background: linear-gradient(145deg,#202327,#111315); border-bottom: 3px solid var(--red); overflow: hidden; }
.fleet-card__visual span { font-family: Montserrat, sans-serif; font-weight: 900; font-size: 34px; font-style: italic; color: rgba(255,255,255,.1); letter-spacing: -.02em; }
.fleet-card__body { padding: 20px; }
.fleet-card h3 { margin: 0 0 6px; font-size: 18px; text-transform: uppercase; }
.fleet-card p { margin: 0 0 14px; font-size: 13px; color: var(--muted); }
.fleet-card__meta { color: var(--red-2); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

.network { background: #101214; }
.network__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.network__content > p:not(.eyebrow) { color: var(--muted); }
.location-list { margin-top: 34px; display: grid; gap: 12px; }
.location-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid #292c30; }
.location-list > div > span { color: var(--red); font-family: Montserrat, sans-serif; font-weight: 800; }
.location-list p { margin: 0; color: #9ea2a7; font-size: 13px; }
.location-list strong { display: block; color: #fff; font-size: 14px; }
.network__visual { position: relative; background: #0b0c0d; border: 1px solid #25282c; padding: 20px; box-shadow: var(--shadow); }
.network__visual img { width: 100%; min-height: 300px; object-fit: contain; background: white; }
.network__note { position: absolute; right: -20px; bottom: -20px; background: var(--red); padding: 20px 22px; width: 180px; }
.network__note strong { display: block; font-family: Montserrat, sans-serif; font-size: 28px; }
.network__note span { font-size: 11px; text-transform: uppercase; }

.section--image-band { position: relative; overflow: hidden; background: #08090a; }
.section--image-band::before { content: ""; position: absolute; inset: 0 0 0 52%; background: linear-gradient(135deg, rgba(230,37,46,.06), transparent 40%); pointer-events: none; }
.image-band__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.image-band__media { position: relative; }
.image-band__media::before { content: ""; position: absolute; left: -14px; bottom: -14px; width: 70%; height: 70%; border-left: 4px solid var(--red); border-bottom: 4px solid var(--red); }
.image-band__media img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.9) contrast(1.03); }
.image-band__content > p:not(.eyebrow) { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 26px; color: #d3d6d9; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.clients { background: #0e1012; }
.clients-panel { background: white; padding: 28px; border-top: 4px solid var(--red); }
.clients-panel img { width: 100%; max-height: 420px; object-fit: contain; }

.quality { background: #090a0b; }
.quality__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; }
.quality__content > p:not(.eyebrow) { color: var(--muted); max-width: 660px; }
.quality-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.quality-points article { padding: 20px; border: 1px solid #2b2e32; background: #111315; }
.quality-points strong { display: block; margin-bottom: 7px; color: var(--red-2); text-transform: uppercase; font-size: 12px; }
.quality-points span { color: #aeb2b7; font-size: 12px; }
.certificate-card { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 360px; background: #15171a; border: 1px solid #2a2d31; box-shadow: var(--shadow); }
.certificate-card__image { overflow: hidden; background: #fff; }
.certificate-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.certificate-card__body { align-self: end; padding: 28px; border-top: 3px solid var(--red); }
.certificate-card__body p { margin: 0; color: var(--red); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.certificate-card__body h3 { margin: 5px 0 8px; font-size: 24px; }
.certificate-card__body span { color: var(--muted); font-size: 12px; }

.cta-band { padding: 90px 0; background: linear-gradient(100deg, rgba(230,37,46,.94), rgba(166,14,24,.94)), url("img/truck-side.png") center/cover no-repeat; }
.cta-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.cta-band .eyebrow { color: #fff; opacity: .8; }
.cta-band h2 { margin: 0; font-size: clamp(38px,4.5vw,58px); line-height: 1; }
.cta-band__copy > p:not(.eyebrow) { color: rgba(255,255,255,.88); }
.contact-mini { margin-top: 28px; display: grid; gap: 12px; }
.contact-mini span { font-weight: 700; font-size: 13px; }
.contact-mini small { display: block; color: rgba(255,255,255,.68); font-weight: 500; text-transform: uppercase; font-size: 9px; letter-spacing: .08em; }
.contact-form { background: #0e1012; color: #fff; padding: 28px; box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: #c8cbd0; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #34383d; background: #17191c; color: #fff; padding: 12px 13px; outline: none; text-transform: none; letter-spacing: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }
.form-status { margin: 12px 0 0; color: #9fe1ad; font-size: 12px; min-height: 18px; }

.footer { background: #ffffff; border-top: 1px solid #e5e7ea; color: #1b1e22; }
.footer__grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr 1fr; gap: 48px; padding: 58px 0; }
.footer__brand img { width: 200px; margin-bottom: 18px; }
.footer p, .footer a { color: #62676d; font-size: 12px; }
.footer h3 { margin: 0 0 14px; font-size: 11px; color: #17191c; text-transform: uppercase; letter-spacing: .1em; }
.footer a { display: block; padding: 4px 0; }
.footer a:hover { color: var(--red); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 26px; border-top: 1px solid #e5e7ea; color: #7a7f85; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) and (min-width: 1041px) {
  .nav { gap: 15px; }
  .brand { width: 168px; }
  .brand img { height: 46px; }
  .nav-menu { gap: 12px; }
  .nav-menu a { font-size: 9.5px; letter-spacing: .02em; }
  .nav-cta { padding: 11px 12px; font-size: 9.5px; }
  .lang-switch { padding: 6px 8px; }
}

@media (max-width: 1040px) {
  .nav-cta { display: none; }
  .nav-actions { gap: 8px; }
  .brand { width: 168px; }
  .nav { gap: 16px; }
  .nav-menu { gap: 14px; }
  .nav-menu a { font-size: 10px; letter-spacing: .025em; }
  .service-grid, .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .quality__grid, .network__grid, .image-band__grid, .cta-band__grid { grid-template-columns: 1fr; }
  .quality-points { grid-template-columns: repeat(3,1fr); }
  .certificate-card { max-width: 650px; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .nav { min-height: 66px; }
  .brand { width: 165px; }
  .brand img { height: 46px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-actions { order: 2; }
  .lang-switch { padding: 6px 8px; }
  .nav-menu {
    flex: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid #e1e3e6;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 16px; border-bottom: 1px solid #eceef0; font-size: 11px; }
  .nav-menu a::after { display: none; }
  .hero { min-height: 610px; }
  .hero__media { background-position: 58% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(5,6,7,.95), rgba(5,6,7,.65)); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-card:nth-child(2) { border-right: 0; }
  .stat-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .section { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading::after { margin-top: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .preview-badge { display: none; }
  .hero { min-height: 620px; }
  .hero h1 { font-size: 44px; }
  .hero__lead { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .service-grid, .fleet-grid, .quality-points, .footer__grid { grid-template-columns: 1fr; }
  .fleet-tabs { overflow-x: auto; padding-bottom: 4px; }
  .fleet-tab { white-space: nowrap; }
  .certificate-card { grid-template-columns: 1fr; }
  .certificate-card__image { max-height: 360px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__bottom { flex-direction: column; }
  .network__note { right: 10px; bottom: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 20px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .fleet-card { transition: none; }
}

/* CMS / inner page components */
body { padding: 0 !important; }
main { min-height: 50vh; }
.inner-hero { position: relative; padding: 96px 0 72px; overflow: hidden; background: linear-gradient(100deg,rgba(9,10,11,.98),rgba(9,10,11,.76)),url("img/truck-road.png") center/cover no-repeat; border-bottom: 1px solid #22252a; }
.inner-hero::after { content:""; position:absolute; left:0; bottom:0; width:32%; height:5px; background:var(--red); }
.inner-hero h1 { max-width: 850px; margin: 0; font-family: Montserrat,Inter,sans-serif; font-size: clamp(42px,5vw,68px); line-height: 1; text-transform: uppercase; letter-spacing: -.035em; }
.inner-hero p:not(.eyebrow) { max-width: 780px; color:#c5c8cc; margin:18px 0 0; font-size:16px; }
.breadcrumb-dark { margin-bottom:16px; color:#858a90; font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.breadcrumb-dark a:hover { color:var(--red); }
.inner-section { padding: 78px 0; }
.inner-section--muted { background:#0d0f11; border-block:1px solid #181b1f; }
.inner-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }
.inner-copy h2, .page-title { font-family:Montserrat,Inter,sans-serif; text-transform:uppercase; letter-spacing:-.03em; }
.inner-copy h2 { font-size:clamp(30px,4vw,50px); line-height:1.05; margin:0 0 18px; }
.inner-copy p { color:var(--muted); }
.media-frame { position:relative; border:1px solid #26292d; background:#121416; padding:14px; box-shadow:var(--shadow); }
.media-frame::after { content:""; position:absolute; left:-1px; top:-1px; width:80px; height:4px; background:var(--red); }
.media-frame img { width:100%; aspect-ratio:16/11; object-fit:cover; }
.info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card { padding:26px; background:#131518; border:1px solid #292c30; }
.info-card h3 { margin:0 0 10px; font-size:20px; }
.info-card p { margin:0; color:var(--muted); font-size:13px; }
.info-card .number { display:inline-grid; place-items:center; width:42px; height:42px; margin-bottom:28px; border:1px solid #3a3e43; color:var(--red); font-family:Montserrat,sans-serif; font-weight:900; }
.section-actions { margin-top:30px; }
.inline-link { display:inline-block; margin-top:22px; color:#fff; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.inline-link:hover { color:var(--red); }
.content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.content-card { background:#141619; border:1px solid #292c30; overflow:hidden; }
.content-card__image { display:block; height:210px; overflow:hidden; border-bottom:3px solid var(--red); }
.content-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.content-card:hover .content-card__image img { transform:scale(1.04); }
.content-card__body { padding:22px; }
.content-card__meta { color:var(--red-2); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.content-card h3 { margin:10px 0 9px; font-size:20px; line-height:1.25; }
.content-card h3 a:hover { color:var(--red); }
.content-card p { color:var(--muted); font-size:13px; margin:0; }
.content-card__cta { display:inline-block; margin-top:16px; color:#fff; font-size:11px; font-weight:800; text-transform:uppercase; }
.content-card__cta:hover { color:var(--red); }
.article-wrap { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:44px; align-items:start; }
.article-main { background:#111315; border:1px solid #25282c; padding:34px; }
.article-main > img { width:100%; max-height:520px; object-fit:cover; margin-bottom:28px; }
.article-main h2,.article-main h3 { font-family:Montserrat,Inter,sans-serif; margin-top:30px; }
.article-main p,.article-main li { color:#c5c8cc; }
.article-main a { color:var(--red-2); }
.article-meta { color:#8c9196; font-size:11px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:18px; }
.sidebar-card { background:#121416; border:1px solid #282b30; padding:24px; margin-bottom:18px; }
.sidebar-card h3 { margin:0 0 14px; font-size:16px; text-transform:uppercase; }
.sidebar-card p { color:var(--muted); font-size:13px; }
.chip-list { display:flex; flex-wrap:wrap; gap:8px; }
.chip { padding:7px 10px; border:1px solid #34383d; color:#c8ccd0; font-size:10px; text-transform:uppercase; }
.chip:hover { border-color:var(--red); color:#fff; }
.contact-layout { display:grid; grid-template-columns:.85fr 1.15fr; gap:54px; align-items:start; }
.contact-cards { display:grid; gap:12px; margin-top:26px; }
.contact-card { padding:18px; border:1px solid #2b2e33; background:#111315; }
.contact-card small { display:block; color:var(--red); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.contact-card strong,.contact-card span { display:block; margin-top:4px; }
.map-placeholder { margin-top:24px; padding:24px; border:1px solid #2a2d32; background:#111315; color:#a7abb0; }
.search-form-dark { display:flex; gap:10px; max-width:650px; margin-top:24px; }
.search-form-dark input { flex:1; padding:13px 14px; background:#131518; border:1px solid #35393e; color:#fff; outline:none; }
.search-form-dark input:focus { border-color:var(--red); }
.wa-float { position:fixed; right:20px; bottom:20px; z-index:80; width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:#25d366; color:#07150b; font-size:12px; font-weight:900; box-shadow:0 10px 30px rgba(0,0,0,.35); }
.wa-float:hover { color:#07150b; transform:translateY(-2px); }
.empty-state { padding:36px; border:1px dashed #34383d; color:#9fa4a9; text-align:center; }
.legacy-page .row { color:var(--text); }
.legacy-page .text-secondary { color:var(--muted)!important; }
.legacy-page .text-dark { color:#fff!important; }
.legacy-page .card,.legacy-page .section-card,.legacy-page .article-card,.legacy-page .product-card,.legacy-page .category-tile { background:#131518!important; color:#fff!important; border:1px solid #282b30!important; }
.legacy-page .form-control,.legacy-page .form-select { background:#15171a; border-color:#34383d; color:#fff; }
.legacy-page .form-control::placeholder { color:#73787e; }
.btn-success,.btn-primary { background:var(--red)!important; border-color:var(--red)!important; }
.btn-outline-success,.btn-outline-primary { color:var(--red)!important; border-color:var(--red)!important; }
.btn-outline-success:hover,.btn-outline-primary:hover { color:#fff!important; background:var(--red)!important; }

@media (max-width: 1040px){
  .content-grid,.info-grid { grid-template-columns:repeat(2,1fr); }
  .inner-grid-2,.contact-layout,.article-wrap { grid-template-columns:1fr; }
  .article-sidebar { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
}
@media (max-width: 620px){
  .inner-hero { padding:72px 0 56px; }
  .content-grid,.info-grid,.article-sidebar { grid-template-columns:1fr; }
  .article-main { padding:22px; }
  .search-form-dark { flex-direction:column; }
}

/* Dynamic landing-page CMS enhancements */
.service-card__image{height:150px;margin:-28px -28px 24px;overflow:hidden;border-bottom:1px solid var(--line);background:#0b0c0d}
.service-card__image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.service-card:hover .service-card__image img{transform:scale(1.035)}
.service-card:has(.service-card__image) .service-card__icon{margin-top:-48px;position:relative;background:#131518;z-index:2}
.service-card:has(.service-card__image) h3{margin-top:26px}
.fleet-card__visual{display:block;position:relative}
.fleet-card__visual img{width:100%;height:100%;min-height:122px;object-fit:cover;display:block;filter:saturate(.85) contrast(1.04);transition:transform .3s ease}
.fleet-card:hover .fleet-card__visual img{transform:scale(1.03)}
.fleet-card__visual::after{content:"";position:absolute;inset:auto 0 0;height:3px;background:var(--red)}
@media(max-width:767px){.service-card__image{height:180px}}
