/* ==========================================================================
   Gold Standard Transport Inc — main stylesheet
   Palette drawn from the company logo: gold #c8961e, blue #2e9bd6 → #1b2f8a
   ========================================================================== */

:root {
  --gold: #c8961e;
  --gold-light: #e8b93a;
  --gold-dark: #a87d10;
  --blue: #2e9bd6;
  --navy: #0b1729;
  --navy-2: #122641;
  --navy-3: #1a3357;
  --ink: #1c2532;
  --ink-soft: #4c5a6e;
  --paper: #f7f8fa;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow: 0 18px 45px rgba(11, 23, 41, 0.14);
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) - 1px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.text-gold { color: var(--gold); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(200, 150, 30, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 30px rgba(200, 150, 30, 0.5); }

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-3); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11, 23, 41, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 23, 41, 0.92);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  background: var(--white);
  padding: 7px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links > a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.nav-links > a:hover { color: var(--gold-light); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--gold-light) !important;
  white-space: nowrap;
}

.btn-nav { padding: 10px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1424 0%, var(--navy) 55%, #0d1b30 100%);
  padding: calc(var(--nav-h) + 48px) 0 0;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.hero-glow-gold {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(200, 150, 30, 0.35), transparent 65%);
  top: -160px; right: -120px;
}
.hero-glow-blue {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(46, 155, 214, 0.28), transparent 65%);
  bottom: -220px; left: -180px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero-content { position: relative; text-align: center; padding-bottom: 40px; }

.hero h1 {
  font-size: clamp(2.9rem, 7.5vw, 5.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Animated highway ---------- */
.highway { position: relative; margin-top: auto; }

.truck {
  position: relative;
  width: clamp(150px, 20vw, 220px);
  margin-bottom: -6px;
  animation: truck-drive 14s linear infinite;
  will-change: transform;
}
@keyframes truck-drive {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(calc(100vw + 10%)); }
}

.road {
  height: 34px;
  background: #060d18;
  border-top: 2px solid #22344e;
  position: relative;
  overflow: hidden;
}
.lane-lines {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 4px;
  transform: translateY(-50%);
  background-image: linear-gradient(90deg, var(--gold) 0 44px, transparent 44px 100px);
  background-size: 100px 4px;
  animation: lane-scroll 1.1s linear infinite;
}
@keyframes lane-scroll {
  from { transform: translate(0, -50%); }
  to   { transform: translate(-100px, -50%); }
}

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 55%, var(--gold-light));
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(11, 23, 41, 0.72);
  line-height: 1.45;
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 104px 0; }

.section-light { background: var(--paper); }
.section-dark { background: linear-gradient(180deg, var(--navy) 0%, #0d1d35 100%); color: var(--white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2, .req-intro h2, .apply-intro h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
}
.section-light h2 { color: var(--navy); }

.section-sub { margin-top: 16px; font-size: 1.05rem; }
.section-light .section-sub { color: var(--ink-soft); }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   About us
   ========================================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 7fr 6fr;
  gap: 64px;
  align-items: center;
}

.about-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 24px;
}
.about-copy > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-copy > p strong { color: var(--gold-light); font-weight: 600; }

.about-punch {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light) !important;
  font-size: 1.06rem !important;
}

/* ---------- Company story ---------- */
.about-story {
  max-width: 860px;
  margin: 60px auto 0;
  display: grid;
  gap: 18px;
}
.about-story p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.04rem;
  line-height: 1.75;
}
.about-story strong { color: var(--gold-light); font-weight: 600; }

/* ---------- Meet the Fleet ---------- */
.fleet { margin-top: 64px; }
.fleet-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.fleet-head h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  white-space: nowrap;
}
.fleet-rule {
  height: 1px;
  width: min(140px, 16vw);
  background: linear-gradient(90deg, transparent, rgba(200, 150, 30, 0.6));
}
.fleet-rule:last-child { background: linear-gradient(90deg, rgba(200, 150, 30, 0.6), transparent); }
.fleet-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
  margin: 14px auto 34px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.fleet-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 23, 41, 0.35));
  pointer-events: none;
}
.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.fleet-item:hover img { transform: scale(1.06); }

/* ---------- Editorial zigzag story ---------- */
.zigzag {
  margin-top: 72px;
  display: grid;
  gap: 44px;
}
.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.zz-reverse .zz-media { order: 2; }
.zz-reverse .zz-text { order: 1; }

