:root {
  --color-blue: #00378f;
  --color-blue-strong: #002c73;
  --color-blue-soft: #e9f0ff;
  --color-red: #e51d2a;
  --color-ink: #172033;
  --color-muted: #5b6575;
  --color-line: #dfe5ef;
  --color-surface: #ffffff;
  --color-page: #f4f7fb;
  --shadow-soft: 0 16px 40px rgba(23, 32, 51, 0.12);
  --shadow-small: 0 8px 22px rgba(23, 32, 51, 0.1);
  --radius: 8px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--color-ink);
  color: var(--color-surface);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 240px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--color-blue-strong);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 32px 2px 30px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 3px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-blue);
  border-left: 1px solid var(--color-line);
}

.header-phone svg,
.header-mail svg,
.button svg,
.service-list svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-blue);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-line {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 31%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.14) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 25%, rgba(255, 255, 255, 0.92) 43%, rgba(255, 255, 255, 0.2) 72%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(244, 247, 251, 0.92) 0%, rgba(244, 247, 251, 0) 32%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 72px 0 96px;
}

.hero-copy {
  width: min(540px, 100%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--color-blue-strong);
  font-size: 58px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-lead {
  margin-bottom: 18px;
  color: var(--color-ink);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-text {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 17px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 18px 28px;
  margin: 26px 0 0;
}

.hero-facts div {
  padding-left: 14px;
  border-left: 3px solid var(--color-red);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: var(--color-blue-strong);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.header-phone:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(229, 29, 42, 0.38);
  outline-offset: 3px;
}

.button-primary {
  background: var(--color-blue);
  color: var(--color-surface);
  box-shadow: var(--shadow-small);
}

.button-primary:hover {
  background: var(--color-blue-strong);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  background: var(--color-surface);
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.button-secondary:hover {
  background: var(--color-blue-soft);
}

.button-map {
  background: var(--color-page);
  color: var(--color-blue-strong);
  border-color: var(--color-line);
}

.button-map:hover {
  background: var(--color-blue-soft);
  border-color: rgba(0, 55, 143, 0.3);
}

.service-strip {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.service-strip-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 128px;
  padding: 24px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-kicker {
  border-right: 1px solid var(--color-line);
  padding-right: 24px;
}

.section-kicker h2,
.section-heading h2,
.story-grid h2,
.conditions-grid h2,
.contact-copy h2 {
  margin-bottom: 12px;
  color: var(--color-blue-strong);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 850;
}

.section-kicker h2 {
  font-size: 27px;
}

.section-kicker p,
.section-heading p,
.conditions-grid p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.service-list svg,
.service-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--color-blue);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 7px;
  font-size: 29px;
  font-weight: 850;
  line-height: 1;
}

.section {
  padding: 92px 0;
}

.story-section {
  background: var(--color-page);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.story-grid p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 18px;
}

.story-note {
  padding: 30px;
  border-left: 4px solid var(--color-red);
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.story-note strong,
.story-note span {
  display: block;
}

.story-note strong {
  margin-bottom: 10px;
  color: var(--color-blue-strong);
  font-size: 22px;
  line-height: 1.2;
}

.story-note span {
  color: var(--color-muted);
}

.tariff-section {
  color: var(--color-surface);
  background:
    linear-gradient(135deg, rgba(0, 55, 143, 0.96), rgba(0, 38, 103, 0.99)),
    radial-gradient(circle at 90% 15%, rgba(229, 29, 42, 0.22), transparent 30%);
}

.tariff-section .section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.tariff-section .section-heading h2,
.tariff-section .section-heading p {
  color: var(--color-surface);
}

.tariff-section .section-heading p {
  max-width: 420px;
  opacity: 0.78;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.24);
}

.fleet-card {
  display: grid;
  align-content: start;
  min-height: 438px;
  padding: 26px;
  background: rgba(0, 32, 86, 0.68);
}

.fleet-card img {
  width: 150px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 24px;
  image-rendering: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.25));
}

