/* =========================
   Freight Homepage Styles
   Navy + Green Enterprise
   ========================= */

:root{
  --navy:#0b1f3b;
  --navy-2:#102a4f;
  --orange:#22c55e;
  --page-pad: clamp(14px, 3vw, 22px);
  --color-green-400: oklch(79.2% 0.209 151.711);
  --color-green-600: oklch(62% 0.19 151.711);
  --color-green-700: oklch(54% 0.18 151.711);
  --tw-gradient-from: var(--color-green-400);
  --tw-gradient-to: var(--color-green-600);
  --bg:#ffffff;
  --muted:#6b7280;
  --text:#0f172a;
  --line:#e5e7eb;
  --soft:#f5f7fb;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; }

/* Bootstrap container handles width/padding */

/* ===== Topbar ===== */
.topbar{
  background: #07162b;
  color: #cbd5e1;
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px var(--page-pad);
  gap:16px;
}
.topbar__left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; white-space:nowrap; }
.topbar__right{ display:flex; align-items:center; gap:14px; }
.topbar__link{ opacity:.95; }
.topbar__link:hover{ opacity:1; text-decoration:underline; }

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.06);
}

@media (max-width: 480px){
  .topbar{
    font-size: 11px;
  }
  .topbar__left{
    gap:6px;
  }
  .chip{
    padding:3px 8px;
    gap:6px;
  }
  .section--cta .cta-zone .btn--primary.btn--lg{
    padding:8px 12px;
    font-size:13px;
  }
  .section--cta .cta-zone .cta-split__row .btn{
    width: fit-content;
  }
}

@media (max-width: 520px){
  .topbar__left{
    flex-wrap: nowrap;
    gap:6px;
  }
}

@media (max-width: 430px){
  .topbar{
    font-size: 10px;
  }
  .topbar__left{
    gap:4px;
  }
  .chip{
    padding:3px 6px;
    gap:4px;
  }
}

@media (max-width: 380px){
  .topbar{
    font-size: 8px;
  }
  .topbar__left{
    flex-wrap: nowrap;
    gap:4px;
  }
  .topbar__left .muted{
    display:none;
  }
  .chip{
    padding:2px 5px;
    gap:3px;
  }
}

/* ===== Header ===== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.7);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px var(--page-pad);
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand__mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color:white;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:0.5px;
  box-shadow: 0 10px 22px rgba(11,31,59,.18);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-weight:800; color:var(--navy); }
.brand__tag{ font-size:12px; color:var(--muted); margin-top:3px; }

.nav{
  display:flex;
  gap:22px;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color:#0f2b52;
  opacity:.92;
}
.nav__link:hover{ opacity:1; }

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 12px;
  border-radius:15px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background: linear-gradient(135deg, var(--tw-gradient-from), var(--tw-gradient-to));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(34,197,94,.25), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover{
  background: linear-gradient(135deg, var(--tw-gradient-to), var(--color-green-700));
  color:#ffffff;
  border-color: rgba(15,23,42,.18);
  box-shadow: 0 14px 26px rgba(34,197,94,.32), inset 0 1px 0 rgba(255,255,255,.35);
}

.btn--ghost{
  background: transparent;
  border-color: rgba(11,31,59,.20);
  color: var(--navy);
}
.btn--ghost:hover{
  background: rgba(11,31,59,.04);
  border-color: rgba(11,31,59,.30);
}
.btn--dark{
  background:#0b0f1a;
  color:#ffffff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}
.btn--dark:hover{
  background:#151b2a;
  color:#ffffff;
}

.btn--lg{
  padding:10px 14px;
  font-size:14px;
}
.btn--sm{
  padding:7px 12px;
  font-size:13px;
}

/* ===== Hamburger + Mobile Nav ===== */
.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(11,31,59,.16);
  background:white;
  cursor:pointer;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background: var(--navy);
  margin:5px 0;
  border-radius:2px;
}

.mobile-nav{
  display:none;
  border-top:1px solid rgba(229,231,235,.7);
  background:white;
}
.mobile-nav__inner{
  padding:14px var(--page-pad) 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-nav__link{
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  color:var(--navy);
}
.mobile-nav__link:hover{ background: rgba(11,31,59,.04); }
.mobile-nav__cta{ display:flex; gap:10px; padding-top:8px; flex-wrap:wrap; }
.mobile-nav--open{ display:block; }

/* ===== Hero ===== */
.hero{
  position:relative;
  padding: 70px 0 56px;
  color:#e2e8f0;
  background:
    radial-gradient(520px 280px at 82% 30%, rgba(34,197,94,.25), transparent 60%),
    radial-gradient(520px 280px at 18% 40%, rgba(14,30,60,.65), transparent 60%),
    linear-gradient(135deg, #1a2f5b 0%, #1c396f 55%, #182f5e 100%);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(transparent 48%, rgba(255,255,255,.08) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.08) 48% 52%, transparent 52%);
  background-size: 26px 26px;
  opacity:.47;
}
.hero__inner{ position:relative; z-index:1; }
.hero__content{ max-width: 560px; }
.hero__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#f8fafc;
  font-weight:700;
  font-size:13px;
}
.hero__pill-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--orange);
  box-shadow:
    0 0 0 4px rgba(34,197,94,.25),
    0 0 10px rgba(34,197,94,.8),
    0 0 18px rgba(34,197,94,.6);
  animation: pill-dot-glow 2.6s ease-in-out infinite;
}

