/* ============================================================
   TNE — Transnational Experts Inc.
   Pure CSS — no frameworks
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Surfaces */
  --bg: #111317;
  --surface-lowest: #0c0e12;
  --surface-low: #1a1c20;
  --surface: #1e2024;
  --surface-high: #282a2e;
  --surface-highest: #333539;

  /* Brand gradient (extracted from logo) */
  --gradient-start: #9d50bb;
  --gradient-end: #edb1ff;
  --gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));

  /* Vivid logo gradient for CTAs */
  --logo-start: #7b2fbe;
  --logo-end: #ff4d6d;
  --logo-gradient: linear-gradient(135deg, var(--logo-start), var(--logo-end));

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #e2e2e8;
  --text-muted: #9a8c9b;
  --text-dim: #8c8294;

  /* Accent */
  --accent: #edb1ff;
  --accent-pink: #ffb2ba;

  /* Spacing */
  --section-gap: 180px;
  --container-width: 1200px;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-anchor {
  display: block;
  position: relative;
  top: -80px;
  height: 0;
  visibility: hidden;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(157, 80, 187, 0.3);
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: var(--logo-gradient);
}

.accent-line {
  height: 3px;
  width: 80px;
  background: var(--gradient);
  border-radius: var(--radius-full);
}

/* ---------- Glassmorphism Panel ---------- */
.glass {
  background: rgba(12, 14, 18, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(237, 177, 255, 0.08);
  border-radius: var(--radius-2xl);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
  border-color: rgba(237, 177, 255, 0.2);
  box-shadow: 0 8px 48px rgba(157, 80, 187, 0.1);
}

/* ---------- Typography ---------- */
.font-headline {
  font-family: 'Space Grotesk', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  line-height: 1.1;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

/* ---------- Utility / Layout Classes ---------- */
.hero__container {
  position: relative;
  z-index: 1;
}

.accent-line--spaced {
  margin-top: 2rem;
}

/* Honeypot field — hidden from users, visible to bots */
.apply__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--logo-gradient);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(157, 80, 187, 0.25);
}

.btn-primary:hover {
  transform: scale(0.97);
  box-shadow: 0 4px 32px rgba(157, 80, 187, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(157, 80, 187, 0.15);
  color: var(--text-primary);
  border-color: rgba(237, 177, 255, 0.3);
}

/* ============================================================
   1. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(11, 13, 17, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.nav.scrolled .nav__logo img {
  height: 70px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.nav__logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav__cta {
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.2s ease;
  position: relative;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: var(--radius-full);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__cta-broker {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.28;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(17, 19, 23, 0.35) 0%,
    rgba(17, 19, 23, 0.65) 50%,
    var(--bg) 100%);
}

.hero__bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(157, 80, 187, 0.05), transparent 70%);
}

.hero__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin-bottom: 2.5rem;
}

.hero__title .highlight {
  display: block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero__badge {
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(18, 20, 26, 0.75);
  border: 1px solid rgba(237, 177, 255, 0.28);
  box-shadow: 0 8px 32px rgba(157, 80, 187, 0.18);
}


/* ============================================================
   3. COMPANY OVERVIEW
   ============================================================ */
.overview {
  padding-top: var(--section-gap);
}

.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview__content {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.overview__content-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(157, 80, 187, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.overview__content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.overview__content p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.overview__image {
  position: relative;
  height: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.overview__image:hover img {
  transform: scale(1.05);
}

.overview__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 23, 0.7), transparent);
}

.overview__image-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  pointer-events: none;
}

/* ============================================================
   4. WHY BROKERS
   ============================================================ */
.brokers {
  padding-top: calc(var(--section-gap) + 120px);
}

.brokers__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.brokers__header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.brokers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.brokers__card {
  padding: 3rem;
  border-radius: var(--radius-2xl);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.brokers__card:hover {
  border-color: rgba(237, 177, 255, 0.35);
}

.brokers__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
}

.brokers__icon--gradient {
  background: var(--logo-gradient);
  color: var(--text-primary);
}

.brokers__icon--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.brokers__card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.brokers__card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   5. STATS
   ============================================================ */
.stats {
  padding-top: var(--section-gap);
  padding-bottom: 2rem;
  background: linear-gradient(180deg, rgba(15, 17, 20, 0.6) 0%, transparent 100%);
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
}

.stats__header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats__header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}

