:root {
  --ink: #07101c;
  --ink-2: #0b1727;
  --panel: #101e30;
  --white: #ffffff;
  --paper: #f4f7fb;
  --text: #182435;
  --muted: #69778a;
  --line: rgba(20, 44, 72, 0.14);
  --blue: #1684ff;
  --blue-light: #75c7ff;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 22px 60px rgba(3, 12, 24, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
.container { width: min(var(--max), 92%); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  background: rgba(5, 13, 24, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-light);
  border: 2px solid var(--blue);
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  transform: skew(-9deg);
  box-shadow: 0 0 24px rgba(22, 132, 255, 0.24);
}
.brand strong,
.brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: 0.07em; }
.brand small { color: #aebbd0; font-size: 8px; letter-spacing: 0.17em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.nav-call) {
  color: #dce6f3;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.main-nav > a:hover { color: var(--white); }
.nav-call {
  padding: 10px 17px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.language-switch { display: flex; align-items: center; gap: 6px; color: #718299; }
.lang {
  padding: 4px 2px;
  color: #8f9db0;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.lang.active { color: var(--blue-light); }
.menu-button { display: none; padding: 8px; background: transparent; border: 0; cursor: pointer; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--white); }

.hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-image,
.hero-shade { position: absolute; inset: 0; }
.hero-image {
  background: url("hero-truck-v2.webp") 66% center / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.96) 0%, rgba(5, 13, 24, 0.89) 35%, rgba(5, 13, 24, 0.48) 60%, rgba(5, 13, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 13, 24, 0.82), transparent 36%);
}
.hero-content { position: relative; z-index: 2; padding: 150px 0 110px; }
.hero-content > * { max-width: 670px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #0871dc; }
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2 { font-family: "Oswald", Arial, sans-serif; font-weight: 600; text-transform: uppercase; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(56px, 7.3vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
h1 span { color: var(--blue); }
.hero-copy { margin-bottom: 30px; color: #d2dbe8; font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); background: #2b90ff; }
.button-ghost { background: rgba(5, 13, 24, 0.34); border-color: rgba(255, 255, 255, 0.45); }
.trust-row {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-row span {
  padding: 22px 20px;
  color: #dce5f2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.trust-row span + span { border-left: 1px solid rgba(255, 255, 255, 0.15); }

.section { padding: 105px 0; }
.section-light { background: var(--paper); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(22, 132, 255, 0.11), transparent 28%),
    var(--ink);
}
.section-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 8vw; align-items: start; }
.section-intro { position: sticky; top: 120px; }
h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.018em;
}
.section-intro > p:not(.eyebrow),
.section-heading > p { color: var(--muted); font-size: 17px; }
.text-link {
  display: inline-block;
  margin-top: 10px;
  color: #0871dc;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.opportunity-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.opportunity-list article:last-child { border-bottom: 1px solid var(--line); }
.number { color: #1684ff; font-family: "Oswald", sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.1em; }
.opportunity-list h3 { margin-bottom: 8px; font-size: 23px; }
.opportunity-list p { margin-bottom: 0; color: var(--muted); }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 8px; color: #9eacbe; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-card.featured { border-color: rgba(22, 132, 255, 0.56); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--blue-light);
}
.service-icon svg { width: 48px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 34px 0 10px; font-size: 25px; }
.service-card p { margin-bottom: 0; color: #a9b6c7; }

.application-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 132, 255, 0.08), transparent 26%),
    var(--paper);
}
.application-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 7vw;
  align-items: start;
}
.application-copy { position: sticky; top: 120px; }
.application-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.privacy-note {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 17px;
  color: #44566d;
  background: #e9f3ff;
  border: 1px solid rgba(22, 132, 255, 0.17);
  border-radius: 10px;
}
.privacy-note svg { width: 24px; fill: none; stroke: #0871dc; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note p { margin: 0; font-size: 12px; }
.application-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.application-form > label,
.field-row label { display: block; margin-bottom: 17px; color: #34445a; font-size: 12px; font-weight: 700; }
.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid #cdd6e2;
  border-radius: 7px;
  outline: none;
}
.application-form textarea { resize: vertical; }
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22, 132, 255, 0.1); }
.application-form fieldset { margin: 0 0 18px; padding: 0; border: 0; }
.application-form legend { margin-bottom: 9px; color: #34445a; font-size: 12px; font-weight: 700; }
.checkbox-row { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: #43536a;
  background: #f8fafc;
  border: 1px solid #d4dce7;
  border-radius: 7px;
  font-size: 12px;
  cursor: pointer;
}
.checkbox-row input,
.consent input { width: auto; margin: 0; accent-color: var(--blue); }
.application-form .consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  align-items: start;
  margin: 4px 0 18px;
  font-weight: 500;
  line-height: 1.45;
}
.application-button { width: 100%; }
.form-note { display: block; margin-top: 10px; color: var(--muted); font-size: 10px; text-align: center; }

.contact { color: var(--white); background: #0c75e8; }
.contact-inner { min-height: 310px; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; padding-block: 60px; }
.contact .eyebrow { color: #d9efff; }
.contact h2 { margin-bottom: 0; }
.contact-actions { display: grid; gap: 12px; }
.contact-actions a {
  display: block;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9px;
  text-decoration: none;
  transition: background 160ms ease;
}
.contact-actions a:hover { background: rgba(255, 255, 255, 0.18); }
.contact-actions small { display: block; margin-bottom: 3px; color: #d8ecff; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-actions strong { font-size: clamp(15px, 2vw, 20px); overflow-wrap: anywhere; }

.site-footer { padding: 42px 0; color: #9cabbf; background: #050c16; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.footer-brand { grid-row: span 2; }
.footer-inner p { margin: 0; font-size: 12px; text-align: right; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 4% 28px;
    background: #07101c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav.open { display: flex; }
  .language-switch { justify-content: flex-start; }
  .nav-call { text-align: center; }
  .section-grid,
  .section-heading,
  .application-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .section-intro,
  .application-copy { position: static; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .contact-inner { padding-block: 70px; }
}

@media (max-width: 640px) {
  .brand small { display: none; }
  .hero { min-height: 720px; }
  .hero-image { background-position: 69% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 13, 24, 0.93), rgba(5, 13, 24, 0.52)),
      linear-gradient(0deg, rgba(5, 13, 24, 0.9), transparent 42%);
  }
  .hero-content { padding-top: 130px; padding-bottom: 160px; }
  h1 { font-size: clamp(49px, 15.5vw, 68px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row span { padding: 10px; font-size: 10px; }
  .trust-row span + span { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(38px, 12vw, 52px); }
  .opportunity-list article { grid-template-columns: 43px 1fr; gap: 12px; }
  .service-card { padding: 30px 26px; }
  .application-form { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-row: auto; }
  .footer-inner p { text-align: left; }
}

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