.zz-media {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}
.zz-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 23, 41, 0.35));
  pointer-events: none;
}
.zz-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.zz-media:hover img { transform: scale(1.05); }

.zz-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.zz-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.zz-text h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.zz-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.75;
}
.zz-text strong { color: var(--gold-light); font-weight: 600; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 76px;
}
.about-value {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.about-value svg { width: 26px; height: 26px; fill: var(--gold); margin-bottom: 12px; }
.about-value h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 5px; }
.about-value p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.62); }

/* ---------- Dot map of the USA ---------- */
.about-map-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 22px;
}
.about-map-card svg { width: 100%; height: auto; display: block; }

.map-dot { fill: rgba(139, 170, 208, 0.38); }
.map-hub {
  fill: var(--gold-light);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.5;
}
.map-ring {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  animation: map-pulse 2.6s ease-out infinite;
}
@keyframes map-pulse {
  0%   { r: 7;  opacity: 0.9; }
  70%  { r: 22; opacity: 0; }
  100% { r: 22; opacity: 0; }
}

.map-route {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: route-draw 7.8s ease-in-out infinite;
}
@keyframes route-draw {
  0%   { stroke-dashoffset: 1; opacity: 0; }
  8%   { opacity: 0.75; }
  45%  { stroke-dashoffset: 0; opacity: 0.75; }
  60%  { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.map-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.map-caption-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(200, 150, 30, 0.25);
  flex-shrink: 0;
}
.map-caption b { display: block; color: var(--white); font-size: 0.92rem; }
.map-caption span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

@media (prefers-reduced-motion: reduce) {
  .map-ring { display: none; }
  .map-route { animation: none; stroke-dashoffset: 0; opacity: 0.3; }
}

/* ==========================================================================
   Services cards
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 6px 20px rgba(11, 23, 41, 0.07);
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.card-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(200, 150, 30, 0.14), rgba(46, 155, 214, 0.12));
  margin-bottom: 24px;
}
.card-icon svg { width: 34px; height: 34px; }

.card h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; flex: 1; }

.card-tag {
  margin-top: 24px;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-3);
  background: rgba(46, 155, 214, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ==========================================================================
   Why drive with us
   ========================================================================== */
.deal-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(120deg, rgba(200, 150, 30, 0.12), rgba(46, 155, 214, 0.08));
  border: 1px solid rgba(200, 150, 30, 0.35);
  border-radius: var(--radius);
  padding: 44px 48px;
  margin-bottom: 56px;
}

.deal-88 { text-align: center; flex-shrink: 0; }
.deal-88-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.4rem, 9vw, 6.8rem);
  line-height: 0.95;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.deal-88-num span { font-size: 0.5em; }
.deal-88-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--gold-light);
}
.deal-88-text { color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; }
.deal-88-text strong { color: var(--gold-light); }

.perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.perk {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.perk:hover {
  border-color: rgba(200, 150, 30, 0.55);
  background: rgba(200, 150, 30, 0.07);
  transform: translateY(-4px);
}
.perk svg { width: 30px; height: 30px; fill: var(--gold); flex-shrink: 0; }
.perk h4 { font-size: 1.02rem; margin-bottom: 6px; color: var(--white); }
.perk p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); }

.trailer-banner {
  margin-top: 56px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  background:
    repeating-linear-gradient(-45deg, transparent 0 26px, rgba(200,150,30,0.06) 26px 52px),
    linear-gradient(120deg, var(--navy-2), var(--navy-3));
  border: 1px solid rgba(200, 150, 30, 0.45);
  border-radius: var(--radius);
  padding: 40px 44px;
}
.trailer-banner-badge {
  position: absolute;
  top: -14px; left: 40px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 100px;
}
.trailer-banner-body { flex: 1; }
.trailer-banner h3 { color: var(--gold-light); font-size: 1.5rem; margin-bottom: 8px; }
.trailer-banner p { color: rgba(255, 255, 255, 0.75); }

/* ==========================================================================
   Requirements
   ========================================================================== */
.req-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.req-intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.req-intro h2 { color: var(--navy); }
.req-intro .btn { margin-top: 28px; }

.req-list { list-style: none; display: grid; gap: 16px; }
.req-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  box-shadow: 0 4px 14px rgba(11, 23, 41, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.req-list li:hover { transform: translateX(6px); box-shadow: 0 8px 22px rgba(11, 23, 41, 0.1); }

.req-check {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}
.req-list h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 3px; }
.req-list p { color: var(--ink-soft); font-size: 0.92rem; }

