/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
}
.nav-inner > .nav-logo-wrap { justify-self: start; overflow: hidden; }
.nav-logo-wrap a img { height: 52px; width: auto; display: block; mix-blend-mode: screen; }
.nav-inner > ul { justify-self: start; padding-left: 32px; }
.nav-inner > .nav-cta { justify-self: end; }
.nav-logo {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 200;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--offwhite);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { cursor: default; }
.nav-dropdown > .nav-link::after { content: '\25be'; margin-left: 5px; font-size: 9px; opacity: 0.5; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 180px;
  z-index: 500;
  margin-top: 12px;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 0;
  border-bottom: 8px solid var(--steel);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 200;
  font-size: 11px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--offwhite);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: 0.3s; }

@media (max-width: 900px) {
  .nav-inner { height: 60px; }
  .nav-inner > ul { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--steel);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 499;
  }
}

/* ── ACTIVE STATE ────────────────────────────────────────────────────────── */
[data-page="index"]          .nav-links a[href="/"] { color: var(--teal); }
[data-page="our-culture"]    .nav-links a[href="/our-culture.html"] { color: var(--teal); }
[data-page="our-history"]    .nav-links a[href="/our-history.html"] { color: var(--teal); }
[data-page="team-driver"]    .nav-links a[href="/team-driver.html"] { color: var(--teal); }
[data-page="team-matching"]  .nav-links a[href="/team-matching.html"] { color: var(--teal); }
[data-page="owner-operator"] .nav-links a[href="/owner-operator.html"] { color: var(--teal); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer.carbon {
  margin-top: auto;
}
.footer-swiss {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 200;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--teal); }
.footer-tagline {
  font-size: 12px;
  color: var(--offwhite);
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.footer-contact-link {
  font-size: 12px;
  color: var(--offwhite);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-contact-link:hover { opacity: 1; color: var(--teal); }
.footer-mc {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--offwhite);
  opacity: 0.4;
  text-transform: uppercase;
}
.footer-col-head {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0.4;
  margin-bottom: 14px;
}
.footer-nav-col { display: flex; flex-direction: column; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-links a {
  font-size: 13px;
  color: var(--offwhite);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav-links a:hover { opacity: 1; color: var(--teal); }
.footer-social-col { display: flex; flex-direction: column; }
.footer-social-icons { display: flex; gap: 14px; }
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--offwhite);
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social-icons a:hover { opacity: 1; border-color: var(--teal); color: var(--teal); }
.footer-social-icons svg { width: 16px; height: 16px; }
.footer-copy {
  font-size: 11px;
  color: var(--offwhite);
  opacity: 0.3;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-swiss { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .footer-social-col { align-items: flex-start; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--black); }
.btn-primary:hover { background: #919aac; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(145,154,172,0.22); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-sm { font-size: 12px; padding: 10px 20px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── TAG ─────────────────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-glow);
  border: 1px solid rgba(145,154,172,0.2);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 190px;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.4) 100%),
    url('/assets/images/hero-fleet.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.hero-content .origin-line {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--offwhite);
  opacity: 0.7;
  margin-bottom: 36px;
  font-style: italic;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}
.hero-content .subhead {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--offwhite);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIAL CAROUSEL ────────────────────────────────────────────────── */
.testi-slide { display: none; }
.testi-slide.active { display: block; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.testi-dot.active { background: var(--teal); }

/* ── STICKY CTA ──────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 400;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(145,154,172,0.28); }
  50% { box-shadow: 0 0 0 14px rgba(0,154,218,0); }
}

/* ── FORM CARD ───────────────────────────────────────────────────────────── */
.form-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.form-card h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 20px;
}
input, select, textarea {
  background: var(--steel-mid);
  border: 1px solid rgba(145,154,172,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 3px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); }
input::placeholder, textarea::placeholder { color: var(--offwhite); opacity: 0.4; }
