:root {
  --blue: #0052cc;
  --blue-dark: #062b63;
  --orange: #ff6b35;
  --orange-dark: #dc4d1d;
  --ink: #182337;
  --muted: #5f6e85;
  --line: #dbe4f0;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --soft-blue: #eaf2ff;
  --shadow: 0 18px 42px rgba(10, 43, 92, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 240, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img,
.footer-brand img {
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-panel a:not(.btn):hover,
.footer-links a:hover,
.footer-social a:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
}

.section,
.section-band {
  padding: 88px 0;
}

.section-band {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 54px;
}

.hero-content,
.coverage-layout,
.section-heading,
.features-grid,
.stats-grid,
.contact-card,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 16px;
  color: #33445f;
  font-size: clamp(1.13rem, 2vw, 1.38rem);
  font-weight: 600;
}

.hero-description,
.section-heading p,
.coverage-content p,
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

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

.btn-small {
  min-height: 42px;
  padding: 11px 16px;
}

.hero-visual {
  min-width: 0;
}

.route-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(0, 82, 204, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 107, 53, 0.16), transparent 24%),
    radial-gradient(circle at 78% 22%, rgba(0, 82, 204, 0.16), transparent 22%),
    linear-gradient(145deg, #ffffff 0%, #eaf2ff 100%);
  box-shadow: var(--shadow);
}

.route-map {
  position: absolute;
  inset: 28px;
  overflow: hidden;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(0, 82, 204, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 204, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.route-line {
  position: absolute;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform-origin: left center;
}

.route-one {
  width: 68%;
  left: 13%;
  top: 45%;
  transform: rotate(-18deg);
}

.route-two {
  width: 56%;
  left: 24%;
  top: 61%;
  transform: rotate(23deg);
}

.pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(6, 43, 99, 0.25);
}

.pin-a {
  left: 12%;
  top: 40%;
}

.pin-b {
  right: 14%;
  top: 27%;
  background: var(--blue);
}

.pin-c {
  left: 28%;
  bottom: 26%;
}

.pin-d {
  right: 24%;
  bottom: 18%;
  background: var(--blue);
}

.vehicle {
  position: absolute;
  z-index: 3;
  right: 22%;
  top: 43%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 18px 32px rgba(255, 107, 53, 0.28);
}

.vehicle svg {
  width: 54px;
  height: 54px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 4;
}

.route-status {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font-weight: 800;
}

.route-status strong {
  color: var(--orange);
  font-size: 1.55rem;
}

.section-heading {
  max-width: 780px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feature-card,
.service-panel,
.stat,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(10, 43, 92, 0.08);
}

.feature-card {
  min-height: 230px;
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  font-size: 1.65rem;
}

.feature-card p,
.service-panel p,
.stat p {
  color: var(--muted);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 44px;
}

.coverage-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.coverage-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.region-list li {
  min-height: 56px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #33445f;
  font-weight: 700;
}

.services .section-heading {
  margin-bottom: 36px;
}

.service-panel {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stats {
  background: var(--blue-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  min-height: 184px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.stat p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: 36px;
  padding: 42px;
  background:
    linear-gradient(120deg, rgba(0, 82, 204, 0.07), rgba(255, 107, 53, 0.08)),
    #fff;
}

.contact-card h2 {
  max-width: 700px;
}

.contact-info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-info a:not(.btn),
.contact-info span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
}

.site-footer {
  padding: 36px 0;
  background: #081b3a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand img {
  width: 76px;
  height: 54px;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.footer-inner p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.legal-hero {
  padding-top: 72px;
}

.legal-hero-inner,
.legal-layout {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.68fr);
  align-items: start;
  gap: 24px;
}

.legal-intro h1 {
  max-width: 760px;
}

.legal-lead {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.legal-updated {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: 0.96rem;
  font-weight: 700;
}

.legal-summary,
.policy-toc,
.policy-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(10, 43, 92, 0.08);
}

.legal-summary {
  padding: 24px;
}

.legal-summary h2 {
  margin-bottom: 14px;
  font-size: 1.34rem;
}

.legal-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-summary li + li {
  margin-top: 10px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.policy-toc {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.policy-toc p {
  margin-bottom: 12px;
}

.policy-toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 700;
}

.policy-toc a:hover {
  color: var(--orange);
}

.policy-toc a:last-child {
  border-bottom: 0;
}

.policy-copy {
  padding: 34px;
}

.policy-copy section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.policy-copy section {
  scroll-margin-top: 110px;
}

.policy-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.policy-copy h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
}

.policy-copy ul {
  margin: 0;
  padding-left: 18px;
}

.policy-copy li + li {
  margin-top: 8px;
}

.policy-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--soft);
}

.policy-contact {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.policy-contact a:not(.btn) {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-content,
  .coverage-layout,
  .contact-card,
  .service-panel,
  .legal-hero-inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .features-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-panel {
    width: min(720px, calc(100% - 32px));
  }

  .policy-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 70px);
    padding: 24px 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel .btn {
    margin-top: 14px;
  }

  .section,
  .section-band {
    padding: 64px 0;
  }

  .hero-content {
    gap: 36px;
  }

  .hero-actions,
  .hero-actions .btn,
  .coverage-content .btn,
  .contact-info .btn,
  .service-panel .btn {
    width: 100%;
  }

  .route-card {
    min-height: 340px;
  }

  .vehicle {
    width: 70px;
    height: 70px;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px;
  }

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

@media (max-width: 520px) {
  .brand img {
    width: 78px;
    height: 56px;
  }

  h1 {
    font-size: clamp(2.32rem, 13vw, 3.4rem);
  }

  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .stat {
    min-height: auto;
  }

  .policy-copy {
    padding: 24px;
  }

  .route-status {
    align-items: flex-start;
    flex-direction: column;
  }
}
