:root {
  --bg-page: #020617;
  --bg-hero-overlay: rgba(15, 23, 42, 0.85);
  --bg-light: #f9fafb;
  --bg-card: #ffffff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --accent-strong: #1d4ed8;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --text-on-dark: #e5e7eb;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.35);
  --radius-xl: 18px;
  --transition-fast: 180ms ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg-page);
  color: var(--text-main);
}

/* PAGE WRAPPER */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR (overlay on video) */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding-top: 0.75rem;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.35rem 1.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #38bdf8 0, #2563eb 40%, #020617 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.7),
    0 12px 26px rgba(15, 23, 42, 0.9);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.85rem;
}

.nav-links a {
  color: #e5e7eb;
  opacity: 0.7;
  position: relative;
  padding-bottom: 0.12rem;
  transition: opacity var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #22c55e);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 1));
  color: #e5e7eb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.7), rgba(15, 23, 42, 1));
  box-shadow: 0 0 34px rgba(56, 189, 248, 0.85);
}

/* HERO VIDEO */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.92) 45%, rgba(15, 23, 42, 0.98));
  z-index: -1;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  margin-bottom: 1.1rem;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-title span.highlight {
  background: linear-gradient(to right, #38bdf8, #a855f7, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-primary {
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(to right, #2563eb, #a855f7);
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.75);
  filter: brightness(1.05);
}

.btn-ghost {
  padding: 0.74rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-ghost span.icon {
  font-size: 1.05rem;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(59, 130, 246, 0.9);
  transform: translateY(-1px);
}

/* HERO RIGHT CARD – SIMPLE STATS */

.hero-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-card-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.badge {
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.2);
  color: #bbf7d0;
  font-size: 0.68rem;
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.7rem;
  margin-top: 0.7rem;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
}

.hero-card-label {
  font-size: 0.78rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* MAIN SECTIONS */

main {
  background: var(--bg-light);
}

/* GENERIC SECTION */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

/* 3-STEP CIRCLES */

.steps {
  text-align: center;
}

.steps-heading {
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #111827;
}

.steps-divider {
  width: 48px;
  height: 2px;
  margin: 0.75rem auto 1.75rem;
  background: linear-gradient(to right, #2563eb, #f97316);
  border-radius: 999px;
}

.steps-subtitle {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  align-items: flex-start;
}

@media (max-width: 950px) {
  .steps-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-image-wrap {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.3);
  border: 6px solid #f9fafb;
}

.step-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease-out;
}

.step-card:hover .step-image-wrap img {
  transform: scale(1.04);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 18rem;
}

/* JOBS / DRIVER CTA (simpler) */

.jobs {
  border-top: 1px solid #e5e7eb;
}

.jobs-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.jobs-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

@media (max-width: 900px) {
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .jobs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.job-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.5);
}

.job-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.job-pay {
  font-size: 0.94rem;
  color: #15803d;
  font-weight: 500;
}

.job-footer {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2563eb;
}

/* CONTACT SECTION (LIGHT) */

.contact {
  border-top: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-value {
  font-weight: 500;
  color: #111827;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-size: 0.87rem;
  outline: none;
  transition:
    border-color 140ms ease-out,
    box-shadow 140ms ease-out,
    background 140ms ease-out;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.7);
  background: #ffffff;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

/* FOOTER */

footer {
  background: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  padding: 1.4rem 1.5rem 1.8rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
}
