:root {
  --ink: #101114;
  --ink-soft: #202329;
  --paper: #ffffff;
  --surface: #f4f5f6;
  --surface-strong: #e8eaed;
  --muted: #62666c;
  --line: #d9dce0;
  --gold: #d8ad34;
  --gold-light: #efca64;
  --gold-dark: #765500;
  --danger: #b42318;
  --success: #19703e;
  --radius: 8px;
  --header-height: 76px;
  --content-width: 1240px;
  --shadow: 0 18px 45px rgba(16, 17, 20, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: 46px;
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--ink-soft);
  color: var(--paper);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--paper);
}

.button-outline:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(9, 10, 12, 0.82), transparent);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(12, 13, 15, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--content-width));
  height: 100%;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: 164px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  overflow: hidden;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--gold-light);
}

.header-cta {
  min-height: 42px;
  padding: 10px 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--paper);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  align-items: end;
  background: #111;
  color: var(--paper);
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 58%;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.9) 0%, rgba(6, 7, 8, 0.68) 46%, rgba(6, 7, 8, 0.16) 76%),
    linear-gradient(0deg, rgba(6, 7, 8, 0.82) 0%, transparent 42%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
  padding-top: 148px;
  padding-bottom: 50px;
}

.hero-copy {
  max-width: 790px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 34px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 66px;
  font-weight: 780;
  line-height: 1.01;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-summary {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 19px;
  line-height: 1.65;
}

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

.hero-stats {
  display: grid;
  width: 340px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stat {
  min-width: 0;
  padding: 18px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.hero-stat:first-child {
  border-left: 0;
}

.hero-stat strong {
  display: block;
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.partner-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.partner-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 32s linear infinite;
}

.partner-set {
  display: flex;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
  gap: 58px;
  padding: 28px 34px;
}

.partner-logo {
  width: auto;
  max-width: 170px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
}

@keyframes partner-scroll {
  to {
    transform: translateX(-50%);
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 86px;
}

.intro-copy .section-body {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-lines {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.feature-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-line strong {
  color: var(--gold-dark);
  font-size: 19px;
}

.feature-line h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.3;
}

.feature-line p {
  margin: 0;
  color: var(--muted);
}

.intro-visual {
  position: relative;
  min-height: 620px;
}

.intro-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  background: var(--surface);
}

.intro-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(88%, 480px);
  padding: 26px 30px;
  border-left: 4px solid var(--gold);
  background: rgba(16, 17, 20, 0.94);
  color: var(--paper);
}

.intro-caption p {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}

.services {
  background: var(--surface);
}

.services-header,
.fleet-header,
.video-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.services-header .section-intro,
.fleet-header .section-intro,
.video-header .section-intro {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #b9bdc2;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eceeef;
}

.service-content {
  padding: 25px 25px 28px;
}

.service-number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
}

.service-content h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.service-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.video-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.video-section .section-kicker {
  color: var(--gold-light);
}

.video-section .section-intro {
  color: rgba(255, 255, 255, 0.68);
}

.video-grid {
  display: grid;
  max-width: 1020px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 52px auto 0;
}

.video-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #050505;
}

.video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050505;
}

.video-item figcaption {
  padding: 15px 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.fleet-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 180ms ease, transform 180ms ease;
}

.fleet-card:hover {
  border-color: #adb1b7;
  transform: translateY(-3px);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
}

.fleet-card-content {
  min-height: 154px;
  padding: 20px;
}

