/* ═══════════════════════════════════════════════
   GF TRUCKS & EQUIPMENT — PREMIUM STYLESHEET
   World-Class UI/UX Design System
   ═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────── */
:root {
  /* Palette */
  --navy:        #060f2a;
  --navy-mid:    #0b1d4a;
  --blue:        #0a3d8f;
  --blue-bright: #1557c0;
  --blue-glow:   rgba(21,87,192,0.35);
  --gold:        #f0a500;
  --gold-light:  #ffc107;
  --gold-glow:   rgba(240,165,0,0.3);
  --white:       #ffffff;
  --off-white:   #f8faff;
  --gray-100:    #f1f4fb;
  --gray-200:    #e2e8f6;
  --gray-400:    #94a3c0;
  --gray-600:    #5a6a8a;
  --text:        #1a2645;
  --text-light:  #5a6a8a;

  /* Typography */
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 130px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 4px 16px rgba(6,15,42,0.08);
  --shadow-md:  0 12px 40px rgba(6,15,42,0.14);
  --shadow-lg:  0 24px 80px rgba(6,15,42,0.22);
  --shadow-glow:0 0 40px var(--blue-glow);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.2s var(--ease);
  --t-mid:    0.4s var(--ease);
  --t-slow:   0.7s var(--ease);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
}
body.loading { overflow: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ─── LAYOUT ──────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-pad) 0; }

/* ─── PRELOADER ─────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  justify-content: center;
}
.pl-gf {
  font-family: 'Inter', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--white); letter-spacing: -2px;
}
.pl-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px; overflow: hidden;
}
.pl-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blue-bright), var(--gold));
  border-radius: 2px;
  animation: plLoad 1.8s var(--ease) forwards;
}
@keyframes plLoad { to { width: 100%; } }
.pl-text {
  color: var(--gray-400);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── CUSTOM CURSOR ──────────────────────────── */
