/* ── SKIP LINK (accessibility + SEO) ────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #0f172a;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:      #0f172a;
  --navy-2:    #1e293b;
  --navy-3:    #273449;
  --gold:      #2563eb;
  --gold-lt:   #3b82f6;
  --gold-dk:   #1d4ed8;
  --cream:     #f1f5f9;
  --cream-2:   #e2e8f0;
  --white:     #FFFFFF;
  --text-muted:#94a3b8;
  --border:    rgba(37,99,235,0.22);
  --blue-deep: #1e3a8a;
  --blue-glow: #93c5fd;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --container: 1200px;
  --section-gap: clamp(80px, 10vw, 140px);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  background: #f0f4ff;
  color: #1e293b;
  overflow-x: hidden;
  cursor: default;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: #1d4ed8; border-radius: 2px; }

/* ── UTILS ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.gold { color: var(--gold); }
.serif { font-family: var(--ff-display); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: #ffffff;
}
.btn-gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 0.9rem; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1e293b;
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin-top: 14px;
  max-width: 52ch;
}

/* ── DIVIDER ────────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
#nav.scrolled .nav-links a {
  color: #475569;
}
#nav.scrolled .nav-links a:hover {
  color: var(--gold);
}
#nav.scrolled .nav-logo-main {
  color: #1e293b;
}
#nav.scrolled .nav-logo-sub {
  color: var(--gold);
}
#nav.scrolled .hamburger span {
  background: #1e293b;
}
#nav .container {
  max-width: 100%;
  padding: 0 clamp(20px, 4vw, 48px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 16px 0 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(37,99,235,0.04); }
.mobile-menu .mobile-btn { padding: 16px 24px; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Geometric background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30,58,138,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(37,99,235,0.12) 0%, transparent 50%),
    linear-gradient(165deg, #1e3a8a 0%, var(--navy) 45%, #07101F 100%);
  z-index: 0;
}
/* Dot grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
  z-index: 1;
}

/* Floating orb */
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.35) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: pulse-orb 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes pulse-orb {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-52%) scale(1.05); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 12vw, 120px) 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in 0.7s 0.2s var(--ease-out) forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-in 0.8s 0.35s var(--ease-out) forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 50ch;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 0.8s 0.5s var(--ease-out) forwards;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in 0.8s 0.65s var(--ease-out) forwards;
}
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hero-in 1s 1.2s var(--ease-out) forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   POSITIONING
═══════════════════════════════════════════════════════════════ */
#positioning {
  padding: var(--section-gap) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
#positioning::before {
  content: '"';
  position: absolute;
  top: -0.1em; left: -0.02em;
  font-family: var(--ff-display);
  font-size: clamp(16rem, 30vw, 28rem);
  color: rgba(37,99,235,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.positioning-inner {
  max-width: 860px;
}
.positioning-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: #1e293b;
  font-style: italic;
}
.positioning-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin-top: 20px;
  max-width: 64ch;
}

/* ═══════════════════════════════════════════════════════════════
   EVERY NEED
═══════════════════════════════════════════════════════════════ */
#every-need {
  padding: var(--section-gap) 0;
  background: #f0f4ff;
}
.needs-header {
  text-align: center;
  margin-bottom: 60px;
}
.needs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.need-card {
  background: #ffffff;
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.need-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.need-card:hover { box-shadow: 0 8px 32px rgba(37,99,235,0.14); transform: translateY(-4px); }
.need-card:hover::before { transform: scaleX(1); }
.need-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}
.need-card-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.need-card-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.need-card-sub {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}
.need-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.need-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #374151;
}
.need-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .needs-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════════ */
#why-us {
  padding: var(--section-gap) 0;
  background: #ffffff;
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 60px;
}
.why-features {
  display: grid;
  gap: 0;
}
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s;
}
.why-feature:first-child { border-top: 1px solid #e2e8f0; }
.why-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.9;
}
.why-feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 4px;
}
.why-feature-text span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}
.why-tagline-block {
  position: sticky;
  top: 120px;
}
.why-big-number {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(37,99,235,0.08);
  line-height: 1;
  margin-bottom: -20px;
}
.why-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.15;
}
.why-tagline em { color: var(--gold); font-style: italic; }