.fleet-brand {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.fleet-card h3 {
  margin: 7px 0 0;
  font-size: 19px;
  line-height: 1.25;
}

.fleet-spec {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.why-section {
  background: var(--ink-soft);
  color: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
}

.why-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.why-section .section-kicker {
  color: var(--gold-light);
}

.why-section .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.why-contact {
  display: grid;
  gap: 8px;
  margin-top: 35px;
}

.why-contact a {
  width: fit-content;
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 750;
  text-decoration: none;
}

.why-contact span {
  color: rgba(255, 255, 255, 0.7);
}

.why-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.why-number {
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 850;
}

.why-item h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.why-item p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.process {
  background: var(--paper);
}

.process-header {
  text-align: center;
}

.process-header .section-title,
.process-header .section-intro {
  margin-inline: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-width: 0;
  padding: 30px 26px 34px;
  border-left: 1px solid var(--line);
}

.process-step:first-child {
  border-left: 0;
}

.process-step strong {
  display: block;
  color: var(--gold-dark);
  font-size: 14px;
}

.process-step h3 {
  margin: 20px 0 0;
  font-size: 20px;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  background: #0b0c0e;
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 84px;
  align-items: start;
}

.contact-section .section-kicker {
  color: var(--gold-light);
}

.contact-section .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.contact-direct {
  display: grid;
  gap: 23px;
  margin-top: 38px;
}

.contact-line {
  display: grid;
  gap: 5px;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-line a,
.contact-line strong {
  width: fit-content;
  color: var(--paper);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.contact-line a:hover {
  color: var(--gold-light);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-form-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.contact-form-panel h3 {
  margin: 0 0 25px;
  font-size: 25px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #c8ccd1;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.field input {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
  padding: 12px 13px;
}

.field input:hover,
.field textarea:hover {
  border-color: #92979e;
}

.privacy-field {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.privacy-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-dark);
}

.privacy-field label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-field a {
  color: var(--ink);
  font-weight: 750;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 16px;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.form-feedback.is-success {
  color: var(--success);
}

.form-feedback.is-error {
  color: var(--danger);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-band {
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink-soft);
  color: var(--paper);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 60px;
  align-items: center;
}

.newsletter-copy h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
}

.newsletter-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-fields input[type="email"] {
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.newsletter-fields input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-consent {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 5px;
}

.newsletter-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.newsletter-consent label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.45;
}

.newsletter-consent a {
  color: var(--paper);
}

.newsletter-form .form-feedback {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 42px 0 88px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 60px;
}

.footer-brand {
  width: 174px;
  height: 56px;
  overflow: hidden;
}

.footer-brand img {
  width: 174px;
  height: auto;
}

.footer-copy,
.footer-address {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-heading {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.mobile-action {
  display: none;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal {
  transform: translateY(22px);
}

.reveal-left {
  transform: translateX(-22px);
}

.reveal-right {
  transform: translateX(22px);
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-stats {
    width: min(100%, 440px);
  }

  .intro-grid {
    gap: 50px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .desktop-nav,
  .header-inner > .header-cta {
    display: none;
  }

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

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 13, 15, 0.98);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: var(--paper);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 15px;
    border-bottom: 0;
    color: var(--ink);
  }

  .hero h1 {
    font-size: 54px;
  }

  .intro-grid,
  .why-grid,
  .contact-grid,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    min-height: 520px;
  }

  .intro-visual img {
    height: 520px;
  }

  .services-header,
  .fleet-header,
  .video-header {
    display: block;
  }

  .services-header .section-intro,
  .fleet-header .section-intro,
  .video-header .section-intro {
    margin-top: 20px;
  }

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

  .why-intro {
    position: static;
  }

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

  .process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .contact-grid {
    gap: 50px;
  }

  .newsletter-inner {
    gap: 26px;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .section-intro,
  .intro-copy .section-body {
    font-size: 16px;
  }

  .brand {
    width: 142px;
    height: 46px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 92svh;
  }

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

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(6, 7, 8, 0.86) 0%, rgba(6, 7, 8, 0.5) 100%),
      linear-gradient(0deg, rgba(6, 7, 8, 0.9) 0%, rgba(6, 7, 8, 0.08) 62%);
  }

  .hero-inner {
    gap: 26px;
    padding-top: 112px;
    padding-bottom: 30px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-summary {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

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

  .hero-stats {
    width: 100%;
  }

  .hero-stat {
    padding: 14px 6px;
  }

  .hero-stat strong {
    font-size: 23px;
  }

  .hero-stat span {
    font-size: 9px;
  }

  .partner-set {
    min-width: 720px;
    gap: 38px;
    padding: 22px 24px;
  }

  .partner-logo {
    max-width: 120px;
    height: 32px;
  }

  .intro-grid {
    gap: 38px;
  }

  .intro-visual {
    min-height: 410px;
  }

  .intro-visual img {
    height: 410px;
  }

  .intro-caption {
    width: 94%;
    padding: 20px;
  }

  .intro-caption p {
    font-size: 15px;
  }

  .service-grid,
  .video-grid,
  .fleet-grid,
  .process-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .video-grid,
  .fleet-grid {
    margin-top: 38px;
  }

  .video-grid {
    max-width: 340px;
  }

  .fleet-card-content {
    min-height: 0;
  }

  .why-grid {
    gap: 48px;
  }

  .why-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-step:first-child {
    border-top: 0;
  }

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

  .contact-form-panel {
    padding: 24px 18px;
  }

  .form-grid,
  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .field-full,
  .privacy-field,
  .form-actions,
  .newsletter-consent,
  .newsletter-form .form-feedback {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }

  .newsletter-fields .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .mobile-action {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 8px;
    padding: 9px 12px;
    border-top: 1px solid #2b2d31;
    background: rgba(12, 13, 15, 0.98);
  }

  .mobile-action .button {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .partner-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .partner-set {
    min-width: 0;
    flex-wrap: wrap;
  }

  .partner-set[aria-hidden="true"] {
    display: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