.cursor, .cursor-follower {
  position: fixed; z-index: 9998;
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(240,165,0,0.5);
  transition: transform 0.15s var(--ease), width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower.hovered {
  width: 56px; height: 56px;
  background: rgba(240,165,0,0.08);
  border-color: var(--gold);
}
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* ─── TOPBAR ──────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s var(--ease);
  width: 100%;
  position: relative;
}
.topbar.hidden { transform: translateY(-100%); }
.tb-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.tb-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tb-left span {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.tb-left i, .tb-right i { color: var(--gold); font-size: 0.72rem; }
.tb-sep { color: rgba(255,255,255,0.15); }
.tb-right { display: flex; align-items: center; gap: 20px; }
.tb-link {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  transition: color var(--t-fast);
}
.tb-link:hover { color: var(--gold); }
.tb-socials { display: flex; gap: 10px; padding-left: 10px; border-left: 1px solid rgba(255,255,255,0.1); }
.tb-socials a {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  transition: color var(--t-fast), transform var(--t-fast);
}
.tb-socials a:hover { color: var(--gold); transform: translateY(-2px); }

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(6,15,42,0.06);
  transition: background var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  width: 100%;
  left: 0; right: 0;
}
.navbar.at-top { background: var(--white); box-shadow: none; }
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 40px rgba(6,15,42,0.10);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  height: 76px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(145deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,61,143,0.4);
}
.logo-mark span {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem; font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  position: relative; z-index: 1;
  line-height: 1;
}
.logo-accent {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.logo-wordmark {
  display: flex; flex-direction: column;
  gap: 1px;
}
.lw-top {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
}
.lw-bot {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  font-size: 0.84rem; font-weight: 600;
  color: var(--gray-600);
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link i { font-size: 0.62rem; transition: transform 0.25s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(10,61,143,0.06); }
.nav-item.has-dropdown:hover .nav-link i,
.nav-item.has-dropdown:focus-within .nav-link i { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-drop {
  position: absolute; top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%) translateY(12px);
  min-width: 580px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 200;
}
.nav-item.has-dropdown:hover .mega-drop,
.nav-item.has-dropdown:focus-within .mega-drop {
  pointer-events: auto;
}
.mega-drop::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  transform: translateX(-50%) rotate(45deg);
}
.nav-item.has-dropdown:hover .mega-drop,
.nav-item.has-dropdown:focus-within .mega-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Ensure the nav link sits above the dropdown trigger area */
.nav-item.has-dropdown > .nav-link {
  position: relative; z-index: 201;
}
.mega-inner { display: flex; gap: 0; padding: 12px; }
.mega-col { flex: 1; padding: 0 16px 0 0; }
.mega-col:not(:last-child) { border-right: 1px solid var(--gray-200); margin-right: 16px; }
.mega-heading {
  display: block;
  font-size: 0.68rem; font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.mega-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  transition: background var(--t-fast);
  margin-bottom: 4px;
}
.mega-link:hover { background: var(--gray-100); }
.mega-link > i { font-size: 1.1rem; color: var(--blue); width: 20px; text-align: center; }
.mega-link div strong { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); }
.mega-link div span { font-size: 0.76rem; color: var(--gray-400); margin-top: 1px; display: block; }
.mega-promo {
  flex: 0 0 180px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column;
}
.mp-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.66rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}
.mega-promo h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
.mega-promo p { font-size: 0.76rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.mp-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--navy);
  font-size: 0.78rem; font-weight: 700;
  padding: 8px 16px; border-radius: 8px;
  transition: background var(--t-fast), transform var(--t-fast);
  width: fit-content;
}
.mp-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.84rem; font-weight: 600;
  padding: 11px 22px; border-radius: 10px;
  transition: all var(--t-mid);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.nav-cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  opacity: 0; transition: opacity var(--t-mid);
}
.nav-cta-btn:hover::before { opacity: 1; }
.nav-cta-btn span, .nav-cta-btn i { position: relative; z-index: 1; }
.nav-cta-btn i { font-size: 0.76rem; transition: transform var(--t-mid); }
.nav-cta-btn:hover i { transform: translateX(4px); }
.nav-cta-btn:hover { box-shadow: 0 8px 28px rgba(10,61,143,0.35); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  border-radius: 8px;
  transition: background var(--t-fast);
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--navy); transition: all 0.35s var(--ease);
}
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero-bg-reel { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 9s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.h-slide-1 { background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=85'); }
.h-slide-2 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=85'); }
.h-slide-3 { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=85'); }

.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(6,15,42,0.92) 0%, rgba(6,15,42,0.65) 55%, rgba(6,15,42,0.2) 100%),
    linear-gradient(to top, rgba(6,15,42,0.6) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-body {
  position: relative; z-index: 3;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
  padding-top: 40px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{box-shadow:0 0 8px var(--gold-glow)}
  50%{box-shadow:0 0 20px var(--gold-glow)}
}

.hero-headline {
  display: flex; flex-direction: column;
  margin-bottom: 24px;
}
.hh-line {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hh-line.accent { color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 44px;
}
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px;
  transition: all var(--t-fast);
}
.chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.chip i { font-size: 0.75rem; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons — hero */
.hbtn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.92rem; font-weight: 700;
  padding: 15px 30px; border-radius: 12px;
  transition: all var(--t-mid);
  letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.hbtn-primary {
  background: var(--white);
  color: var(--navy);
}
.hbtn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(6,15,42,0.25);
}
.hbtn-primary .hbtn-icon {
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-mid);
}
.hbtn-primary:hover .hbtn-icon { transform: translateX(4px); }
.hbtn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hbtn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.hbtn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.hbtn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--gold-glow);
}
.hbtn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hbtn-ghost-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

/* Hero side stats */
.hero-side-info {
  position: absolute; right: clamp(20px,5vw,60px);
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 24px 20px;
}
.hsi-item { text-align: center; padding: 14px 10px; }
.hsi-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hsi-num sup { font-size: 1rem; color: var(--gold); }
.hsi-label {
  display: block; font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 5px;
}
.hsi-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.12); }

/* Progress bar */
.hero-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; z-index: 4;
  background: rgba(255,255,255,0.1);
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; transition: width 0.1s linear;
}

