:root {
  --navy: #0b1f3a;
  --navy-2: #123760;
  --blue: #1f76c2;
  --blue-soft: #e9f4ff;
  --gold: #d4a63d;
  --text: #0b1f3a;
  --muted: #526174;
  --line: #dce4ee;
  --bg: #fff;
  --shadow: 0 22px 55px rgba(11, 31, 58, 0.1);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: #000;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: cover;
}

.brand strong,
.footer-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #2f3c4f;
  font-size: 14px;
  font-weight: 750;
}

.primary-nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-phone {
  white-space: nowrap;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.language-switch a {
  padding: 4px 2px;
}

.language-switch a.active {
  color: var(--navy);
}

.hero {
  padding: 42px 0 58px;
  background: #fff;
}

.hero-card {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  min-height: 680px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(34px, 3.6vw, 56px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  max-width: 720px;
  font-size: clamp(46px, 4.1vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.18);
}

.button-primary:hover {
  background: var(--navy-2);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.18);
}

.button-light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.button-gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(212, 166, 61, 0.2);
}

.button-gold:hover {
  background: #e1b64d;
}

.hero-media {
  min-height: 680px;
}

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

.trust-strip,
.section {
  padding: 54px 0;
  background: #fff;
}

.trust-strip {
  padding-top: 64px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.service-card,
.compliance-card,
.coverage-panel,
.cta-card {
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 31, 58, 0.06);
}

.mini-card,
.service-card {
  min-height: 188px;
  padding: 24px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--navy);
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 999px;
  background: #f6f9fc;
}

.icon-badge.blue {
  color: #fff;
  border-color: transparent;
  background: var(--blue);
}

.mini-card h2,
.service-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

.mini-card p,
.service-card p,
.section-heading p,
.fleet-copy p,
.cta-card p,
.footer-grid p,
.footer-grid address,
.footer-grid div {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 26px;
}

.section-heading.compact {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.coverage-grid h2,
.fleet-copy h2,
.cta-card h2,
.page-content h1 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

.coverage-grid p {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-card {
  min-height: 315px;
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 118, 194, 0.28);
  box-shadow: 0 20px 45px rgba(11, 31, 58, 0.09);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 28px;
}

.coverage-section,
.compliance-section {
  background: #f8fafc;
}

.coverage-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.coverage-panel div {
  padding: 22px;
  border-radius: 14px;
  background: #f8fafc;
}

.coverage-section .coverage-panel div {
  background: #fff;
}

.coverage-panel small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.14;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 34px;
}

.fleet-media {
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 850;
}

.check-list svg {
  color: var(--blue);
}

.compact-grid {
  max-width: 1280px;
  margin-inline: auto;
}

.compliance-section {
  padding-bottom: 70px;
}

.compliance-section .section-heading {
  margin-bottom: 32px;
}

.compliance-section .section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(35px, 3.45vw, 53px);
  font-weight: 900;
}

.compliance-section .section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.compliance-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  min-height: 188px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.compliance-card svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--blue);
  font-size: 27px;
}

.compliance-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.compliance-card small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.cta-section {
  padding: 70px 0 68px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 4vw, 48px);
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(90deg, rgba(212, 166, 61, 0.18), rgba(212, 166, 61, 0) 36%),
    linear-gradient(135deg, #0b1f3a 0%, #123760 100%);
}

.cta-card h2,
.cta-card p,
.cta-card .eyebrow {
  color: #fff;
}

.cta-contact {
  display: grid;
  gap: 10px;
  min-width: 310px;
}

.cta-contact > a:not(.button) {
  color: #fff;
  font-size: 20px;
  font-weight: 850;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.site-footer {
  padding: 42px 0 18px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 36px;
}

.footer-grid a,
.footer-grid address {
  display: block;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  color: #607086;
  font-size: 12px;
}

.page-content {
  min-height: 55vh;
}

.archive-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-card,
  .coverage-grid,
  .fleet-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-card {
    min-height: auto;
  }

  .hero-media img {
    max-height: 560px;
  }

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

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

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

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 100%;
  }

  .primary-nav {
    order: 4;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-top: 8px;
    font-size: 13px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    padding: 6px 0;
  }

  .header-phone {
    order: 2;
    font-size: 13px;
  }

  .language-switch {
    order: 3;
    margin-left: auto;
    font-size: 13px;
  }

  .hero {
    padding: 24px 0 40px;
  }

  .hero-card {
    border-radius: 18px;
  }

  .hero-copy {
    padding: 28px 22px;
    max-width: none;
  }

  h1 {
    font-size: 48px;
    line-height: 1.06;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .button,
  .cta-actions {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .card-grid.four,
  .card-grid.three,
  .coverage-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .section {
    padding: 46px 0;
  }

  .mini-card,
  .service-card {
    min-height: auto;
  }

  .coverage-panel strong {
    font-size: 27px;
  }

  .cta-card {
    padding: 24px;
  }

  .compliance-section {
    padding-bottom: 56px;
  }

  .compliance-section .section-heading {
    margin-bottom: 26px;
  }

  .compliance-section .section-heading h2 {
    font-size: 34px;
  }

  .compliance-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .compliance-card strong {
    font-size: 17px;
  }

  .compliance-card small {
    font-size: 14px;
  }

  .cta-contact {
    min-width: 0;
  }

  .cta-contact > a:not(.button) {
    overflow-wrap: anywhere;
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1280px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
  }

  .brand strong {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .header-phone,
  .language-switch,
  .primary-nav {
    font-size: 12px;
  }

  .hero-copy {
    padding: 26px 18px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-title-line {
    white-space: normal;
  }

  .button {
    min-height: 52px;
    padding-inline: 16px;
  }
}
