:root {
  --black: #071527;
  --black-2: #0b1f3a;
  --navy: #0b1f3a;
  --gold: #d4a63d;
  --gold-2: #e3c46b;
  --text: #111827;
  --muted: #5f6673;
  --line: #e6e2db;
  --paper: #fff;
  --soft: #f8f6f1;
  --shadow: 0 22px 52px rgba(11, 31, 58, 0.11);
  --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-size: 17px;
  line-height: 1.7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

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

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

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  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.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

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

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

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  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;
  color: var(--black);
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.025em;
}

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

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

.primary-nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: #a8771f;
}

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

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

.language-switch a:hover {
  color: #a8771f;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  justify-content: flex-start;
  overflow: hidden;
  background: #000;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.32) 62%, rgba(0, 0, 0, 0.08) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin-left: 0;
  padding: 120px 0 82px clamp(72px, 8vw, 150px);
  color: #fff;
}

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

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.eyebrow.dark {
  color: #a8771f;
}

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

h1 {
  margin-bottom: 28px;
  max-width: 700px;
  font-size: clamp(42px, 4.1vw, 56px);
  line-height: 1.16;
  font-weight: 820;
  letter-spacing: -0.012em;
}

.hero-content h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(42px, 3.6vw, 56px);
  line-height: 1.14;
}

.hero-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.6;
}

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

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

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

.button-gold {
  color: #111;
  background: var(--gold);
  box-shadow: 0 16px 35px rgba(212, 166, 61, 0.24);
}

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

.button-light {
  color: #111;
  background: #fff;
}

.button-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  padding: 104px 0;
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.section-heading h2,
.fleet-copy h2,
.cta-card h2,
.page-content h1 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

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

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

.service-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 166, 61, 0.45);
  box-shadow: 0 22px 48px rgba(11, 31, 58, 0.095);
}

.icon-badge {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  border: 1px solid rgba(212, 166, 61, 0.35);
  border-radius: 999px;
  background: var(--navy);
}

.service-card h3,
.why-item h3 {
  margin-bottom: 9px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 760;
}

.dark-section {
  color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #0f1a2b;
}

.dark-section .section-heading h2,
.dark-section .why-item h3 {
  color: #fff;
}

.dark-section .section-heading p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .why-item p {
  color: rgba(255, 255, 255, 0.68);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.why-item svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold);
  font-size: 24px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 38px;
}

.fleet-media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.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(--black);
  font-size: 18px;
  font-weight: 760;
}

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

.check-list li small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

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

.coverage-section {
  background: var(--soft);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.coverage-grid strong {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: #fff;
  color: var(--black);
  font-size: clamp(21px, 2vw, 34px);
  font-weight: 800;
}

.trust-section {
  padding-top: 88px;
}

.trust-heading {
  margin-bottom: 26px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: #fff;
  color: var(--black);
  font-weight: 760;
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.045);
}

.trust-item svg {
  color: var(--gold);
}

.cta-section {
  padding: 34px 0 104px;
  background: #fff;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(212, 166, 61, 0.18), rgba(212, 166, 61, 0) 38%),
    linear-gradient(135deg, #081426 0%, #0b1f3a 100%);
  box-shadow: var(--shadow);
}

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

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

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

.site-footer {
  padding: 42px 0 18px;
  border-top: 1px solid rgba(17, 17, 17, 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(17, 17, 17, 0.1);
  color: #737373;
  font-size: 12px;
}

.page-content {
  min-height: 55vh;
  padding: 80px 0;
}

.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) {
  .split-grid,
  .fleet-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .coverage-grid,
  .trust-row {
    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 {
    flex: 1 1 100%;
  }

  .primary-nav {
    order: 4;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    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 {
    min-height: 720px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.8) 100%);
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-content {
    max-width: min(100%, 620px);
    padding: 116px 0 58px clamp(40px, 7vw, 72px);
  }

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

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

  .section {
    padding: 66px 0;
  }

  h1 {
    max-width: 620px;
    font-size: clamp(34px, 5.5vw, 42px);
    line-height: 1.17;
  }

  .hero-content h1 {
    max-width: 620px;
    line-height: 1.16;
    font-size: clamp(34px, 5.2vw, 42px);
  }

  .card-grid.three,
  .why-grid,
  .coverage-grid,
  .trust-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 26px;
  }

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

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

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

  h1 {
    max-width: 360px;
    margin-bottom: 24px;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.16;
  }

  .hero-content h1 {
    max-width: 360px;
    margin-bottom: 24px;
    font-size: clamp(30px, 8.4vw, 34px);
  }
}