/* ==========================================================================
   Apply
   ========================================================================== */
.section-apply {
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(200, 150, 30, 0.14), transparent 65%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(46, 155, 214, 0.12), transparent 65%),
    linear-gradient(180deg, #0d1d35, var(--navy));
  color: var(--white);
}

.apply-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: start;
}

.apply-contacts { margin-top: 36px; display: grid; gap: 16px; }
.apply-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.apply-contact:hover { border-color: rgba(200, 150, 30, 0.55); background: rgba(200, 150, 30, 0.08); }
.apply-contact svg { color: var(--gold); flex-shrink: 0; }
.apply-contact span { display: flex; flex-direction: column; font-weight: 600; overflow-wrap: anywhere; }
.apply-contact small {
  font-weight: 500;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.apply-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid #dde3ea;
  border-radius: 9px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 30, 0.18);
}
.form-field input.invalid,
.form-field select.invalid {
  border-color: #d64545;
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.14);
}

.form-consent { margin-top: -15px; margin-bottom: 20px; }
.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent input.invalid {
  outline: 2px solid #d64545;
  outline-offset: 3px;
  border-radius: 3px;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.form-note.error { color: #d64545; font-weight: 600; }
.form-note.sent { color: #1d8a4e; font-weight: 600; }
.form-note a { color: inherit; text-decoration: underline; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partners-section {
  padding: 60px 0;
  background: #eef2f7;
  border-top: 1px solid rgba(11, 23, 41, 0.08);
  border-bottom: 1px solid rgba(11, 23, 41, 0.08);
}

.partners-head { text-align: center; margin-bottom: 36px; }
.partners-head .eyebrow { margin-bottom: 10px; }
.partners-sub {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 46px;
}
.partners-row img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.partners-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.partners-row img.partner-wide { max-width: 190px; }
.partners-row img.partner-xpo { height: 48px; max-width: 230px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #060d18;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 3fr 3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  box-sizing: content-box;
}
.footer-brand p { font-size: 0.92rem; max-width: 320px; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.social-btn svg {
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 9px;
  background: rgba(200, 150, 30, 0.1);
  border: 1px solid rgba(200, 150, 30, 0.55);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-btn:hover { color: var(--gold-light); }
.social-btn:hover svg {
  border-color: rgba(200, 150, 30, 0.85);
  background: rgba(200, 150, 30, 0.16);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col .btn { margin-top: 6px; color: var(--navy); }
.footer-addr { font-size: 0.92rem; margin-bottom: 10px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 0.84rem;
}
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; row-gap: 4px; }
.footer-authority {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  opacity: 0.85;
}
.footer-authority::before {
  content: "·";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.35);
}
.to-top { color: var(--gold-light); text-decoration: none; }
.to-top:hover { text-decoration: underline; }

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .truck, .lane-lines { animation: none; }
  .truck { transform: translateX(12vw); }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1020px) {
  .perks { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .req-layout, .apply-layout { grid-template-columns: 1fr; gap: 44px; }
  .req-intro { position: static; }
  .about-layout { grid-template-columns: 1fr; gap: 44px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 23, 41, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links > a {
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-links > a:last-child { border-bottom: 0; }
  .btn-nav { margin-top: 14px; justify-content: center; }
}

@media (max-width: 820px) {
  :root { --nav-h: 66px; }

  .nav-logo { padding: 6px 10px; }
  .nav-logo img { height: 32px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }

  .cards { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }

  .deal-hero { flex-direction: column; text-align: center; gap: 24px; padding: 36px 28px; }
  .trailer-banner { flex-direction: column; text-align: center; gap: 20px; }
  .trailer-banner-badge { left: 50%; transform: translateX(-50%); }

  .section { padding: 76px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .apply-form { padding: 30px 24px; }
  .about-values { grid-template-columns: 1fr; }
  .about-map-card { padding: 22px 18px 16px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet { margin-top: 48px; }
  .about-story { margin-top: 44px; }
  .zigzag { margin-top: 48px; gap: 40px; }
  .zz-row { grid-template-columns: 1fr; gap: 22px; }
  .zz-reverse .zz-media { order: 0; }
  .zz-reverse .zz-text { order: 0; }
  .about-values { margin-top: 52px; }

  .partners-section { padding: 44px 0; }
  .partners-row { gap: 26px 30px; }
  .partners-row img { height: 32px; }
  .partners-row img.partner-xpo { height: 38px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { flex-direction: column; row-gap: 6px; }
  .footer-authority::before { display: none; }
}