@keyframes pill-dot-glow{
  0%, 100%{
    box-shadow:
      0 0 0 4px rgba(34,197,94,.25),
      0 0 10px rgba(34,197,94,.8),
      0 0 18px rgba(34,197,94,.6);
    transform: scale(1);
  }
  50%{
    box-shadow:
      0 0 0 6px rgba(34,197,94,.35),
      0 0 16px rgba(34,197,94,.9),
      0 0 24px rgba(34,197,94,.75);
    transform: scale(1.05);
  }
}
.hero__title{
  margin:12px 0 12px;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height:1.05;
  color:#ffffff;
  letter-spacing:-0.02em;
}
.hero__title span{
  color: var(--orange);
  display:block;
  margin-top:6px;
}
.hero__subtitle{
  margin:0;
  color: rgba(226,232,240,.9);
  font-size:18px;
  max-width:52ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 20px;
}
.hero__actions .btn--ghost{
  color:#f8fafc;
  border-color: rgba(255,255,255,.3);
}
.hero__actions .btn--ghost:hover{ background: rgba(255,255,255,.1); }

.hero__stats{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  margin-top: 28px;
}
.stat__value{
  font-size: 24px;
  font-weight: 900;
  color:#ffffff;
}
.stat__label{
  color: rgba(226,232,240,.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.hero__panel{ position:relative; }
.track-card{
  position:relative;
  background:#ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.20);
  border:1px solid rgba(226,232,240,.9);
}
.track-card h3{ margin:0 0 6px; color: var(--navy); }
.track-card__head{
  margin:-22px -22px 16px;
  padding:14px 22px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color:#ffffff;
}
.track-card__head h3{
  margin:0 0 6px;
  color:#ffffff;
  font-size:22px;
  font-weight:700;
}
.track-card__head p{
  color:#ffffff;
  font-size:12px;
  font-weight:300;
}
.track-card .muted{ color:#64748b; }
.track-card .track-card__head .muted{
  color:#ffffff;
}
.track-card__badge{
  position:absolute;
  top:-18px;
  right:-12px;
  background: linear-gradient(135deg, oklch(74% 0.14 151.711), oklch(62% 0.12 151.711));
  color:#ffffff;
  width:180px;
  padding:10px 14px 10px 40px;
  border-radius: 14px;
  border:2px solid rgba(255,255,255,.9);
  font-weight:700;
  box-shadow: 0 12px 24px rgba(34,197,94,.25);
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:12px;
}
.track-badge__label{
  display:block;
  font-weight:600;
  line-height:1.1;
  min-width:0;
}
.track-badge__icon{
  position:absolute;
  left:12px;
  top:50%;
  transform: translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.track-badge__icon svg{ width:14px; height:14px; }
.track-badge__text,
.track-badge__value{
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.track-badge__text{ font-weight:500; }
.track-badge__value{ font-weight:700; font-size:13px; }

.track-card__label{
  display:block;
  font-weight:800;
  color: var(--navy);
  font-size: 13px;
  margin: 14px 0 8px;
}
.track-card__form{ margin-top: 8px; }
.track-card__select{
  position:relative;
}
.track-card__select select{
  width:100%;
  border:1px solid rgba(226,232,240,.9);
  border-radius: 14px;
  padding: 12px 38px 12px 14px;
  font-weight:600;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline:none;
  background: #ffffff;
  appearance:none;
}
.track-card__select input{
  width:100%;
  border:1px solid rgba(226,232,240,.9);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight:600;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline:none;
  background: #ffffff;
}
.track-card__select--combo input{
  padding-right: 38px;
}
.track-card__select--combo select{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.autocomplete__results{
  position:absolute;
  top: calc(100% + 6px);
  left:0;
  right:0;
  max-height: 260px;
  overflow:auto;
  border-radius: 14px;
  border:1px solid rgba(226,232,240,.95);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  display:none;
  z-index: 20;
}
.autocomplete__results.is-open{
  display:block;
}
.autocomplete__item{
  width:100%;
  text-align:left;
  padding:10px 12px;
  border:none;
  background: transparent;
  font-weight:600;
  color:#0f172a;
  cursor:pointer;
}
.autocomplete__item:hover,
.autocomplete__item.is-active{
  background: rgba(34,197,94,.12);
}
.track-card__select::after{
  content:"";
  position:absolute;
  right:14px;
  top:50%;
  width:10px;
  height:10px;
  border-right:2px solid #94a3b8;
  border-bottom:2px solid #94a3b8;
  transform: translateY(-60%) rotate(45deg);
  pointer-events:none;
}
.track-card__fields{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.track-card__select select:focus,
.track-card__select input:focus{
  border-color: rgba(34,197,94,.6);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}
.track-card__options{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.option-card{
  border:1px solid rgba(226,232,240,.9);
  border-radius: 14px;
  padding: 14px;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  text-align:center;
  font-weight:700;
  color:#0f172a;
  cursor:pointer;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
  position:relative;
}
.option-card__icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
  color:#0f172a;
}
.option-card__icon svg{ width:22px; height:22px; }
.option-card__title{ font-size:14px; }
.option-card__sub{ font-size:12px; color:#64748b; font-weight:600; }
.option-card__check{
  position:absolute;
  top:10px;
  right:10px;
  width:22px;
  height:22px;
  border-radius:999px;
  border:2px solid #cbd5e1;
  background:#ffffff;
  display:grid;
  place-items:center;
}
.option-card__check::before{
  content:"";
  width:8px;
  height:4px;
  border-left:2px solid #ffffff;
  border-bottom:2px solid #ffffff;
  transform: rotate(-45deg);
  opacity:0;
}
.option-card--active{
  border-color: rgba(34,197,94,.9);
  box-shadow: 0 10px 20px rgba(34,197,94,.18);
  background: rgba(34,197,94,.06);
}
.option-card--active .option-card__check{
  border-color: var(--color-green-600);
  background: linear-gradient(135deg, var(--tw-gradient-from), var(--tw-gradient-to));
}
.option-card--active .option-card__check::before{ opacity:1; }
.track-card__cta{
  width:100%;
  margin-top: 16px;
  padding:14px 18px;
  font-size:15px;
  font-weight:700;
  gap:12px;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 14px 26px rgba(34,197,94,.32), inset 0 1px 0 rgba(255,255,255,.35);
  border-radius: 10px;
}
.track-card__cta-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  line-height:1;
}
.track-card__cta-icon svg{
  width:20px;
  height:20px;
}
.track-card__note{
  margin:10px 0 0;
  font-size: 12px;
  color:#64748b;
  text-align:center;
}
.track-card__alert{
  margin:0 0 12px;
  padding:12px 14px;
  border-radius:12px;
  font-size:12px;
  font-weight:600;
  text-align:left;
}
.track-card__alert--error{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #fecdd3;
  background:#fff1f2;
  color:#b91c1c;
}
.track-card__alert-icon{
  width:18px;
  height:18px;
  color:#ef4444;
}
.track-card__alert-icon svg{
  width:18px;
  height:18px;
}
.track-card__success{
  margin:8px 0 0;
  font-size: 12px;
  color: #15803d;
  text-align:center;
  font-weight:600;
}

/* ===== Sections ===== */
.section{
  padding: 64px 0;
}
.section--alt{
  background: var(--soft);
}
.section--industries{
  position:relative;
  color:#e2e8f0;
  background:
    radial-gradient(520px 280px at 82% 25%, rgba(34,197,94,.2), transparent 60%),
    radial-gradient(520px 280px at 18% 40%, rgba(12,23,50,.75), transparent 60%),
    linear-gradient(135deg, #172a4f 0%, #1d3b75 55%, #15284d 100%);
  overflow:hidden;
  --industries-offset: 30vw;
  --industries-duration: 52s;
}
.section--industries::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(transparent 48%, rgba(255,255,255,.08) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.08) 48% 52%, transparent 52%);
  background-size: 26px 26px;
  opacity:.24;
}
.section--industries .container{
  position:relative;
  z-index:1;
}
.section__head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 22px;
}
.section__head h2{
  margin:0;
  font-size: 30px;
  letter-spacing:-0.02em;
  color: var(--navy);
}
.section--industries .section__head h2{
  color:#ffffff;
}
.section--industries .muted{
  color: rgba(226,232,240,.85);
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* ===== Grid ===== */
.grid{ display:grid; gap:16px; }
.grid--4{ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--3{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ===== Cards ===== */
.card{
  background:white;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
  border-color: rgba(34,197,94,.35);
}
.card__icon{
  width:44px; height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.18);
  margin-bottom: 10px;
  font-size: 20px;
}
.card h3{ margin: 0 0 8px; color:var(--navy); font-size: 18px; }
.card p{ margin: 0 0 10px; color:#334155; }

.bullets{
  list-style:none;
  padding:0; margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.bullets li{
  position:relative;
  padding-left:18px;
  color:#334155;
  font-weight:600;
}
.bullets li::before{
  content:"";
  width:8px; height:8px;
  border-radius:999px;
  background: var(--orange);
  position:absolute;
  left:0; top:8px;
}

/* ===== Services (Accordion) ===== */
.section__pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 10px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  width:fit-content;
}
.section__pill--light{
  background: rgba(255,255,255,.12);
  color:#e2e8f0;
  border:1px solid rgba(255,255,255,.22);
}
.section__pill-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--orange);
  box-shadow:
    0 0 0 4px rgba(34,197,94,.25),
    0 0 10px rgba(34,197,94,.7),
    0 0 18px rgba(34,197,94,.5);
  animation: pill-dot-glow 2.6s ease-in-out infinite;
}
.services__head{
  gap:10px;
}

/* ===== Industries ===== */
.industries__head{
  gap:12px;
  margin-bottom: 26px;
}
.industries__grid{
  display:flex;
  gap:18px;
  padding: 8px 10px 18px;
  flex: 0 0 auto;
  width:max-content;
}
.industries__track{
  display:flex;
  width:max-content;
  animation: industries-marquee var(--industries-duration, 40s) linear infinite;
  will-change: transform;
}
.industries__scroller{
  position:relative;
  margin: 0 -10px;
  padding: 0 10px;
  overflow:hidden;
}
.industries__scroller::before,
.industries__scroller::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:26px;
  pointer-events:none;
  z-index:2;
}
.industries__scroller::before{
  left:0;
  background: linear-gradient(90deg, rgba(16,33,66,.55) 0%, rgba(16,33,66,0) 100%);
}
.industries__scroller::after{
  right:0;
  background: linear-gradient(270deg, rgba(16,33,66,.55) 0%, rgba(16,33,66,0) 100%);
}
.industry-card{
  background:#ffffff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  padding: 18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
  flex: 0 0 clamp(240px, 28vw, 320px);
}
.industry-card__icon{
  width:46px;
  height:46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(37, 99, 235, 0.12);
  border:1px solid rgba(37, 99, 235, 0.18);
  color:#2563eb;
  flex-shrink:0;
}
.industry-card__icon svg{
  width:22px;
  height:22px;
}
.industry-card h3{
  margin:0 0 6px;
  color: var(--navy);
  font-size: 17px;
}
.industry-card p{
  margin:0;
  color:#475569;
  font-size: 13px;
}
.industry-card:hover{
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

/* ===== Why Choose Us ===== */
.why__head{
  gap:10px;
  margin-bottom: 26px;
}
.why__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap:16px;
}
.why-card{
  background:#ffffff;
  border:1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  position:relative;
}
.why-card::before{
  content:"";
  position:absolute;
  left:18px;
  top:18px;
  width:30px;
  height:3px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--orange), rgba(34,197,94,.4));
}
.why-card h3{
  margin:10px 0 8px;
  color:var(--navy);
  font-size:16px;
  font-weight:800;
}
.why-card p{
  margin:0;
  color:#475569;
  font-size:13px;
}

/* ===== CTA Split ===== */
.section--cta{
  padding: 70px 0;
  background: linear-gradient(180deg, #0b3d78 0%, #0a3570 100%);
  position:relative;
  overflow:hidden;
}
.section--cta::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(transparent 48%, rgba(255,255,255,.1) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.1) 48% 52%, transparent 52%);
  background-size: 26px 26px;
  opacity:.18;
  pointer-events:none;
}
.cta-split{
  display:grid;
  grid-template-columns: minmax(280px, 7fr) minmax(260px, 5fr);
  gap:24px;
  align-items:stretch;
  position:relative;
  z-index:1;
}
.cta-zone{
  position:relative;
  overflow:hidden;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0f3f78 0%, #0a2f5f 100%);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:18px;
}
.cta-split::after{
  display:none;
}
.cta-split__primary{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.cta-split__copy,
.cta-split__actions{
  position:relative;
  z-index:1;
}
.cta-split__copy h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  color:#ffffff;
  letter-spacing:-0.02em;
  font-weight:800;
  line-height:1.1;
}
.cta-split__copy p{
  margin:0;
  color: rgba(226,232,240,.9);
  max-width:52ch;
}
.cta-split__sub{
  font-size:13px;
  color: rgba(226,232,240,.85);
}
.cta-split__actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
}
.cta-split__row{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
}
.cta-split__row .btn{
  width:260px;
  justify-content:center;
}
.section--cta .cta-zone .btn--primary{
  background:#ffffff;
  color:#0b3d78;
  border-color:#ffffff;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
}
.section--cta .cta-zone .btn--primary:hover{
  background:#f1f5f9;
  color:#0b3d78;
  border-color:#e2e8f0;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.22);
}
.cta-split__micro{
  margin:0;
  color: rgba(226,232,240,.8);
  font-size:12px;
}
.cta-split__bullets{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  color: rgba(226,232,240,.85);
  font-size:12px;
  font-weight:600;
  position:relative;
  z-index:1;
}
.cta-split__bullets li{
  position:relative;
  padding-left:14px;
}
.cta-split__bullets li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background: rgba(34,197,94,.7);
  position:absolute;
  left:0;
  top:7px;
}
.cta-link{
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.35);
}
.cta-link--small{
  font-size:12px;
  width:fit-content;
}
.cta-link:hover{
  border-bottom-color: rgba(255,255,255,.8);
}
.cta-resources{
  position:relative;
  z-index:1;
  background: #f8fbff;
  border:1px solid rgba(203,213,225,.65);
  border-radius:16px;
  padding:26px;
  color:#0f172a;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}
.cta-resources__eyebrow{
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(30,41,59,.6);
  font-weight:700;
}
.cta-resources h3{
  margin:8px 0 10px;
  font-size:20px;
  color:#0f172a;
}
.cta-resources p{
  margin:0 0 12px;
  color:#475569;
  font-size:13px;
  line-height:1.5;
}
.cta-resources__section-title{
  margin:4px 0 4px;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(30,41,59,.55);
  font-weight:700;
}
.cta-resources__item{
  font-size:11px;
  letter-spacing:0;
  text-transform:none;
  color:#475569;
  font-weight:500;
  line-height:1.5;
}
.cta-resources__line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  margin:0 0 12px;
}
.cta-resources__divider{
  color:#94a3b8;
  font-size:13px;
  line-height:1.2;
}
.cta-resources__micro{
  margin:0 0 12px;
  color:#64748b;
  font-size:12px;
}
.cta-resources .btn--outline{
  border-color: rgba(15,23,42,.2);
  color:#0f172a;
  background: transparent;
}
.cta-resources .btn--outline:hover{
  background: rgba(15,23,42,.05);
  border-color: rgba(15,23,42,.35);
}

