:root {
  --blue: #0b4f9f;
  --blue-dark: #082f63;
  --red: #d6252f;
  --text: #182235;
  --muted: #637083;
  --line: #dce6f2;
  --soft: #f4f8fd;
  --white: #fff;
  --shadow: 0 22px 60px rgba(8, 47, 99, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid #78b7ff; outline-offset: 3px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
nav { display: flex; gap: 22px; font-weight: 800; font-size: 14px; }
.phone { color: var(--blue-dark); font-weight: 900; font-size: 20px; white-space: nowrap; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--blue-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  padding: 56px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 38%, rgba(255,255,255,0.26) 68%, rgba(255,255,255,0.03) 100%),
    url("assets/hero-vehicle-clean.jpg") center right / cover no-repeat;
}
.hero-copy { width: min(680px, 100%); }
.kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--blue-dark); line-height: 1.12; }
h1 { font-size: clamp(42px, 5.3vw, 72px); }
h2 { font-size: clamp(30px, 3.4vw, 46px); }
h3 { font-size: 22px; }
.hero p:not(.kicker) { max-width: 610px; font-size: 20px; color: #2a3649; }
.actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn, .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8,47,99,0.14);
}
.btn { padding: 14px 24px; border-radius: 8px; }
.primary { background: var(--red); }
.icon-btn {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(8,47,99,0.12);
}
.icon-btn img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.facts span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(11,79,159,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  color: var(--blue-dark);
  box-shadow: 0 10px 26px rgba(8,47,99,0.08);
}
.facts b { display: block; color: var(--red); font-size: 21px; line-height: 1.15; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--blue-dark);
}
.proof-strip article {
  min-height: 112px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
}
.proof-strip b { display: block; font-size: 18px; }
.proof-strip span { display: block; margin-top: 6px; color: rgba(255,255,255,0.78); }

.section { padding: 78px clamp(18px, 4vw, 56px); }
.section-title { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
}
.route-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--blue-dark);
  font-weight: 900;
}
.vehicles {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
  background: var(--soft);
}
.vehicle-copy p { color: var(--muted); font-size: 18px; }
.vehicle-copy ul { margin: 24px 0 0; padding: 0; list-style: none; }
.vehicle-copy li { margin: 12px 0; padding-left: 26px; position: relative; }
.vehicle-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.photo-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.photo-grid .wide { grid-column: span 2; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}
.price-cards article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 36px rgba(8,47,99,0.08);
}
.price { margin: 14px 0; color: var(--red); font-size: 34px; font-weight: 900; }
.price-cards p:not(.price) { color: var(--muted); }

.faq-contact {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 0.75fr);
  gap: 34px;
  background: var(--soft);
}
details { padding: 17px 0; border-bottom: 1px solid var(--line); }
summary { color: var(--blue-dark); font-weight: 900; cursor: pointer; }
details p { color: var(--muted); }
.booking {
  align-self: start;
  padding: 32px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.big-phone { display: inline-block; margin-top: 18px; color: var(--blue); font-size: 34px; font-weight: 900; }
.footer {
  display: grid;
  gap: 6px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255,255,255,0.78);
  background: var(--blue-dark);
}
.footer strong { color: white; font-size: 22px; }
.mobile-actions { display: none; }

@media (max-width: 1080px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 16px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    font-weight: 800;
    font-size: 15px;
    color: var(--blue-dark);
  }
  .proof-strip, .route-grid, .price-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicles, .faq-contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: 70px; }
  .topbar { padding: 12px 16px; }
  .phone { display: none; }
  .brand-logo { height: 38px; }
  .hero {
    min-height: 820px;
    align-items: flex-start;
    padding: 34px 16px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 46%, rgba(255,255,255,0.22) 72%, rgba(255,255,255,0.04) 100%),
      url("assets/hero-vehicle-clean.jpg") 54% bottom / auto 55% no-repeat,
      white;
  }
  h1 { font-size: 38px; }
  .hero p:not(.kicker) { font-size: 18px; }
  .facts, .proof-strip, .route-grid, .price-cards { grid-template-columns: 1fr; }
  .section { padding: 56px 16px; }
  .section-title { text-align: left; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid .wide { grid-column: span 1; }
  .photo-grid img { height: auto; }
  .big-phone { font-size: 28px; }
  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 58px 58px;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--line);
  }
  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 50px;
    border-radius: 8px;
    background: var(--red);
    color: white;
    font-weight: 900;
  }
  .mobile-actions a:not(:first-child) { background: white; border: 1px solid var(--line); }
  .mobile-actions img { width: 42px; height: 42px; object-fit: contain; }
}