.stats__item h4 {
  font-size: clamp(3.5rem, 7vw, 5.25rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stats__item h4.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__item p {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

/* ============================================================
   6. FLEET
   ============================================================ */
.fleet {
  padding-top: var(--section-gap);
}

.fleet__panel {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid rgba(237, 177, 255, 0.08);
  max-height: 540px;
}

.fleet__bg-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

.fleet__content {
  position: absolute;
  top: 2rem;
  left: 3rem;
  z-index: 2;
}

.fleet__content h2 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.fleet__content .section-label {
  color: var(--accent);
}

/* Desktop callout annotations */
.fleet__callouts {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fleet__callout {
  position: absolute;
  top: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.fleet__callout--2 { left: 52%; }
.fleet__callout--3 { left: 72%; }

.fleet__callout-line {
  width: 1px;
  height: 120px;
  background: rgba(237, 177, 255, 0.65);
  position: relative;
}

.fleet__callout-line::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.fleet__callout-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.25rem;
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 177, 255, 0.35);
  border-radius: var(--radius-full);
}

.fleet__callout-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.fleet__callout-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* Mobile facts strip */
.fleet__facts-mobile {
  display: none;
}

.fleet__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.fleet__fact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  line-height: 1;
}

.fleet__fact-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* ============================================================
   7. IN-HOUSE MAINTENANCE
   ============================================================ */
.maintenance {
  padding-top: var(--section-gap);
}

.maintenance__panel {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
  border-radius: var(--radius-3xl);
  padding: 3rem;
  background: rgba(18, 20, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(237, 177, 255, 0.12);
  overflow: hidden;
}

.maintenance__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.maintenance__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.maintenance__body {
  max-width: 560px;
}

.maintenance__body h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.maintenance__body > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 2.25rem;
}

.maintenance__metrics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.maintenance__metric {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0;
}

.maintenance__metric-bar {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gradient);
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.maintenance__metric h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.maintenance__metric p {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 0;
}

/* ============================================================
   8. CREDENTIALS
   ============================================================ */
.credentials {
  padding-top: var(--section-gap);
}

.credentials__panel {
  padding: 4.5rem 3.5rem;
  border-radius: var(--radius-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Most prominent panel — slightly brighter surface */
  background: rgba(18, 20, 26, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
}

.credentials__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(157, 80, 187, 0.05), transparent, rgba(157, 80, 187, 0.05));
  pointer-events: none;
}

.credentials__title {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.credentials__subhead {
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 3rem;
}

.credentials__kicker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.credentials__kicker::before,
.credentials__kicker::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 177, 255, 0.5));
}

.credentials__kicker::after {
  background: linear-gradient(90deg, rgba(237, 177, 255, 0.5), transparent);
}

.credentials__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 4.5rem;
  margin-bottom: 3rem;
}

.credentials__item .label {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.credentials__item .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.credentials__item .value.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.credentials__label-icon {
  font-size: 1rem;
  vertical-align: middle;
  color: var(--gradient-start);
  margin-right: 0.35rem;
}

.credentials__actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.credentials__cta-email {
  padding: 1.35rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  min-width: 320px;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(157, 80, 187, 0.35);
}

.credentials__cta-email:hover {
  box-shadow: 0 12px 48px rgba(157, 80, 187, 0.5);
}

.credentials__cta-icon {
  font-size: 1.25rem;
}

.credentials__safer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(237, 177, 255, 0.3);
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.credentials__safer-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.credentials__safer-icon {
  font-size: 1.1rem;
}

/* ============================================================
   9. DRIVER APPLICATION
   ============================================================ */
.apply {
  padding-top: var(--section-gap);
  max-width: 800px;
  margin-inline: auto;
}

.apply__header {
  text-align: center;
  margin-bottom: 3rem;
}

.apply__header h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.apply__header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
}

.apply__form {
  padding: 3rem;
  box-shadow: 0 0 20px rgba(157, 80, 187, 0.12);
}