.btn--outline{
  border:1px solid rgba(255,255,255,.5);
  color:#ffffff;
  background: rgba(255,255,255,.08);
}
.btn--outline:hover{
  background: rgba(255,255,255,.16);
}

/* ===== Resources Page ===== */
.resources-body{
  background:#f7f9fc;
}
.resources-hero{
  position:relative;
  padding: 80px 0 46px;
  background:
    radial-gradient(900px 400px at 15% 10%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(140deg, #cfe2ff 0%, #f3e7ff 42%, #ffe7d1 100%);
  overflow:hidden;
}
.resources-hero::before{
  content:"";
  position:absolute;
  inset:-40% -20% auto auto;
  width:480px;
  height:480px;
  background: radial-gradient(circle, rgba(11,61,120,.12), transparent 70%);
  transform: rotate(18deg);
  pointer-events:none;
}
.resources-hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, .95fr);
  gap:32px;
  align-items:center;
}
.resources-hero__copy h1{
  margin:10px 0 12px;
  font-size: clamp(32px, 4.2vw, 48px);
  color:#0b1f3b;
  letter-spacing:-0.02em;
  font-weight:800;
}
.resources-hero__copy p{
  margin:0 0 16px;
  color:#334155;
  max-width:56ch;
  font-size:15px;
}
.resources-hero__eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#1e3a8a;
  font-weight:700;
}
.resources-hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  color:#475569;
  font-size:12px;
  font-weight:600;
}
.resources-hero__card{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.9);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-radius:18px;
  padding:22px;
}
.resources-hero__card h3{
  margin:0 0 14px;
  color:#0b1f3b;
  font-size:20px;
  font-weight:700;
}
.resources-search{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  background:#ffffff;
  border:1px solid rgba(148,163,184,.35);
  border-radius:12px;
}
.resources-search__label{
  font-size:12px;
  color:#0b3d78;
  font-weight:700;
}
.resources-search input{
  border:none;
  outline:none;
  flex:1;
  background:transparent;
  font-size:13px;
}
.resources-search__btn{
  border:none;
  background:#0b3d78;
  color:#ffffff;
  padding:8px 12px;
  border-radius:10px;
  font-weight:600;
  font-size:13px;
}
.resources-search__hint{
  margin:12px 0 0;
  font-size:12px;
  color:#64748b;
}
.resources-search__hint a{
  color:#0b3d78;
  font-weight:600;
}
.resources-tiles{
  margin-top: 28px;
  position:relative;
  z-index:1;
}
.resources-tiles__head h2{
  margin:0 0 6px;
  color:#0b1f3b;
  font-size:22px;
  font-weight:800;
}
.resources-tiles__head p{
  margin:0 0 16px;
  color:#475569;
}
.resources-tiles__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:12px;
}
.resource-tile{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  background:#ffffff;
  border:1px solid rgba(226,232,240,.9);
  border-radius:12px;
  font-size:13px;
  font-weight:700;
  color:#0b1f3b;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}
.resource-tile:hover{
  border-color: rgba(11,61,120,.35);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.10);
}
.resources-section{
  padding: 70px 0;
  background:#ffffff;
}
.resources-section__head{
  margin-bottom:22px;
}
.checklist-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap:20px;
}
.checklist-card{
  background:#ffffff;
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.checklist-card__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#eaf2ff;
  color:#0b3d78;
}
.checklist-card h3{
  margin:0;
  font-size:18px;
  color:#0b1f3b;
}
.checklist-card p{
  margin:0;
  color:#475569;
  font-size:13px;
}
.checklist-list{
  list-style:none;
  margin:8px 0 0;
  padding:0;
  display:grid;
  gap:6px;
  color:#334155;
  font-size:12px;
}
.checklist-list li{
  position:relative;
  padding-left:14px;
}
.checklist-list li::before{
  content:\"\"; 
  width:6px;
  height:6px;
  border-radius:999px;
  background:#0b3d78;
  position:absolute;
  left:0;
  top:6px;
}
.checklist-link{
  margin-top:6px;
  font-size:12px;
  font-weight:700;
  color:#0b3d78;
  width:fit-content;
  border-bottom:1px solid rgba(11,61,120,.35);
}
.checklist-link:hover{
  border-bottom-color:#0b3d78;
}
.resources-cta{
  padding: 56px 0;
  background: linear-gradient(135deg, #0b3d78 0%, #0a2f5f 100%);
  color:#ffffff;
}
.resources-cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.resources-cta__inner h2{
  margin:0 0 8px;
  font-size:26px;
}
.resources-cta__inner p{
  margin:0;
  color: rgba(226,232,240,.9);
  max-width:60ch;
}

@media (max-width: 860px){
  .cta-split{
    grid-template-columns: 1fr;
    text-align:left;
  }
  .cta-split::after{
    display:none;
  }
  .cta-split__actions{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-split__actions .btn{
    flex:0 0 auto;
    width:auto;
    justify-content:center;
  }
  .cta-split__row{
    width:100%;
    align-items:flex-start;
  }
  .resources-hero__inner{
    grid-template-columns: 1fr;
  }
  .checklist-grid{
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (prefers-reduced-motion: reduce){
  .industries__scroller{
    overflow:auto;
  }
  .industries__track{
    animation: none;
    transform: none;
  }
}

@keyframes industries-marquee{
  0%{ transform: translateX(var(--industries-offset, 18vw)); }
  100%{ transform: translateX(calc(-50% + var(--industries-offset, 18vw))); }
}
.services__layout{
  display:grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.1fr);
  gap:24px;
  align-items:stretch;
}
.services__side{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.services__menu{
  display:flex;
  flex-direction:column;
  gap:14px;
  height:100%;
}
.service-item{
  width:100%;
  font-family: inherit;
  appearance:none;
  border:1px solid rgba(226,232,240,.95);
  border-radius:16px;
  padding:16px 18px;
  background:#ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap:12px;
  align-items:start;
  text-align:left;
  cursor:pointer;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.service-item:hover{
  border-color: rgba(30,64,175,.35);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
  transform: translateY(-1px);
}
.service-item.is-active{
  border-color: rgba(34,197,94,.9);
  background: #f6fffb;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}
.service-item__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#f1f5f9;
  color:#1e293b;
}
.service-item__icon svg{ width:22px; height:22px; }
.service-item__text{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.service-item__title{
  font-weight:800;
  color:#0f172a;
  font-size:21px;
  font-family: inherit;
}
.service-item.is-active .service-item__title{
  color: #0b3d78;
}
.service-item.is-active .service-item__icon{
  color: #0b3d78;
  background: rgba(11,61,120,.12);
}
.service-item__meta{
  color:#475569;
  font-weight:600;
  font-size:13px;
}
.service-item__expanded{
  grid-column: 1 / -1;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 8px;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition: max-height .2s ease, opacity .2s ease;
}
.service-item.is-active .service-item__expanded{
  max-height:200px;
  opacity:1;
}
.service-item__chev{
  width:20px;
  height:20px;
  color:#64748b;
  transition: transform .2s ease;
}
.service-item.is-active .service-item__chev{
  transform: rotate(180deg);
}
.service-item__desc{
  color:#334155;
  font-size:13px;
  line-height:1.5;
}
.service-item__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.service-tag{
  padding:4px 10px;
  border-radius:999px;
  background:#eef5ff;
  color:#1e40af;
  font-size:11px;
  font-weight:700;
}
.service-panel{
  border:1px solid rgba(226,232,240,.95);
  border-radius:20px;
  overflow:hidden;
  background:#ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
  flex:1 1 auto;
  display:grid;
  grid-template-rows: minmax(220px, 1fr) auto auto;
  row-gap:16px;
}
.service-panel--empty .service-panel__meta{
  display:none;
}
.service-panel__tag{
  display:none;
}
.service-panel__media{
  position:relative;
  height:auto;
  background-image: linear-gradient(180deg, rgba(15,23,42,.05), rgba(15,23,42,.65)), var(--service-image, none);
  background-size: cover;
  background-position:center;
}
.service-panel__overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px 20px;
  color:#ffffff;
  background: linear-gradient(180deg, rgba(15,23,42,0) 25%, rgba(15,23,42,.75));
}
.service-panel__overlay h3{
  margin:0 0 6px;
  font-size:22px;
  color:#ffffff;
}
.service-panel__overlay p{
  margin:0;
  color: rgba(255,255,255,.88);
  font-size:13px;
}
.service-panel__meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  padding:16px 18px;
  background:#ffffff;
}
.service-stat{
  background:#f8fafc;
  border:1px solid rgba(226,232,240,.9);
  border-radius:12px;
  padding:10px 12px;
  text-align:center;
}
.service-stat__value{
  font-weight:800;
  color:#1d4ed8;
  font-size:16px;
}
.service-stat__label{
  font-size:11px;
  color:#64748b;
  margin-top:4px;
}
.service-cta{
  margin:0;
  padding:24px;
  border-radius:16px;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color:#ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}
.service-cta h4{
  margin:0 0 6px;
  font-size:18px;
  font-weight:800;
  color:#ffffff;
}
.service-cta p{
  margin:0 0 12px;
  color: rgba(255,255,255,.85);
  font-size:13px;
}
.service-cta__btn{
  width:100%;
  justify-content:center;
  background:#ffffff;
  color:#1e40af;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.6);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}
.service-cta__btn:hover{
  background:#f8fafc;
  color:#1e40af;
}

/* ===== Features ===== */
.feature{
  background:white;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}
.feature__icon{
  width:48px; height:48px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(11,31,59,.06);
  border:1px solid rgba(11,31,59,.10);
  margin-bottom: 10px;
  font-size: 22px;
}
.feature h3{ margin:0 0 6px; color:var(--navy); }
.feature p{ margin:0; color:#334155; }

/* ===== CTA Panel ===== */
.cta-panel{
  margin-top: 24px;
  border-radius: var(--radius);
  border:1px solid rgba(34,197,94,.25);
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(11,31,59,.04));
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta-panel h3{ margin:0 0 4px; color:var(--navy); }
.cta-panel__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* ===== Lanes Map ===== */
.lanes-map{
  border-radius: var(--radius);
  border: 1px solid rgba(229,231,235,.95);
  background:
    radial-gradient(90px 70px at 20% 45%, rgba(11,31,59,.14), transparent 60%),
    radial-gradient(120px 80px at 55% 55%, rgba(11,31,59,.12), transparent 60%),
    radial-gradient(90px 70px at 80% 40%, rgba(11,31,59,.12), transparent 60%),
    linear-gradient(135deg, rgba(11,31,59,.06), rgba(34,197,94,.06));
  height: 360px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}
.lanes-map__overlay{ position:absolute; inset:0; }

.lane-line{
  position:absolute;
  height:3px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.85), transparent);
  filter: drop-shadow(0 8px 16px rgba(34,197,94,.22));
  opacity:.95;
}
.lane-line--1{ width:78%; top:44%; left:10%; transform: rotate(-12deg); }
.lane-line--2{ width:60%; top:58%; left:16%; transform: rotate(6deg); }
.lane-line--3{ width:44%; top:34%; left:30%; transform: rotate(18deg); }

.lane-label{
  position:absolute;
  font-weight:900;
  font-size: 12px;
  letter-spacing:.04em;
  color: rgba(11,31,59,.86);
  background: rgba(255,255,255,.78);
  border:1px solid rgba(229,231,235,.9);
  padding:8px 10px;
  border-radius:999px;
}
.lane-label--a{ top:18%; left:12%; }
.lane-label--b{ top:66%; left:14%; }
.lane-label--c{ top:26%; left:62%; }

/* ===== Testimonials ===== */
.quote{
  margin:0;
  background:white;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}
.quote blockquote{
  margin:0;
  font-weight:700;
  color:#0f2b52;
  line-height:1.5;
}
.quote__name{ font-weight:900; color:var(--navy); display:block; margin-top:12px; }
.quote__role{ font-size: 13px; }

/* ===== Form ===== */
.form{
  background:white;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.form--compact{
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.form__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.form__grid--modal{
  grid-template-columns: repeat(2, 1fr);
}
.form__actions--center{
  justify-content:center;
}
.form__actions--center .btn{
  width:100%;
}
.modal-summary{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-bottom: 12px;
}
.modal-summary .field span,
.form__grid--modal .field span{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#475569;
  font-weight:600;
}
.field__control{
  position:relative;
}
.field__icon{
  position:absolute;
  left:12px;
  top:50%;
  transform: translateY(-50%);
  color:#94a3b8;
  width:18px;
  height:18px;
}
.field__icon svg{
  width:18px;
  height:18px;
}
.field--icon input{
  padding-left:38px;
  background:#f8fafc;
  border-color:#dbe3f1;
}
.field--readonly input{
  background:#eef5ff;
  border-color:#c7d7ff;
}
.modal-quote__body .field input{
  font-size:13px;
  font-weight:500;
}
.modal-quote__body .field.is-valid input{
  border-color:#22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.modal-quote__body .field.is-invalid input{
  border-color:#ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}
.modal-quote__notice{
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #f3d08b;
  background:#fff7e6;
  color:#92400e;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
}
.modal-quote__alert{
  margin-top:0;
  margin-bottom:12px;
  padding:12px 14px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
}
.modal-quote__alert--danger{
  border:1px solid #fecdd3;
  background:#fff1f2;
  color:#b91c1c;
}
.modal-quote__alert-icon{
  width:18px;
  height:18px;
  color:#ef4444;
}
.modal-quote__alert-icon svg{
  width:18px;
  height:18px;
}
.modal-quote__notice strong{
  color:#b45309;
}
.modal-quote__notice-icon{
  width:18px;
  height:18px;
  color:#f59e0b;
}
.modal-quote__notice-icon svg{
  width:18px;
  height:18px;
}
.modal-quote__footnote{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:12px;
  color:#64748b;
  text-align:center;
}
.modal-quote__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#22c55e;
}
.modal-content--quote{
  border-radius: 18px;
  border:1px solid rgba(229,231,235,.95);
  overflow:hidden;
}
.modal-dialog--quote{
  max-width: 720px;
}
.modal-quote__header{
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color:#ffffff;
  padding:18px 22px;
  border-bottom:none;
  position:relative;
}
.modal-quote__title{
  margin:0;
  font-size:18px;
  font-weight:700;
}
.modal-quote__subtitle{
  margin:6px 0 0;
  font-size:12px;
  color: rgba(255,255,255,.85);
}
.modal-quote__close{
  position:absolute;
  right:16px;
  top:12px;
  width:32px;
  height:32px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color:#ffffff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.modal-quote__body{
  padding:18px 22px 22px;
}
.hp-field{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field span{ font-weight:800; color: var(--navy); font-size: 13px; }
.field input, .field select{
  width:100%;
  border:1px solid rgba(229,231,235,.95);
  border-radius: 14px;
  padding: 12px 12px;
  font-weight:650;
  outline:none;
  transition: border-color .12s ease, box-shadow .12s ease;
  background: white;
}
.modal-quote__body .field--icon input{
  padding-left:42px;
}
.field input:focus, .field select:focus{
  border-color: rgba(34,197,94,.55);
  box-shadow: 0 0 0 4px rgba(34,197,94,.14);
}
.form__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* ===== Footer ===== */
.footer{
  background:
    radial-gradient(420px 220px at 80% 20%, rgba(34,197,94,.08), transparent 60%),
    linear-gradient(135deg, #07162b 0%, #0b1f3b 55%, #061226 100%);
  color: #e2e8f0;
  font-size:12px;
  padding: 44px 0 18px;
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(transparent 48%, rgba(255,255,255,.06) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.06) 48% 52%, transparent 52%);
  background-size: 28px 28px;
  opacity:.18;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:18px;
  padding-bottom: 18px;
  position:relative;
  z-index:1;
}
.brand--footer .brand__name{ color:#ffffff; }
.brand--footer .brand__tag{ color: rgba(226,232,240,.75); }
.footer__brand p{
  margin-top:10px;
}

.footer__col h4{
  margin:0 0 10px;
  font-size: 12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(226,232,240,.85);
}
.footer__col a{
  display:block;
  padding:6px 0;
  color: rgba(226,232,240,.9);
  font-size:12px;
}
.footer__col a:hover{ text-decoration:underline; }

.footer__bottom{
  border-top:1px solid rgba(148,163,184,.2);
  padding-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
  font-size:11px;
}

.badges{ display:flex; gap:10px; flex-wrap:wrap; }
.badge--soft{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#e2e8f0;
}

/* ===== New Footer ===== */
.site-footer{
  background:
    radial-gradient(420px 220px at 80% 20%, rgba(34,197,94,.08), transparent 60%),
    linear-gradient(135deg, #07162b 0%, #0b1f3b 55%, #061226 100%);
  color: #e2e8f0;
  font-size:12px;
  line-height:1.35;
  padding: 48px 0 10px;
  position:relative;
  overflow:hidden;
}
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(transparent 48%, rgba(255,255,255,.06) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.06) 48% 52%, transparent 52%);
  background-size: 28px 28px;
  opacity:.18;
}

.footer-container{
  display:grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap:22px;
  padding-bottom:24px;
  position:relative;
  z-index:1;
}
.footer-brand .brand{
  min-width:0;
}
.brand-description{
  margin:12px 0 16px;
  color: rgba(226,232,240,.82);
}
.brand-description strong{
  color:#ffffff;
}

.footer-nav h4{
  margin:0 0 10px;
  font-size: 12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(226,232,240,.85);
}
.footer-nav ul{
  list-style:none;
  margin:0 0 16px;
  padding:0;
  display:grid;
  gap:6px;
}
.footer-nav li{
  color: rgba(226,232,240,.9);
  font-size:12px;
}
.footer-nav a{
  color: rgba(226,232,240,.9);
}
.footer-nav a:hover{
  text-decoration:underline;
}

.footer-trust{
  border-top:1px solid rgba(148,163,184,.2);
  padding:12px 0;
  position:relative;
  z-index:1;
}
.footer-trust p{
  margin:0 auto;
  max-width: var(--container);
  padding: 0 16px;
  text-align:center;
  color: rgba(226,232,240,.78);
  font-size:11px;
}

.footer-bottom{
  border-top:1px solid rgba(148,163,184,.2);
  padding:14px 16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  max-width: var(--container);
  margin:0 auto;
  position:relative;
  z-index:1;
  font-size:11px;
  color: rgba(226,232,240,.75);
}
.footer-bottom p{
  margin:0;
}
.footer-legal{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-legal a{
  color:#e2e8f0;
  opacity:.9;
}
.footer-legal a:hover{
  opacity:1;
  text-decoration:underline;
}

/* ===== Atlas Footer ===== */
.site-footer--atlas{
  background:
    radial-gradient(420px 220px at 80% 20%, rgba(34,197,94,.08), transparent 60%),
    linear-gradient(135deg, #07162b 0%, #0b1f3b 55%, #061226 100%);
  color:#e2e8f0;
  padding:56px 0 0;
  position:relative;
  overflow:hidden;
  font-size:14px;
}
.site-footer--atlas::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(transparent 48%, rgba(255,255,255,.06) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.06) 48% 52%, transparent 52%);
  background-size: 34px 34px;
  opacity:.2;
}
.footer-atlas{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap:32px;
  padding-bottom:32px;
  position:relative;
  z-index:1;
}
.footer-atlas__logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#ffffff;
  font-weight:700;
  letter-spacing:.02em;
}
.footer-atlas__mark{
  width:36px;
  height:36px;
  border-radius:10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#ffffff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.footer-atlas__name{
  font-size:1.05rem;
}
.footer-atlas__brand p{
  margin:14px 0 18px;
  color: rgba(226,232,240,.78);
  max-width:42ch;
}
.footer-atlas__top{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.4);
  color:#e2e8f0;
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.12em;
}
.footer-atlas__top:hover{
  border-color:#ffffff;
  color:#ffffff;
}
.footer-atlas__cols{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:28px;
}
.footer-atlas__col h4{
  margin:0 0 12px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color: rgba(226,232,240,.9);
}
.footer-atlas__col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.footer-atlas__col a{
  color: rgba(226,232,240,.8);
  text-decoration:none;
}
.footer-atlas__col a:hover{
  color:#ffffff;
  text-decoration:underline;
}
.footer-atlas__bottom{
  border-top:1px solid rgba(226,232,240,.2);
  padding:18px 0 26px;
  position:relative;
  z-index:1;
  color: rgba(226,232,240,.7);
  font-size:12px;
}
.footer-atlas__bottom p{
  margin:0;
}
.footer-atlas__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-atlas__legal{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-atlas__legal a{
  color:#e2e8f0;
  opacity:.9;
  text-decoration:none;
}
.footer-atlas__legal a:hover{
  opacity:1;
  text-decoration:underline;
}
.footer-atlas__trust{
  border-top:1px solid rgba(226,232,240,.2);
  padding:12px 0;
  position:relative;
  z-index:1;
  text-align:center;
  color: rgba(226,232,240,.78);
  font-size:11px;
}
.footer-atlas__trust p{
  margin:0;
}

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

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nav{ display:none; }
  .hamburger{ display:inline-block; }
  .header__actions .btn{ display:none; }
  .mobile-nav__cta{ display:none; }
  .track-card{ padding-top: 34px; }
  .track-card__fields{ grid-template-columns: 1fr; }
  .track-card__badge{
    position:absolute;
    top:-16px;
    right:-10px;
    width:150px;
    padding:8px 12px 8px 34px;
    font-size:11px;
  }
  .track-card__head{
    margin:-34px -22px 16px;
    border-radius: 22px 22px 0 0;
  }
  .services__layout{
    grid-template-columns: 1fr;
  }
  .service-panel__media{
    height:220px;
  }
  .service-panel__meta{
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stats{ gap:18px; }
  .track-card__options{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .footer-container{ grid-template-columns: 1fr 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .hero__actions{ width:100%; }
  .hero__actions .btn{ width:100%; justify-content:center; }
  .hero__stats{ flex-direction:column; gap:12px; }
  .topbar__right{ display:none; }
  .resources-hero{ padding: 64px 0 40px; }
  .resources-hero__card{ padding:18px; }
  .resources-tiles__grid{ grid-template-columns: 1fr; }
  .checklist-grid{ grid-template-columns: 1fr; }
  .resources-cta__inner{ align-items:flex-start; }
  .footer__grid{ grid-template-columns: 1fr; }
  .footer-container{ grid-template-columns: 1fr; }
  .footer-bottom{ align-items:flex-start; }
  .form__grid--modal{ grid-template-columns: 1fr; }
  .modal-summary{ grid-template-columns: 1fr; }
  .service-panel__meta{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  .track-card__badge{ animation: none; }
  .hero__pill-dot{ animation: none; }
}