/* Slide nav */
.hero-slide-nav {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 4; display: flex; align-items: center; gap: 16px;
}
.hsn-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: all var(--t-fast);
}
.hsn-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hsn-dots { display: flex; gap: 8px; }
.hsn-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.35s var(--ease);
}
.hsn-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 44px; right: clamp(20px,5vw,60px);
  z-index: 4; display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: rgba(255,255,255,0.4);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-wheel {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-ball {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0%{transform:translateY(0);opacity:1}
  100%{transform:translateY(14px);opacity:0}
}

/* Hero reveal animation */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal]:nth-child(1){transition-delay:0.1s}
[data-reveal]:nth-child(2){transition-delay:0.25s}
[data-reveal]:nth-child(3){transition-delay:0.4s}
[data-reveal]:nth-child(4){transition-delay:0.55s}
[data-reveal]:nth-child(5){transition-delay:0.7s}

/* ─── TICKER ──────────────────────────────────── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 24px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-cond);
  font-size: 0.88rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-track i { color: var(--navy); font-size: 0.5rem; opacity: 0.5; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION TYPOGRAPHY ─────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-label.light { color: var(--gold); }
.st-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.st-heading em { font-style: normal; color: var(--blue); }
.st-heading.light { color: var(--white); }
.st-heading.light em { color: var(--gold); }
.st-sub {
  color: var(--text-light);
  font-size: 1.02rem;
  max-width: 520px;
  line-height: 1.72;
}
.section-title-block { max-width: 640px; }

/* ─── SERVICES SECTION ───────────────────────── */
.services-section { background: var(--off-white); }
.services-section .section-title-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 60px; align-items: end;
  margin-bottom: 60px; max-width: 100%;
}
.services-section .section-title-block .st-sub { max-width: 100%; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.srv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  cursor: default;
}
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.srv-img-box {
  position: relative; height: 200px; overflow: hidden;
  background: var(--gray-100);
}
.srv-img-box img {
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease);
}
.srv-card:hover .srv-img-box img { transform: scale(1.08); }
.srv-num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-cond);
  font-size: 3.5rem; font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1; pointer-events: none;
}
.srv-body { padding: 24px; }
.srv-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--t-mid);
}
.srv-card:hover .srv-icon { transform: rotate(-8deg) scale(1.1); }
.srv-icon i { color: var(--white); font-size: 1.1rem; }
.srv-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.srv-body p {
  font-size: 0.87rem; color: var(--text-light);
  line-height: 1.68; margin-bottom: 18px;
}
.srv-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.83rem; font-weight: 700;
  color: var(--blue);
  transition: gap var(--t-fast), color var(--t-fast);
}
.srv-arrow:hover { gap: 14px; color: var(--blue-bright); }
.srv-arrow i { font-size: 0.75rem; }

/* ─── STATS SECTION ──────────────────────────── */
.stats-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.stats-bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
}
.stats-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,42,0.96) 0%, rgba(10,61,143,0.88) 100%);
}
.stats-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-around; gap: 20px;
  flex-wrap: wrap;
}
.stat-block { text-align: center; padding: 20px 32px; }
.sb-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -0.03em;
}
.sb-suf {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900; color: var(--gold);
  letter-spacing: -0.02em;
}
.sb-lbl {
  display: block; margin-top: 10px;
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.stat-line { width: 1px; height: 80px; background: rgba(255,255,255,0.1); }

/* ─── FLEET SECTION ──────────────────────────── */
.fleet-section { background: var(--white); }
.eq-section { background: var(--off-white); }
.fleet-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  margin-bottom: 52px; flex-wrap: wrap;
}
.view-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--blue);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-fast), gap var(--t-fast);
  white-space: nowrap; align-self: flex-end; padding-bottom: 6px;
}
.view-all-link:hover { border-color: var(--gold); gap: 14px; }
.view-all-link i { font-size: 0.78rem; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,61,143,0.12);
}
.fc-img {
  position: relative; height: 210px; overflow: hidden;
  background: var(--gray-100);
}
.fc-img img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease);
}
.fleet-card:hover .fc-img img { transform: scale(1.07); }
.fc-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem; font-weight: 800;
  padding: 4px 12px; border-radius: 6px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.fc-badge.tractor { background: var(--navy); }
