/* ==========================================================================
   Trucking2000 — Premium Design System & Styles
   Aesthetics: Sleek Modern Dark Navy (#0B2540) & Brand Blue (#15598F)
   Accent: Safety/Golden Orange (#F7941E)
   No UI Frameworks. 100% Custom CSS. Mobile-first.
   ========================================================================== */

:root {
  /* Color Palette (HSL based for harmonious variants) */
  --primary-h: 210;
  --primary-s: 71%;
  --primary-l: 15%; /* #0B2540 */
  
  --brand-h: 206;
  --brand-s: 74%;
  --brand-l: 32%; /* #15598F */

  --accent-h: 33;
  --accent-s: 93%;
  --accent-l: 54%; /* #F7941E */
  
  /* HSL Colors */
  --navy: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --navy-light: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) + 8%));
  --navy-deep: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) - 6%));
  
  --brand: hsl(var(--brand-h), var(--brand-s), var(--brand-l));
  --brand-dark: hsl(var(--brand-h), var(--brand-s), calc(var(--brand-l) - 10%));
  --brand-light: hsl(var(--brand-h), var(--brand-s), calc(var(--brand-l) + 15%));
  
  --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
  --accent-dark: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 10%));
  --accent-light: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) + 12%));
  
  --ink: #101820;
  --ink-soft: #4A5568;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F7FAFC;
  --bg-deep: #EDF2F7;
  
  /* Layout & Design Tokens */
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(247, 148, 30, 0.4);
  
  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Header dimensions */
  --header-h: 76px;
  --topbar-h: 40px;
}

/* ---------- Basic Reset & Scroll ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 5px;
  border: 2px solid var(--bg-soft);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

img, video {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--brand-dark);
}

ul {
  list-style: none;
}

.wrap {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin-top: 15px;
}

.center h2::after {
  margin-inline: auto;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 65ch;
  font-weight: 400;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-brand {
  background: var(--brand);
  color: #ffffff;
}

.btn-brand:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brand);
  color: #ffffff;
}

/* ---------- Top Bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--topbar-h);
  background: var(--navy-deep);
  color: #E2E8F0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: #FFFFFF;
  font-weight: 500;
}

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

.topbar-contacts {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-contacts span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar svg {
  color: var(--accent);
}

@media (max-width: 640px) {
  .topbar-contacts span.tb-email {
    display: none;
  }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav > li {
  position: relative;
}

.nav a.nav-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav a.nav-link:hover, 
.nav a.nav-link.active {
  color: var(--brand);
  background: var(--bg-soft);
}

.nav .nav-cta {
  margin-left: 12px;
}

.nav .nav-cta .btn {
  padding: 10px 24px;
  font-size: 1rem;
}

/* Dropdown Sub-menu */
.has-sub > .sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-sub:hover > .sub, 
.has-sub:focus-within > .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub a {
  display: block;
  padding: 10px 16px;
  border-radius: calc(var(--radius-sm) - 2px);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.sub a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}

/* Hamburger Menu button */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 5% 30px;
    box-shadow: var(--shadow-lg);
    display: none;
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav.open {
    display: flex;
  }
  .nav a.nav-link {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .has-sub > .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 20px;
  }
  .nav .nav-cta {
    margin: 20px 0 0;
  }
  .nav .btn {
    width: 100%;
  }
}

main {
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 24, 42, 0.92) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(10, 37, 64, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 0;
}

.hero h1 {
  color: #FFFFFF;
  max-width: 16ch;
  text-wrap: balance;
  margin-bottom: 20px;
}

.hero h1 .hl {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), #FFC46B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .tagline {
  color: #E2E8F0;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin-bottom: 36px;
  max-width: 55ch;
  font-weight: 350;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.hero-badges div {
  color: #E2E8F0;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badges strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* Subpage Page Hero */
.page-hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) 0;
  border-bottom: 4px solid var(--accent);
}

.page-hero .hero-media img {
  opacity: 0.35;
  filter: grayscale(40%) contrast(110%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 24, 42, 0.9) 0%, rgba(10, 37, 64, 0.5) 100%);
  z-index: 2;
}

.page-hero .wrap {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: #FFFFFF;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 18px;
}

.page-hero p {
  color: #E2E8F0;
  max-width: 65ch;
  margin-top: 16px;
  font-size: 1.15rem;
}

.breadcrumbs {
  position: relative;
  z-index: 3;
  font-size: 0.88rem;
  color: #A0AEC0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #E2E8F0;
}

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

/* ---------- Sections ---------- */
.section {
  padding: clamp(60px, 9vw, 100px) 0;
}

