
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg:#06111f;
  --bg2:#07192d;
  --panel:#102237;
  --panel2:#142a44;
  --line:rgba(255,255,255,.13);
  --line2:rgba(255,255,255,.08);
  --blue:#087cff;
  --blue2:#006ce7;
  --muted:#b8c7dc;
  --soft:#edf5ff;
  --max:1536px;
  --radius:18px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,Arial,sans-serif;
  background:#06111f;
  color:#fff;
  min-height:100vh;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.site{
  min-height:100vh;
  background:
    radial-gradient(900px 540px at 73% 10%, rgba(33,114,225,.24), transparent 62%),
    linear-gradient(135deg,#05101d 0%,#07192d 52%,#08213b 100%);
}

/* NAV */
.nav{
  height:86px;
  background:rgba(5,13,24,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-inner{
  max-width:var(--max);
  height:86px;
  margin:0 auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:300px;
}
.brand img{
  width:64px;
  height:64px;
  object-fit:contain;
}
.brand-title{
  font-size:24px;
  font-weight:900;
  letter-spacing:.6px;
  line-height:1;
}
.brand-sub{
  margin-top:6px;
  color:#d8e4f3;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.15px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:25px;
  font-size:14px;
  font-weight:800;
}
.nav-links a{white-space:nowrap}
.nav-links a:hover{color:#d7ebff}
.nav-links .active{
  border-bottom:2px solid var(--blue);
  padding-bottom:12px;
}
.nav-outline{
  border:1px solid rgba(255,255,255,.43);
  border-radius:10px;
  padding:15px 24px!important;
}
.nav-primary{
  background:linear-gradient(180deg,var(--blue),var(--blue2));
  border-radius:10px;
  padding:16px 24px!important;
  box-shadow:0 16px 34px rgba(0,111,255,.31);
}
.mobile-menu{display:none;font-size:30px}

/* COMMON */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 24px;
  border-radius:10px;
  border:1px solid transparent;
  font-size:15px;
  font-weight:900;
  color:#fff;
  white-space:nowrap;
}
.btn.primary{
  background:linear-gradient(180deg,#128dff,#006be7);
  box-shadow:0 14px 32px rgba(0,114,255,.32);
}
.btn.dark{
  background:rgba(255,255,255,.045);
  border-color:rgba(255,255,255,.34);
}
.btn.small{min-height:42px;padding:0 17px;font-size:13px}
.eyebrow{
  color:#168cff;
  font-weight:900;
  letter-spacing:5px;
  font-size:15px;
  margin-bottom:18px;
  text-transform:uppercase;
}

/* INDEX */
.home-main{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  border-left:1px solid rgba(255,255,255,.08);
  border-right:1px solid rgba(255,255,255,.08);
}
.hero{
  position:relative;
  min-height:520px;
  display:grid;
  grid-template-columns:1fr 1.08fr;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.hero-copy{
  position:relative;
  z-index:3;
  padding:58px 34px 44px 42px;
}
.hero h1{
  font-size:60px;
  line-height:1.05;
  letter-spacing:-2.5px;
  font-weight:900;
  max-width:690px;
}
.hero p{
  max-width:600px;
  margin-top:18px;
  color:#f0f5fc;
  font-size:18px;
  line-height:1.55;
}
.hero-art{
  position:relative;
  min-height:520px;
  background:url('hero-truck.png') center center/cover no-repeat;
}
.hero-art:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(6,17,31,.98) 0%,rgba(6,17,31,.50) 25%,rgba(6,17,31,.04) 60%),
    linear-gradient(180deg,rgba(6,17,31,.03),rgba(6,17,31,.47));
}
.actions{display:flex;gap:18px;margin-top:30px;margin-bottom:14px;flex-wrap:wrap}

.metrics{
  position:relative;
  z-index:4;
  margin-top:0;
  padding:26px 42px 28px;
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:18px;
}
.metric{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:start;
  padding-right:14px;
  border-right:1px solid rgba(255,255,255,.16);
  min-width:0;
}
.metric:last-child{border-right:0}
.line-icon{
  width:32px;height:32px;border:2px solid var(--blue);
  color:var(--blue);
  border-radius:8px;
  display:grid;
  place-items:center;
  font-weight:900;
  flex:0 0 auto;
}
.metric h3{font-size:16px;line-height:1.15;margin-bottom:5px}
.metric p{color:#f0f5fc;font-size:13px;line-height:1.35}

.service-shell{
  border:1px solid rgba(255,255,255,.16);
  border-radius:0 0 24px 24px;
  padding:20px 36px 28px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.service-card{
  min-height:132px;
  display:grid;
  grid-template-columns:68px 1fr;
  gap:18px;
  align-items:center;
  padding:22px;
  border-radius:12px;
  border:1px solid var(--line2);
  background:linear-gradient(180deg,#13283f,#0d1b2d);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.circle-icon{
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(180deg,#147fff,#005fce);
  display:grid;
  place-items:center;
  font-size:24px;
}
.service-card h3{font-size:19px;margin-bottom:8px}
.service-card p{color:#edf4ff;font-size:15px;line-height:1.45}

.lane-section{
  padding:36px 42px 42px;
  display:grid;
  grid-template-columns:.78fr 1.45fr .85fr;
  gap:34px;
  align-items:center;
}
.lane-copy h2{
  font-size:35px;
  line-height:1.12;
  letter-spacing:-1px;
}
.lane-copy p{
  margin-top:18px;
  color:#dbe7f6;
  font-size:15px;
  line-height:1.55;
}
.lanes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.lane{
  min-height:178px;
  padding:18px 14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(3,13,25,.38);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.route-shapes{
  width:150px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  margin-bottom:10px;
}
.state-svg{
  width:56px;
  height:56px;
  filter:drop-shadow(0 0 12px rgba(8,124,255,.30));
}
.state-svg path{
  fill:#087cff;
  stroke:#47a4ff;
  stroke-width:1.4;
}
.arrow{
  width:42px;
  height:26px;
}
.arrow path{
  fill:none;
  stroke:#fff;
  stroke-width:3;
  stroke-linecap:round;
  stroke-dasharray:3 5;
  opacity:.9;
}
.arrow polygon{fill:#fff}
.lane h3{font-size:20px;margin-bottom:6px}
.lane p{font-size:15px;line-height:1.25;color:#e3edf8}
.cta-card{
  min-height:210px;
  padding:26px;
  border:1px solid rgba(255,255,255,.16);
  border-top:5px solid var(--blue);
  border-radius:16px;
  background:linear-gradient(180deg,#10243a,#071625);
}
.cta-card h3{font-size:24px;line-height:1.1}
.cta-card p{margin-top:10px;color:#d9e5f5}
.cta-card .phone{margin-top:18px;color:var(--blue);font-size:26px;font-weight:900}
.cta-card .email{margin-top:8px;color:#eaf4ff;font-size:16px;font-weight:800}

.footer-main{
  max-width:var(--max);
  margin:0 auto;
  border-top:1px solid rgba(255,255,255,.11);
  padding:34px 42px;
  display:grid;
  grid-template-columns:1.25fr repeat(4,1fr);
  gap:28px;
  color:#dbe7f6;
}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-brand img{width:68px;height:68px}
.footer-title{font-size:22px;font-weight:900;line-height:1.05}
.footer-col h4{font-size:13px;margin-bottom:12px;color:#fff;text-transform:uppercase}
.footer-col a,.footer-col p{display:block;font-size:14px;color:#c7d7ea;margin:8px 0}
.footer-bottom{
  max-width:var(--max);
  margin:0 auto;
  padding:0 42px 28px;
  color:#8294aa;
  font-size:12px;
}

/* SUBPAGES */
.page-main{
  max-width:var(--max);
  margin:0 auto;
  padding:42px 32px 56px;
}
.split-page{
  min-height:540px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg,rgba(6,17,31,.97) 0%,rgba(6,17,31,.90) 36%,rgba(6,17,31,.28) 72%,rgba(6,17,31,.16) 100%),
    var(--subimage) right center/auto 100% no-repeat,
    linear-gradient(135deg,#071527,#0a2340);
  overflow:hidden;
}
.split-content{
  width:min(580px,100%);
  padding:44px 0 42px 34px;
}
.split-content h1{
  font-size:46px;
  line-height:1.02;
  letter-spacing:-1.4px;
  margin-bottom:14px;
}
.split-content p{
  color:#d9e5f5;
  font-size:16px;
  line-height:1.6;
}
.checklist{margin:18px 0 0;display:grid;gap:10px}
.checkline{display:flex;align-items:center;gap:10px;color:#d9e5f5;font-size:14px}
.check{
  width:20px;height:20px;border:1px solid var(--blue);
  border-radius:50%;display:grid;place-items:center;color:var(--blue);font-size:12px;
}
.subbox{
  margin-top:22px;
  width:min(455px,100%);
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.045);
  padding:16px;
  color:#b9c9dd;
  font-size:11px;
  line-height:1.55;
}
.portal-card{
  margin-top:22px;
  width:min(370px,100%);
  padding:20px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  background:rgba(255,255,255,.045);
}
.about-page{
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg,rgba(6,17,31,.97) 0%,rgba(6,17,31,.88) 38%,rgba(6,17,31,.26) 77%,rgba(6,17,31,.10) 100%),
    url('office-building.png') right top/auto 345px no-repeat,
    linear-gradient(135deg,#071527,#0a2340);
}
.about-head{padding:44px 34px 20px}
.about-head h1{font-size:44px;margin-bottom:14px}
.about-head p{max-width:520px;color:#d9e5f5;line-height:1.65}
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin:28px 34px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.035);
}
.stat{padding:22px;text-align:center;border-right:1px solid rgba(255,255,255,.10)}
.stat:last-child{border-right:0}
.stat strong{display:block;color:var(--blue);font-size:28px}
.stat span{display:block;margin-top:4px;font-size:13px;color:#dce9f8}
.contact-page{
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(90deg,rgba(6,17,31,.97) 0%,rgba(6,17,31,.86) 36%,rgba(6,17,31,.28) 74%,rgba(6,17,31,.12) 100%),
    url('office-building.png') right top/auto 330px no-repeat,
    linear-gradient(135deg,#071527,#0a2340);
}
.contact-head{padding:44px 34px 18px}
.contact-head h1{font-size:44px;margin-bottom:14px}
.contact-head p{max-width:460px;color:#d9e5f5;line-height:1.6}
.contact-layout{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:18px;
  padding:18px 34px 32px;
}
.contact-info,.team-card,.message-card,.availability{
  background:linear-gradient(180deg,rgba(18,39,63,.92),rgba(10,26,43,.95));
  border:1px solid rgba(255,255,255,.11);
  border-radius:12px;
}
.contact-info{padding:18px 22px}
.contact-item{
  display:grid;grid-template-columns:44px 1fr;gap:14px;align-items:center;
  padding:17px 0;border-bottom:1px solid rgba(255,255,255,.08);
}
.contact-item:last-child{border-bottom:0}
.contact-icon{
  width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.06);
  display:grid;place-items:center;color:#d3e5ff;
}
.contact-item strong{font-size:13px}
.contact-item span{display:block;margin-top:5px;color:#fff;font-size:13px;line-height:1.35}
.team-card{padding:20px}
.team-card h2{font-size:22px;margin-bottom:14px}
.team-list{display:grid;gap:10px}
.team-row{
  display:grid;grid-template-columns:1.2fr 1fr;gap:12px;align-items:center;
  padding:13px 16px;border-radius:10px;background:rgba(255,255,255,.045);
}
.person{display:flex;align-items:center;gap:12px}
.avatar{
  width:34px;height:34px;border-radius:50%;
  background:linear-gradient(180deg,#d9e7f7,#68849f);
  display:grid;place-items:center;color:#1a2b3f;font-weight:900;
}
.role{font-size:12px;color:#d6e3f4;margin-top:2px}
.ext{font-size:12px;line-height:1.45}
.availability{
  margin:0 34px 34px;
  min-height:78px;
  padding:20px 26px;
  display:flex;align-items:center;gap:18px;
  background:
    linear-gradient(90deg,rgba(7,121,255,.65),rgba(11,28,48,.92)),
    url('hero-truck.png') right center/auto 140% no-repeat;
}
.legal-page{
  border:1px solid rgba(255,255,255,.12);
  min-height:520px;
  background:
    radial-gradient(700px 420px at 92% 6%,rgba(35,112,222,.20),transparent 60%),
    linear-gradient(135deg,#071527,#0a2340);
}
.legal-content{width:min(820px,100%);padding:44px 34px}
.legal-content h1{font-size:38px;margin-bottom:12px}
.legal-content p{color:#d9e5f5;line-height:1.55;font-size:14px}
.accordion{
  margin-top:20px;
  width:min(760px,100%);
  border:1px solid rgba(255,255,255,.10);
  border-radius:11px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
details{border-bottom:1px solid rgba(255,255,255,.08)}
details:last-child{border-bottom:0}
summary{
  list-style:none;cursor:pointer;padding:13px 16px;
  font-size:13px;font-weight:700;display:flex;justify-content:space-between;align-items:center;
}
summary::-webkit-details-marker{display:none}
summary:after{content:"+";color:#bfd0e6}
details[open] summary:after{content:"−"}
details p{padding:0 16px 14px;color:#d9e5f5;line-height:1.55;font-size:12.5px}


@media(max-width:1400px){
  .metrics{grid-template-columns:repeat(3, minmax(0,1fr));}
  .metric:nth-child(3){border-right:0;}
  .metric:nth-child(4), .metric:nth-child(5){border-top:1px solid rgba(255,255,255,.10);padding-top:14px;}
  .hero h1{font-size:54px;}
}

@media(max-width:1180px){
  .nav-links{display:none}.mobile-menu{display:block}.brand{min-width:0}
  .hero{grid-template-columns:1fr}.hero-copy{padding:44px 24px 28px}.hero-art{min-height:360px}
  .hero h1{font-size:44px;letter-spacing:-1.5px}
  .metrics{margin-top:0;padding:24px;grid-template-columns:1fr}
  .metric{border-right:0;border-bottom:1px solid rgba(255,255,255,.12);padding-bottom:16px}
  .service-shell{margin:0 18px;padding:16px}.service-grid{grid-template-columns:1fr}
  .lane-section{grid-template-columns:1fr;padding:32px 24px}.lanes{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .footer-main{grid-template-columns:1fr 1fr}
}
@media(max-width:660px){
  .nav{height:58px}.nav-inner{height:58px;padding:0 12px}.brand img{width:41px;height:41px}
  .brand-title{font-size:13px}.brand-sub{font-size:7px}.mobile-menu{font-size:24px}
  .hero-copy{padding:32px 18px 24px}.hero h1{font-size:38px}.hero p{font-size:15px}.hero-art{min-height:280px}
  .btn{width:100%}.actions{gap:10px}
  .page-main{padding:0}.split-page{min-height:calc(100vh - 58px);border-left:0;border-right:0}
  .split-content{padding:24px 14px;width:100%}.split-content h1{font-size:34px}
  .about-head,.contact-head,.legal-content{padding:28px 16px 16px}
  .contact-layout{padding:18px 12px}.availability{margin:0 12px 20px;padding:18px}
  .team-row{grid-template-columns:1fr}.stats{grid-template-columns:1fr;margin:20px 12px}
  .footer-main{grid-template-columns:1fr;padding:28px 18px}.footer-bottom{padding:0 18px 24px}
}


/* Accurate lane state outlines: external SVG state outline assets */
.route-shapes{
  width:190px !important;
  height:82px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:7px !important;
  margin-bottom:10px !important;
}
.state-img{
  display:block;
  object-fit:contain;
  filter: invert(38%) sepia(98%) saturate(2957%) hue-rotate(199deg) brightness(101%) contrast(102%) drop-shadow(0 0 10px rgba(8,124,255,.35));
}
.state-ca-img{width:50px;height:68px}
.state-tx-img{width:72px;height:68px}
.state-md-img{width:82px;height:50px}
.state-fl-img{width:68px;height:70px}
.arrow{
  width:38px !important;
  height:26px !important;
  flex:0 0 auto;
}
.arrow path{
  fill:none;
  stroke:#ffffff;
  stroke-width:3;
  stroke-linecap:round;
  stroke-dasharray:3 5;
  opacity:.9;
}
.arrow polygon{fill:#ffffff}

/* Final hero image fix: make the truck image bleed across the full hero background */
.hero{
  grid-template-columns:1fr;
  min-height:520px;
}
.hero-copy{
  max-width:690px;
  padding:56px 0 42px 42px;
  position:relative;
  z-index:3;
}
.hero-art{
  position:absolute;
  inset:0;
  min-height:520px;
  background:url('hero-truck.png') right center/cover no-repeat;
  z-index:1;
}
.hero-art:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(6,17,31,.99) 0%,rgba(6,17,31,.91) 27%,rgba(6,17,31,.42) 55%,rgba(6,17,31,.08) 100%),
    linear-gradient(180deg,rgba(6,17,31,.02),rgba(6,17,31,.48));
}
.actions{
  position:relative;
  z-index:4;
}

/* Mobile menu drawer */
.mobile-menu{
  cursor:pointer;
  user-select:none;
}
.mobile-panel{
  display:none;
  position:fixed;
  top:58px;
  left:0;
  right:0;
  z-index:200;
  background:rgba(5,13,24,.98);
  border-bottom:1px solid rgba(255,255,255,.13);
  padding:14px 18px 20px;
  box-shadow:0 20px 50px rgba(0,0,0,.38);
}
.mobile-panel.open{
  display:grid;
  gap:10px;
}
.mobile-panel a{
  display:block;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:10px;
  background:rgba(255,255,255,.04);
  font-weight:800;
}
.mobile-panel a.primary-mobile{
  background:linear-gradient(180deg,#128dff,#006be7);
  border-color:transparent;
}
.mobile-panel a.outline-mobile{
  border-color:rgba(255,255,255,.38);
}
@media(max-width:1180px){
  .hero{
    min-height:620px;
  }
  .hero-art{
    min-height:620px;
  }
  .hero-copy{
    max-width:680px;
  }
}
@media(max-width:660px){
  .hero{
    min-height:560px;
  }
  .hero-art{
    min-height:560px;
    background-position:63% center;
  }
  .hero-copy{
    max-width:100%;
    padding:32px 18px 24px;
  }
}