.fc-badge.eq { background: var(--gold); color: var(--navy); }
.fc-overlay {
  position: absolute; inset: 0;
  background: rgba(6,15,42,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-mid);
  backdrop-filter: blur(2px);
}
.fleet-card:hover .fc-overlay { opacity: 1; }
.fc-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem; font-weight: 700;
  padding: 11px 22px; border-radius: 10px;
  transform: translateY(10px);
  transition: transform var(--t-mid), background var(--t-fast);
}
.fleet-card:hover .fc-view-btn { transform: translateY(0); }
.fc-view-btn:hover { background: var(--gold-light); }
.fc-info { padding: 20px 22px; }
.fc-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.fc-info p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }
.fc-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fc-specs span {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.73rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: 0.03em;
}
.fc-specs span i { font-size: 0.68rem; color: var(--blue); }

/* ─── ABOUT SECTION ──────────────────────────── */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy);
  overflow: hidden;
}
.about-visual {
  position: relative; min-height: 600px;
  overflow: hidden;
}
.av-img-main {
  position: absolute; inset: 0;
}
.av-img-main img { width: 100%; height: 100%; }
.av-img-sm {
  position: absolute; bottom: 40px; right: -30px;
  width: 200px; height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: var(--shadow-lg);
}
.av-badge {
  position: absolute; bottom: 40px; left: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 40px var(--gold-glow);
}
.av-badge i { font-size: 1.8rem; }
.av-badge strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 800; }
.av-badge span { font-size: 0.74rem; font-weight: 600; opacity: 0.7; }

.about-content {
  padding: clamp(60px,8vw,100px) clamp(32px,6vw,80px);
  display: flex; flex-direction: column; justify-content: center;
}
.about-content > p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem; line-height: 1.78;
  margin-bottom: 40px;
}
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.pillar {
  display: flex; gap: 14px; align-items: flex-start;
}
.p-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-mid);
}
.pillar:hover .p-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.p-icon i { color: var(--gold); font-size: 1rem; transition: color var(--t-fast); }
.pillar:hover .p-icon i { color: var(--navy); }
.pillar div strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.pillar div p { color: rgba(255,255,255,0.45); font-size: 0.8rem; line-height: 1.55; }

/* ─── CTA SECTION ────────────────────────────── */
.cta-section { padding: 0; overflow: hidden; }
.cta-scene {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a6dd4 100%);
  padding: clamp(80px, 12vw, 140px) 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-scene::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(240,165,0,0.12) 0%, transparent 60%);
}
.cta-scene::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-particles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.cta-particle {
  position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%  { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { opacity: 0.6; }
  100%{ transform: translateY(-80px) scale(0.5); opacity: 0; }
}
.cta-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 700px; padding: 0 24px;
}
.cta-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 24px;
}
.cta-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-content h2 em { font-style: normal; color: var(--gold); }
.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 44px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────── */
.footer { background: var(--navy); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
}
.fg-brand .footer-logo { margin-bottom: 20px; }
.footer-logo .logo-mark { background: var(--blue-bright); }
.footer-logo .lw-top { color: rgba(255,255,255,0.9); }
.footer-logo .lw-bot { color: var(--gold); }
.fg-brand p {
  font-size: 0.87rem; color: rgba(255,255,255,0.45);
  line-height: 1.76; margin-bottom: 28px;
  max-width: 340px;
}
.ft-socials { display: flex; gap: 10px; }
.ft-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: all var(--t-mid);
}
.ft-socials a:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21,87,192,0.35);
}
.fg-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fg-col ul li { margin-bottom: 10px; }
.fg-col ul li a {
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}
.fg-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.ft-contact-list { margin-bottom: 24px; }
.ft-contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem; margin-bottom: 12px; line-height: 1.5;
}
.ft-contact-list li i { color: var(--gold); font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; }
.ft-contact-list li a { color: inherit; transition: color var(--t-fast); }
.ft-contact-list li a:hover { color: var(--gold); }
.ft-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--gold);
  font-size: 0.83rem; font-weight: 700;
  padding: 11px 20px; border-radius: 10px;
  transition: all var(--t-mid);
}
.ft-cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.ft-cta-btn i { font-size: 0.75rem; transition: transform var(--t-fast); }
.ft-cta-btn:hover i { transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.fb-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
}

/* ─── BACK TO TOP ────────────────────────────── */
.btt-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 28px var(--gold-glow);
  opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(0.8);
  transition: all var(--t-mid);
}
.btt-btn.show { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.btt-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 14px 36px var(--gold-glow); }