.section.soft {
  background-color: var(--bg-soft);
  background-image: radial-gradient(rgba(21, 89, 143, 0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.section.deep {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section.deep::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(650px 300px at 85% 15%, rgba(247, 148, 30, 0.12), transparent 70%),
    radial-gradient(550px 250px at 10% 90%, rgba(21, 89, 143, 0.4), transparent 70%);
  z-index: 1;
}

.section.deep .wrap {
  position: relative;
  z-index: 2;
}

.section.deep h2, 
.section.deep h3,
.section.deep h4 {
  color: #FFFFFF;
}

.section.deep p {
  color: #CBD5E0;
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 60px);
}

/* ---------- Grids & Cards ---------- */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card:hover::after {
  right: 0;
}

.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 64, 0) 50%, rgba(11, 37, 64, 0.35) 100%);
  pointer-events: none;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-body h3 {
  margin-bottom: 4px;
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
  line-height: 1.6;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
  font-size: 0.95rem;
}

.card-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.2s ease;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* Feature/Why Us item */
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 10px;
}

.feature .ico {
  flex: 0 0 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-deep);
  color: var(--brand);
  display: grid;
  place-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.feature p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature:hover .ico {
  background: var(--brand);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.section.deep .feature .ico {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.section.deep .feature:hover .ico {
  background: var(--accent);
  color: #FFFFFF;
}

/* Stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.stat strong {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
}

.stat strong::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: rgba(247, 148, 30, 0.6);
}

.stat span {
  display: block;
  color: #CBD5E0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Split layout (2 columns) */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

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

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Checklist */
.checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.checks li {
  padding-left: 32px;
  position: relative;
  color: var(--ink-soft);
  font-size: 1rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}

.section.deep .checks li {
  color: #E2E8F0;
}

/* Chips list */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.98rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.chip strong {
  color: var(--brand);
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Tracking Widget ---------- */
.trackbar {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 50px);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.trackbar::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border: 36px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.trackbar::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border: 28px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.trackbar h2, 
.trackbar h3 {
  color: #FFFFFF;
}

.track-form {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 800px) {
  .track-form {
    grid-template-columns: 1fr;
  }
}

.track-form select, 
.track-form input[type=text] {
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--ink);
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.track-form select:focus, 
.track-form input[type=text]:focus {
  outline: none;
  border-color: var(--accent);
}

.track-form .btn {
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-glow);
}

.track-form .btn:hover {
  background: var(--accent-light);
  box-shadow: 0 0 24px rgba(247, 148, 30, 0.6);
}

.track-hint {
  font-size: 0.88rem;
  color: #E2E8F0;
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

/* ---------- Forms ---------- */
.form-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 50px);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field label .req {
  color: #E53E3E;
  margin-left: 2px;
}

.field input, 
.field select, 
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #F7FAFC;
  color: var(--ink);
  transition: all 0.2s ease;
  width: 100%;
}

.field input:focus, 
.field select:focus, 
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(21, 89, 143, 0.15);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-status {
  font-weight: 600;
  margin-top: 14px;
  font-size: 0.95rem;
}

.form-status.ok {
  color: #38A169;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.form-status.err {
  color: #E53E3E;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* ---------- Contact Elements ---------- */
.contact-list {
  display: grid;
  gap: 24px;
}

.contact-list .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-list .ico {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-deep);
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.contact-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.contact-list a, 
.contact-list span {
  color: var(--ink-soft);
  font-size: 1rem;
}

.contact-list a:hover {
  color: var(--brand);
}

/* ---------- News Elements ---------- */
.news-meta {
  font-size: 0.82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-meta::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent);
}

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  text-align: center;
  padding: clamp(70px, 9vw, 110px) 0;
  border-top: 4px solid var(--accent);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(800px 350px at 15% 110%, rgba(247, 148, 30, 0.18), transparent 70%),
    radial-gradient(800px 350px at 85% -10%, rgba(21, 89, 143, 0.45), transparent 70%);
  z-index: 1;
}

.cta-band .wrap {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: #FFFFFF;
  margin-bottom: 14px;
}

.cta-band p {
  color: #E2E8F0;
  margin: 0 auto 36px;
  max-width: 60ch;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0B131A;
  color: #A0AEC0;
  font-size: 0.95rem;
  position: relative;
  border-top: 4px solid var(--brand);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: clamp(60px, 8vw, 90px) 0 50px;
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.site-footer ul {
  display: grid;
  gap: 12px;
}

.site-footer a {
  color: #A0AEC0;
}

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

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}

.footer-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-cred span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.02);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: #718096;
  margin-left: 20px;
}

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

/* ---------- Interactive / Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Miscellaneous Utilities ---------- */
.map-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.map-figure img {
  width: 100%;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.map-figure:hover img {
  transform: scale(1.015);
}

.anchor-offset {
  scroll-margin-top: calc(var(--header-h) + var(--topbar-h) + 24px);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.skip-link:focus {
  left: 0;
}

/* Generic Prose Content style */
.prose h2 {
  margin: 40px 0 16px;
  font-size: 1.8rem;
}

.prose h3 {
  margin: 30px 0 12px;
  font-size: 1.35rem;
}

.prose p, 
.prose li {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.prose li {
  margin-bottom: 8px;
}