.fleet-card h3 {
  margin-bottom: 8px;
  color: var(--color-surface);
  font-size: 22px;
  line-height: 1.2;
}

.fleet-card p,
.fleet-card span,
.fleet-card dd,
.fleet-card dt {
  color: rgba(255, 255, 255, 0.78);
}

.fleet-card p {
  margin-bottom: 14px;
}

.fleet-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-surface);
  font-size: 40px;
  line-height: 1;
}

.fleet-card span {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.fleet-card dl {
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fleet-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.fleet-card dt,
.fleet-card dd {
  margin: 0;
  font-size: 14px;
}

.fleet-card dd {
  font-weight: 800;
  color: var(--color-surface);
}

.tariff-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 34px;
}

.tariff-details > div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
}

.tariff-details h3 {
  margin-bottom: 18px;
  color: var(--color-surface);
  font-size: 22px;
}

.check-list,
.plain-list,
.condition-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--color-red);
}

.conditions-section {
  background: var(--color-surface);
}

.conditions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: center;
}

.condition-list {
  margin-top: 26px;
}

.condition-list li {
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
}

.condition-list strong {
  color: var(--color-blue-strong);
}

.payment-panel {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 34px;
  background: var(--color-page);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.payment-panel span {
  color: var(--color-blue-strong);
  font-size: 18px;
  font-weight: 850;
}

.payment-panel img {
  width: 260px;
  height: auto;
}

.contact-section {
  background: linear-gradient(180deg, var(--color-page), #edf2f8);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 40px;
  align-items: stretch;
}

.contact-copy {
  padding: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.contact-copy p {
  margin-bottom: 26px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: var(--color-muted);
  font-style: normal;
}

.contact-list span {
  display: grid;
  gap: 2px;
}

.contact-list strong {
  color: var(--color-blue-strong);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-list a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 55, 143, 0.28);
  text-underline-offset: 3px;
}

.contact-list a:hover {
  color: var(--color-blue);
  text-decoration-color: currentColor;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  background: var(--color-surface);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  background: var(--color-blue-strong);
  color: var(--color-surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.footer-inner span,
.footer-inner a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-inner a:hover {
  color: var(--color-surface);
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 18px;
  }

  .brand img {
    width: 202px;
  }

  .site-nav {
    gap: 18px;
  }

  .header-phone {
    font-size: 16px;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    min-height: 610px;
  }

  .service-strip-inner {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conditions-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    height: var(--header-height);
  }

  .brand img {
    width: 188px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 12px 20px 22px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-small);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .header-phone,
  .header-mail {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--color-surface);
  }

  .hero-media {
    position: relative;
    height: 320px;
    order: 1;
  }

  .hero-media::after {
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 42%);
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 46px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .service-strip {
    margin-top: -36px;
  }

  .service-strip-inner {
    padding: 22px;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 68px 0;
  }

  .story-grid,
  .tariff-details {
    grid-template-columns: 1fr;
  }

  .tariff-section .section-heading {
    display: block;
  }

  .tariff-section .section-heading p {
    max-width: none;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 158px;
  }

  .hero-media {
    height: 188px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-inner {
    padding: 34px 0 28px;
  }

  .hero-text {
    margin-bottom: 24px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .hero-facts div {
    padding-left: 10px;
  }

  .hero-facts dt {
    font-size: 11px;
  }

  .hero-facts dd {
    font-size: 12px;
    line-height: 1.25;
  }

  .service-list,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    min-height: auto;
    grid-template-columns: 108px 1fr;
    gap: 18px;
    padding: 22px;
  }

  .fleet-card img {
    width: 108px;
    height: 86px;
    margin-bottom: 0;
  }

  .fleet-card strong {
    font-size: 34px;
  }

  .section-kicker h2,
  .section-heading h2,
  .story-grid h2,
  .conditions-grid h2,
  .contact-copy h2 {
    font-size: 28px;
  }

  .story-note,
  .tariff-details > div,
  .contact-copy,
  .payment-panel {
    padding: 24px;
  }

  .payment-panel img {
    width: 220px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