.apply__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.apply__field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.apply__field input,
.apply__field select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(51, 53, 57, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.apply__field input::placeholder {
  color: var(--text-dim);
}

.apply__field input:hover,
.apply__field select:hover {
  border-color: rgba(157, 80, 187, 0.25);
}

.apply__field input:focus {
  border-color: rgba(157, 80, 187, 0.5);
  box-shadow: 0 0 0 3px rgba(157, 80, 187, 0.15);
}

.apply__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23edb1ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.apply__field select option {
  background: #1e2024;
  color: #ffffff;
  padding: 0.75rem;
}

.apply__field select option:hover,
.apply__field select option:checked {
  background: rgba(157, 80, 187, 0.3);
}

.apply__field select:focus {
  border-color: rgba(157, 80, 187, 0.5);
  box-shadow: 0 0 0 3px rgba(157, 80, 187, 0.15);
}

.apply__submit {
  width: 100%;
  padding: 1.15rem;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 40px rgba(157, 80, 187, 0.25);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.apply__submit:hover {
  filter: brightness(1.1);
  transform: scale(0.98);
}

.apply__submit:active {
  transform: scale(0.96);
}

.apply__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

/* ============================================================
   10. FOOTER
   ============================================================ */
.footer {
  margin-top: var(--section-gap);
  background: var(--surface-lowest);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  opacity: 0.45;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer__col ul li {
  margin-bottom: 0.85rem;
}

.footer__col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__col ul li a:hover {
  color: var(--accent);
}

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.footer__contact-row .material-symbols-outlined {
  font-size: 1.15rem;
  color: var(--accent);
}

.footer__contact-row p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__contact-row:hover p {
  color: var(--text-primary);
}

.footer__location {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer__location .material-symbols-outlined {
  font-size: 1.15rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__location .city {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.footer__address-detail {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer__address-detail:hover {
  color: var(--accent);
}

.footer__map-hint {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 0.35rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer__address-detail:hover .footer__map-hint {
  opacity: 1;
}

.footer__bottom {
  margin-top: 4rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--text-primary);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open {
  display: flex !important;
}

.modal {
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.modal__close:hover {
  color: var(--text-primary);
}

.modal h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.modal h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.modal__content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.modal__content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  list-style: disc;
}

.modal__content ul li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.modal__content a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.modal__content a:hover {
  color: var(--text-primary);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

/* Fade-up reveal — initial hidden state */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children (broker cards, stats, credentials grid items) */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate-stagger].in-view > * {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-stagger].in-view > *:nth-child(1) { transition-delay: 0s; }
[data-animate-stagger].in-view > *:nth-child(2) { transition-delay: 0.12s; }
[data-animate-stagger].in-view > *:nth-child(3) { transition-delay: 0.24s; }
[data-animate-stagger].in-view > *:nth-child(4) { transition-delay: 0.36s; }

/* Nav glow when scrolled */
.nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient);
  opacity: 0.4;
}

/* Hero parallax (desktop only) */
.hero__bg.parallax-enabled img {
  will-change: transform;
}

/* Accessibility: disable all animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__bg.parallax-enabled img {
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .overview__grid {
    grid-template-columns: 1fr;
  }

  .overview__image {
    height: 360px;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }

  .fleet__callouts {
    display: none;
  }

  .fleet__panel {
    max-height: none;
  }

  .fleet__facts-mobile {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: var(--surface-low);
    border-top: 1px solid rgba(237, 177, 255, 0.08);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 960px) {
  .nav__logo img {
    height: 75px;
  }

  .nav__cta-broker {
    display: none;
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }

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

  .credentials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credentials__cta-email {
    min-width: 0;
    width: 100%;
  }

  .fleet__callouts {
    display: none;
  }

  .fleet__facts-mobile {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: var(--surface-low);
    border-top: 1px solid rgba(237, 177, 255, 0.08);
  }

  .maintenance__panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem;
  }

  .maintenance__media {
    width: 100%;
    aspect-ratio: auto;
    height: 260px;
    max-height: none;
  }

  .maintenance__body {
    text-align: center;
    max-width: none;
  }

  .maintenance__metric {
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(237, 177, 255, 0.1);
  }

  .maintenance__metric-bar {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-gap: 100px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta-broker {
    display: none;
  }

  .nav__logo img {
    height: 50px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }

  .hero__label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
  }

  .hero__badge {
    padding: 0.75rem 1.75rem;
    font-size: 0.8rem;
  }

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

  .stats {
    padding-bottom: 0;
  }

  .fleet {
    padding-top: 3rem;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }

  .stats__item {
    padding-block: 0.5rem;
  }

  .stats__item h4 {
    font-size: 3.5rem;
  }

  .fleet__callouts {
    display: none;
  }

  .fleet__panel {
    max-height: none;
  }

  .fleet__bg-img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .fleet__content {
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1.25rem 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(11, 13, 17, 0.85) 0%, rgba(11, 13, 17, 0.5) 60%, transparent 100%);
  }

  .fleet__content h2 {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .fleet__content .section-label {
    display: none;
  }

  .fleet__facts-mobile {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 1.5rem;
    background: var(--surface-low);
    border-top: 1px solid rgba(237, 177, 255, 0.08);
  }

  .maintenance__panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .maintenance__media {
    width: 100%;
    aspect-ratio: auto;
    height: 220px;
    max-height: none;
  }

  .maintenance__body {
    text-align: center;
  }

  .maintenance__body h2 {
    font-size: 1.75rem;
  }

  .maintenance__body > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .maintenance__metrics {
    gap: 1.75rem;
  }

  .maintenance__metric {
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(237, 177, 255, 0.1);
  }

  .maintenance__metric-bar {
    display: none;
  }

  .credentials__panel {
    padding: 3rem 2rem;
  }

  .credentials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credentials__item .value {
    font-size: 1.75rem;
  }

  .credentials__cta-email {
    width: 100%;
    min-width: 0;
    padding: 1.15rem 1.5rem;
    font-size: 0.95rem;
  }

  .apply {
    padding-inline: 1.5rem;
  }

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

  .apply__header h2 {
    font-size: 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    display: none;
  }

  .footer__col {
    text-align: center;
  }

  .footer__col h5 {
    text-align: center;
  }

  .footer__col ul {
    list-style: none;
    padding: 0;
  }

  .footer__contact-row {
    justify-content: center;
  }

  .footer__location {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__badges {
    flex-direction: column;
    align-items: center;
  }

  .overview__content {
    padding: 2rem;
  }

  .brokers__card {
    padding: 2rem;
  }

  .apply__form {
    padding: 2rem 1.5rem;
  }
}