@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-tagline-block { position: static; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
#services {
  padding: var(--section-gap) 0;
  background: #f0f4ff;
}
.services-header { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: #ffffff;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(37,99,235,0.14);
  transform: translateY(-4px);
}
.service-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(37,99,235,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.65;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════════════ */
#process {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 90%, #1e40af 90%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}
#process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, rgba(37,99,235,0.12) 20%, rgba(37,99,235,0.12) 80%, transparent);
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}
.process-col-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.process-col-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.process-col-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.process-col-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 32px;
  font-style: italic;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-num {
  background: rgba(37,99,235,0.08);
  border-color: var(--gold);
}
.step-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  padding-top: 8px;
}

@media (max-width: 680px) {
  .process-cols { grid-template-columns: 1fr; }
  #process::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SAFETY
═══════════════════════════════════════════════════════════════ */
#safety {
  padding: var(--section-gap) 0;
  background: #f0f4ff;
  position: relative;
  overflow: hidden;
}
.safety-bg-text {
  position: absolute;
  bottom: -0.15em; right: -0.05em;
  font-family: var(--ff-display);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(37,99,235,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.safety-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.1;
}
.safety-title em { color: var(--gold); font-style: italic; }
.safety-body {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin-top: 16px;
  font-style: italic;
}
.safety-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.safety-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.safety-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}
.safety-item strong {
  display: block;
  font-size: 0.9rem;
  color: #1e293b;
  margin-bottom: 3px;
}
.safety-item span {
  font-size: 0.8rem;
  color: #64748b;
}

@media (max-width: 720px) {
  .safety-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BUSINESS CTA
═══════════════════════════════════════════════════════════════ */
#business {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}
#business::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
}
.business-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.business-headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-top: 12px;
}
.business-headline em { color: var(--gold); font-style: italic; }
.business-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 16px;
}
.capability-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 40px;
}
.capability-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.cap-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

