/* ===== Design tokens ===== */
:root {
  --navy: #0e1726;
  --navy-2: #16223a;
  --steel: #1f2d45;
  --accent: #e8462b;       /* mechanic red-orange */
  --accent-dark: #c5371f;
  --amber: #f4a01f;
  --ink: #11151c;
  --text: #2a323d;
  --muted: #6b7686;
  --line: #e3e7ed;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14,23,38,.10);
  --shadow-sm: 0 4px 14px rgba(14,23,38,.08);
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: 'Barlow Condensed', 'Inter', sans-serif; line-height: 1.08; letter-spacing: .3px; color: var(--ink); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(232,70,43,.32); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; margin-top: 10px; }
.about__card .btn--ghost, .contact .btn--ghost { border-color: var(--line); color: var(--ink); }
.about__card .btn--ghost:hover { background: var(--bg-soft); }

/* ===== Top bar ===== */
.topbar { background: var(--ink); color: #cfd6e2; font-size: .85rem; }
.topbar__inner { display: flex; gap: 22px; align-items: center; justify-content: center; padding: 8px 22px; flex-wrap: wrap; }
.topbar__phone { color: #fff; font-weight: 700; }
.topbar__phone:hover { color: var(--amber); }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(14,23,38,.96); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 22px; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 66px; width: auto; }
.brand__fallback { display: none; flex-direction: column; line-height: 1; }
.brand__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.7rem; color: #fff; letter-spacing: 1px; }
.brand__sub { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: .82rem; color: var(--amber); letter-spacing: 3px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #d7dde8; font-weight: 600; font-size: .95rem; transition: color .15s; }
.nav a:hover { color: #fff; }
.nav__cta { background: var(--accent); color: #fff !important; padding: 9px 18px; border-radius: 999px; }
.nav__cta:hover { background: var(--accent-dark); }
.nav__toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff;
  background:
    linear-gradient(115deg, rgba(14,23,38,.94) 0%, rgba(14,23,38,.82) 45%, rgba(14,23,38,.55) 100%),
    radial-gradient(circle at 80% 20%, rgba(232,70,43,.25), transparent 45%),
    var(--navy);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 18px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; padding: 84px 22px 92px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero__content { max-width: 720px; }
.hero__media { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__media::before { content: ""; position: absolute; width: 78%; height: 78%; border-radius: 50%;
  background: radial-gradient(circle, rgba(120,170,255,.30), rgba(232,70,43,.12) 55%, transparent 72%); filter: blur(8px); }
.hero__logo { position: relative; max-width: 440px; width: 100%; height: auto;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.55)); }
.hero__eyebrow { color: var(--amber); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 14px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; margin-bottom: 18px; color: #fff; }
.hero__title span { color: var(--accent); }
.hero__text { font-size: 1.16rem; color: #d3dae6; max-width: 600px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; color: #c2cad8; font-weight: 600; font-size: .95rem; }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.section-head__eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-bottom: 10px; }
.section-head__title { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; margin-bottom: 14px; }
.section-head__lead { color: var(--muted); font-size: 1.08rem; }

/* ===== Fleet (featured) ===== */
.fleet { background: var(--bg-soft); padding: 84px 0; border-top: 1px solid var(--line); position: relative; }
.fleet::before { content: "FLEET"; position: absolute; top: 24px; right: 4%; font-family: 'Barlow Condensed'; font-weight: 700; font-size: 9rem; color: rgba(14,23,38,.035); letter-spacing: 6px; pointer-events: none; }
.fleet__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.fleet__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--accent); transition: transform .15s ease, box-shadow .15s ease; }
.fleet__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fleet__icon { font-size: 2.2rem; margin-bottom: 12px; }
.fleet__card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.fleet__card p { color: var(--muted); font-size: .96rem; }

.fleet__who { background: var(--navy); color: #fff; border-radius: 20px; padding: 44px; text-align: center; box-shadow: var(--shadow); }
.fleet__who-title { font-size: 2rem; color: #fff; margin-bottom: 8px; }
.fleet__who-text { color: #c2cad8; margin-bottom: 22px; }
.fleet__who-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 30px; }
.fleet__who-list li { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .95rem; }

/* ===== Services ===== */
.services { padding: 84px 0; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .15s ease, box-shadow .15s ease; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-card__icon { font-size: 2.3rem; margin-bottom: 14px; }
.svc-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: .98rem; }
.svc-card--feature { background: linear-gradient(160deg, var(--navy) 0%, var(--steel) 100%); color: #fff; border: none; }
.svc-card--feature h3 { color: #fff; }
.svc-card--feature p { color: #c8d0de; }
.svc-card__link { display: inline-block; margin-top: 14px; color: var(--amber); font-weight: 700; }

/* ===== Why ===== */
.why { background: var(--ink); color: #fff; padding: 64px 0; }
.why__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why__item { text-align: center; }
.why__num { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.why__item h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.why__item p { color: #b7c0d0; font-size: .96rem; }

/* ===== About ===== */
.about { padding: 84px 0; }
.about__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.about__text p { color: var(--text); margin-bottom: 16px; }
.about__text .section-head__title { text-align: left; }
.about__stats { display: flex; gap: 34px; margin-top: 26px; }
.about__stat-num { display: block; font-family: 'Barlow Condensed'; font-size: 2.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.about__stat-label { color: var(--muted); font-weight: 600; font-size: .9rem; }
.about__card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px; padding: 36px; text-align: center; box-shadow: var(--shadow-sm); }
.about__card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.about__card p { color: var(--muted); margin-bottom: 18px; }

/* ===== Area ===== */
.area { padding: 84px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.area__list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.area__list li { background: #fff; border: 1px solid var(--line); padding: 12px 22px; border-radius: 999px; font-weight: 600; color: var(--text); box-shadow: var(--shadow-sm); }

/* ===== Contact ===== */
.contact { padding: 84px 0; background: var(--navy); color: #fff; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact__info h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; margin-bottom: 14px; }
.contact__info p { color: #c2cad8; margin-bottom: 20px; }
.contact__phone { display: inline-block; font-family: 'Barlow Condensed'; font-size: 2.2rem; font-weight: 700; color: var(--amber); margin-bottom: 12px; }
.contact__note { color: #9aa6b8 !important; font-size: .95rem; }
.contact__form { background: #fff; border-radius: 18px; padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .92rem; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink); background: #fdfdfe; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,70,43,.12); }
.contact__formnote { font-size: .8rem; color: var(--accent-dark); margin-top: 10px; text-align: center; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #aeb8c8; padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer__logo { height: 90px; width: auto; margin-bottom: 6px; }
.footer__brand-fallback { display: none; flex-direction: column; line-height: 1; }
.footer__brand .brand__name { font-size: 1.6rem; }
.footer__brand p { margin-top: 12px; max-width: 320px; font-size: .95rem; }
.footer__col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: .5px; }
.footer__col a, .footer__col span { display: block; color: #aeb8c8; margin-bottom: 8px; font-size: .95rem; }
.footer__col a:hover { color: var(--amber); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .88rem; text-align: center; }

/* ===== Sticky call bar (mobile) ===== */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--accent); color: #fff; text-align: center; font-weight: 700; padding: 14px; box-shadow: 0 -4px 14px rgba(0,0,0,.2); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__content { max-width: none; }
  .hero__media { order: -1; }
  .hero__logo { max-width: 340px; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 16px 22px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav.open { display: flex; }
  .nav__toggle { display: block; }
  .fleet__grid, .services__grid, .why__inner, .footer__inner { grid-template-columns: 1fr; }
  .fleet__who { padding: 30px 22px; }
  .hero__inner { padding: 60px 22px 96px; }
  .about__stats { gap: 22px; flex-wrap: wrap; }
  .callbar { display: block; }
  body { padding-bottom: 56px; }
}