/* ─── SCROLL REVEAL ──────────────────────────── */
[data-sr] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-sr][data-sr-dir="left"]  { transform: translateX(-36px); }
[data-sr][data-sr-dir="right"] { transform: translateX(36px); }
[data-sr].sr-visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}
/* CSS delays — used alongside JS observer */
[data-sr][data-sr-delay="100"].sr-visible { transition-delay: 0.1s; }
[data-sr][data-sr-delay="200"].sr-visible { transition-delay: 0.2s; }
[data-sr][data-sr-delay="300"].sr-visible { transition-delay: 0.3s; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-visual  { min-height: 400px; }
  .av-img-sm     { right: 16px; }
  .hero-side-info { display: none; }
  .services-section .section-title-block { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-menu { display: none; flex-direction: column; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 12px 0 20px; z-index: 500;
    max-height: 80vh; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-item .nav-link { padding: 13px 24px; border-radius: 0; font-size: 0.95rem; }
  .mega-drop {
    position: static; transform: none;
    box-shadow: none; border: none;
    min-width: unset; border-radius: 0;
    background: var(--gray-100);
    padding: 4px 0 8px 24px;
    opacity: 1; visibility: visible;
    display: none;
  }
  .mega-drop::before { display: none; }
  .nav-item.has-dropdown.open .mega-drop { display: block; }
  .mega-inner { flex-direction: column; padding: 8px; }
  .mega-promo { display: none; }
  .mega-col { border: none; margin: 0; padding: 0; }
  .nav-hamburger { display: flex; }
  .navbar { position: sticky; }
  .stat-line { display: none; }
  .stats-inner { gap: 10px; }
  .stat-block { padding: 20px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .about-pillars { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .hero-scroll-cue { display: none; }
  .fb-inner { flex-direction: column; text-align: center; }
  .fleet-header { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .hbtn { width: 100%; justify-content: center; }
}

/* ─── PROCESS SECTION ────────────────────────── */
.process-section { background: var(--off-white); }
.section-header-center { text-align: center; margin-bottom: 72px; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .st-sub { margin: 0 auto; }

.process-grid {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center;
}
.process-step {
  flex: 1; max-width: 260px; text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,61,143,0.1);
}
.ps-number {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  background: var(--blue); color: var(--white);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(10,61,143,0.35);
}
.ps-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(10,61,143,0.08), rgba(21,87,192,0.12));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.process-step:hover .ps-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  transform: rotate(-5deg) scale(1.1);
}
.ps-icon i { font-size: 1.5rem; color: var(--blue); transition: color 0.3s; }
.process-step:hover .ps-icon i { color: var(--white); }
.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.process-step p {
  font-size: 0.86rem; color: var(--text-light);
  line-height: 1.7;
}
.process-connector {
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-200); font-size: 1.1rem;
  padding: 0 8px; margin-top: 80px; flex-shrink: 0;
}

@media (max-width: 900px) {
  .process-grid { flex-direction: column; align-items: center; gap: 24px; }
  .process-connector { transform: rotate(90deg); margin: -8px 0; }
  .process-step { max-width: 100%; width: 100%; }
}

/* ─── NAV OVERFLOW FIX (many items) ─────────── */
/* Contact Us in nav gets a subtle highlight */
.nav-link[href="contact.html"] {
  color: var(--blue);
  font-weight: 700;
}
.nav-link[href="contact.html"]:hover,
.nav-link[href="contact.html"].active {
  background: rgba(10,61,143,0.08);
  color: var(--blue);
}
/* Slightly tighten nav items when there are many */
@media (max-width: 1200px) and (min-width: 861px) {
  .nav-link { padding: 8px 9px; font-size: 0.80rem; }
  .nav-cta-btn { padding: 10px 16px; font-size: 0.80rem; }
  .lw-top { font-size: 0.78rem; }
  .lw-bot { font-size: 0.64rem; }
}
/* active-cta on contact page CTA button */
.nav-cta-btn.active-cta {
  background: var(--gold);
  color: var(--navy);
}
.nav-cta-btn.active-cta::before { display: none; }
.nav-cta-btn.active-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px var(--gold-glow);
}