@media (max-width: 720px) {
  .business-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   DRIVER RECRUITMENT
═══════════════════════════════════════════════════════════════ */
#driver-recruit {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}
#driver-recruit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.recruit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.recruit-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.recruit-label::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,0.4); }
.recruit-headline {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
}
.recruit-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 14px;
}
.recruit-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recruit-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.recruit-perk:hover { background: rgba(255,255,255,0.14); }
.recruit-perk-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #93c5fd;
  opacity: 0.9;
}
.recruit-perk strong {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}
.btn-recruit {
  margin-top: 32px;
  background: #ffffff;
  color: #1d4ed8;
  border-radius: 2px;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease-out);
}
.btn-recruit:hover {
  background: #dbeafe;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

@media (max-width: 680px) {
  .recruit-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-gap) 0;
  background: #ffffff;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.12);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(37,99,235,0.18);
  line-height: 1;
}
.testimonial-text {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: #2563eb;
}
.author-info strong {
  display: block;
  font-size: 0.82rem;
  color: #1e293b;
  font-weight: 600;
}
.author-info span {
  font-size: 0.75rem;
  color: #94a3b8;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #3b82f6;
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-gap) 0;
  background: #f0f4ff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-item:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item span {
  font-size: 0.9rem;
  color: #374151;
}
/* ── PHONE INPUT WITH COUNTRY PICKER ── */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: visible;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.phone-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.country-picker {
  position: relative;
  flex-shrink: 0;
}
.country-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 100%;
  background: #f8fafc;
  border: none;
  border-right: 1.5px solid #e2e8f0;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #374151;
  transition: background 0.15s;
  white-space: nowrap;
}
.country-trigger:hover { background: #f1f5f9; }
.country-flag { font-size: 1.1rem; line-height: 1; }
.country-code { font-weight: 600; color: #1e293b; font-size: 0.82rem; }
.country-chevron { color: #94a3b8; transition: transform 0.2s; }
.country-trigger[aria-expanded="true"] .country-chevron { transform: rotate(180deg); }

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  width: 280px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(30,64,175,0.12);
  overflow: hidden;
}
.country-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #94a3b8;
}
.country-search {
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: #1e293b;
  width: 100%;
  background: transparent;
}
.country-search::placeholder { color: #cbd5e1; }
.country-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.12s;
  font-size: 0.85rem;
}
.country-option:hover    { background: #f0f4ff; }
.country-option.selected { background: #eff6ff; }
.country-option-name {
  flex: 1;
  color: #1e293b;
}
.country-option-code {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
}
.phone-number-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #1e293b;
  background: transparent;
  border-radius: 0 6px 6px 0;
}
.phone-number-input::placeholder { color: #cbd5e1; }

.contact-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.06);
}
.contact-map iframe {
  display: block;
}
.contact-form-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.07);
  margin-top: 160px;
}
@media (max-width: 768px) {
  .contact-form-area { margin-top: 0; }
}
.contact-form-area h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 4px;
}
.contact-form-area p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 6px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-field textarea { min-height: 90px; resize: vertical; }
.form-field input.is-invalid,
.form-field textarea.is-invalid,
.form-field select.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form-field input.is-valid,
.form-field textarea.is-valid,
.form-field select.is-valid { border-color: #22c55e; }
.field-error {
  font-size: 0.75rem;
  color: #dc2626;
  display: none;
  align-items: center;
  gap: 4px;
}
.field-error.visible { display: flex; }
/* Phone input sits inside .phone-input-wrap — suppress default field styles */
.form-field .phone-number-input {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 12px 14px;
}
.form-field .phone-number-input:focus {
  border: none;
  box-shadow: none;
}
.form-full { grid-column: 1 / -1; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: #080e1d;
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── MISC ── */
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ── MOBILE CTA ── */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── HERO LOGO ── */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-logo-card {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-logo-img {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: contain;
}

/* ── WHY US MODIFIERS ── */
.section-label--spaced {
  margin-bottom: 12px;
}
.gold-rule--spaced {
  margin: 28px 0;
}

/* ── BUSINESS ORB ── */
.business-orb-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-orb {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Outer ring — largest, slowest */
.orb-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.18);
  animation: spin-slow 28s linear infinite;
}
/* Middle ring */
.orb-ring {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.22);
  animation: spin-slow 20s linear infinite reverse;
}
/* Inner decorative ring */
.orb-ring-inner {
  position: absolute;
  inset: 72px;
  border-radius: 50%;
  border: 1px dashed rgba(37,99,235,0.12);
  animation: spin-slow 14s linear infinite;
}
/* Centre content bubble */
.orb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 50%;
  width: 188px;
  height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 0 40px rgba(37,99,235,0.1), inset 0 0 30px rgba(37,99,235,0.05);
}
.orb-stat-big {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #93c5fd;
  line-height: 1;
}
.orb-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
}
.orb-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(37,99,235,0.35);
  margin: 8px auto;
}
.orb-stat-mid {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
/* Orbiting dots — each orbit div rotates, dot sits at the top edge */
.orb-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spin-slow 28s linear infinite;
}
.orb-orbit--1 { animation-delay:    0s; }
.orb-orbit--2 { animation-delay: -9.3s; }   /* ~120° offset */
.orb-orbit--3 { animation-delay: -18.6s; }  /* ~240° offset */
.orb-orbit .orb-dot {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px rgba(59,130,246,0.9), 0 0 4px #3b82f6;
}

/* ── SHARED INLINE EM ACCENT ── */
.accent-em {
  font-style: italic;
  color: var(--gold);
}

/* ── CONTACT SECTION SUB SPACING ── */
.section-sub--spaced {
  margin-bottom: 32px;
}

/* ── FORM SUBMIT BUTTON ── */
.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-feedback {
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 6px;
  display: none;
}
.cf-feedback:not(:empty) { display: block; }
.cf-feedback--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.cf-feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── CONTACT FORM SUCCESS STATE ── */
.cf-success[hidden] { display: none; }
.cf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  animation: cf-success-in 0.4s ease both;
}
@keyframes cf-success-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cf-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  margin-bottom: 8px;
}
.cf-success-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.cf-success-body {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 34ch;
  margin: 0;
}
.cf-send-another-btn {
  margin-top: 8px;
  font-size: 0.85rem;
}

/* ── FOOTER LOGO ── */
.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* ── KEYFRAME: ORB RING SPIN ── */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
