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

:root{
  --navy:#0B1F3A;
  --navy-2:#102B4C;
  --steel:#5A6772;
  --silver:#C9CED3;
  --white:#FFFFFF;
  --bg:#F4F6F8;
  --text:#1B2430;
  --muted:#5A6772;
  --border:#D8DDE3;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Open Sans', Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
}

.container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.narrow{
  max-width:820px;
}

.centered{
  text-align:center;
}

.site-header{
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,0.1);
  position:sticky;
  top:0;
  z-index:1000;
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
  flex-wrap:wrap;
}

.logo img{
  max-height:60px;
  width:auto;
}

.site-nav ul{
  list-style:none;
  display:flex;
  gap:24px;
  padding:0;
  margin:0;
  flex-wrap:wrap;
}

.site-nav a{
  color:var(--white);
  text-decoration:none;
  font-weight:600;
  font-size:0.98rem;
}

.site-nav a:hover,
.site-nav a.active{
  color:var(--silver);
}

.cta-button,
.primary-btn,
.secondary-btn{
  display:inline-block;
  text-decoration:none;
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:700;
  padding:12px 20px;
  border-radius:4px;
  transition:all 0.2s ease;
  text-align:center;
}

.cta-button,
.primary-btn{
  background:var(--steel);
  color:var(--white);
  border:1px solid var(--steel);
}

.cta-button:hover,
.primary-btn:hover{
  background:var(--navy-2);
  border-color:var(--navy-2);
}

.secondary-btn{
  background:transparent;
  color:var(--white);
  border:1px solid var(--silver);
}

.secondary-btn:hover{
  background:var(--silver);
  color:var(--navy);
}

.hero{
  padding:110px 0 100px;
}

.hero-home{
  background:
    linear-gradient(rgba(11,31,58,0.82), rgba(16,43,76,0.86)),
    url('../images/hero-freight.jpg') center/cover no-repeat;
  color:var(--white);
}

.hero-content{
  max-width:880px;
}

.hero-logo{
  max-width:480px;
  margin:0 0 24px;
}

.hero h1,
.page-hero h1{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:clamp(2.1rem, 5vw, 3.9rem);
  line-height:1.12;
  margin:0 0 16px;
  font-weight:800;
}

.hero-subline{
  font-family:'Montserrat', Arial, sans-serif;
  color:var(--silver);
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.hero p,
.page-hero p{
  font-size:1.08rem;
  max-width:760px;
  margin:0 0 28px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.center-buttons{
  justify-content:center;
}

.page-hero{
  background:var(--navy);
  color:var(--white);
  padding:90px 0 70px;
}

.eyebrow{
  font-family:'Montserrat', Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:0.82rem;
  color:var(--silver);
  margin-bottom:12px;
  font-weight:700;
}

.trust-strip{
  background:var(--silver);
  color:var(--navy);
  border-top:1px solid rgba(11,31,58,0.08);
  border-bottom:1px solid rgba(11,31,58,0.08);
}

.trust-strip-inner{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  text-align:center;
  padding:16px 0;
  font-family:'Montserrat', Arial, sans-serif;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

.statement-strip{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:28px 0;
}

.statement-strip.alt{
  background:var(--navy-2);
  color:var(--white);
}

.statement-strip p{
  margin:0;
  font-size:1.05rem;
}

.statement-strip.alt h2{
  color:var(--white);
  margin-bottom:10px;
}

.statement-strip.alt p{
  color:rgba(255,255,255,0.85);
  margin-bottom:18px;
}

.support-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.support-row span{
  background:rgba(255,255,255,0.12);
  color:var(--white);
  padding:8px 14px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:4px;
  font-size:0.92rem;
  font-weight:600;
}

.section{
  padding:80px 0;
}

.section-light{
  background:var(--bg);
  color:var(--text);
}

.section-dark{
  background:var(--white);
  color:var(--text);
}

.section-heading{
  margin-bottom:34px;
}

.section-heading h2{
  font-family:'Montserrat', Arial, sans-serif;
  font-size:2rem;
  line-height:1.2;
  margin:0 0 12px;
  color:var(--navy);
}

.section-heading p{
  margin:0;
  color:var(--muted);
}

.card-grid{
  display:grid;
  gap:24px;
}

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

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

.five-col{
  grid-template-columns:repeat(5, 1fr);
}

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

.card,
.snapshot-card,
.faq-item,
.content-block,
.coverage-panel{
  background:var(--white);
  border:1px solid var(--border);
  padding:28px;
}

.card h3,
.snapshot-card h3,
.faq-item h3,
.content-block h2{
  font-family:'Montserrat', Arial, sans-serif;
  margin-top:0;
  color:var(--navy);
}

.card h3,
.snapshot-card h3,
.faq-item h3{
  margin-bottom:12px;
  font-size:1.1rem;
}

.card p,
.snapshot-card p,
.faq-item p,
.content-block p{
  margin:0;
  color:var(--muted);
}

.content-block{
  margin-bottom:24px;
}

.content-block:last-child{
  margin-bottom:0;
}

.snapshot-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.snapshot-card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.snapshot-card li{
  margin-bottom:8px;
}

.snapshot-card li:last-child{
  margin-bottom:0;
}

.coverage-grid{
  display:grid;
  grid-template-columns:1fr;
}

.feature-list{
  margin:0;
  padding-left:20px;
  color:var(--muted);
}

.feature-list li{
  margin-bottom:10px;
}

.multi-col-list{
  columns:2;
  column-gap:40px;
}

.government-band{
  background:var(--navy);
  color:var(--white);
}

.government-band-inner{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:34px;
  align-items:start;
}

.government-band h2{
  color:var(--white);
}

.government-band p{
  color:rgba(255,255,255,0.85);
}

.government-highlights .feature-list{
  color:rgba(255,255,255,0.9);
  margin-bottom:22px;
}

.band-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.cta-section{
  background:var(--navy-2);
  color:var(--white);
}

.cta-section h2{
  color:var(--white);
  font-family:'Montserrat', Arial, sans-serif;
  margin-top:0;
  margin-bottom:12px;
  font-size:2rem;
}

.cta-section p{
  color:rgba(255,255,255,0.86);
  margin-bottom:24px;
}

.site-footer{
  background:var(--navy);
  color:var(--white);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:32px;
  padding:46px 0 30px;
}

.footer-logo{
  max-width:82px;
  margin-bottom:16px;
}

.footer-name{
  font-family:'Montserrat', Arial, sans-serif;
  font-weight:700;
  color:var(--white);
}

.footer-brand p,
.footer-links li,
.footer-bottom p{
  color:rgba(255,255,255,0.82);
}

.footer-brand a,
.footer-links a{
  color:rgba(255,255,255,0.9);
  text-decoration:none;
}

.footer-brand a:hover,
.footer-links a:hover{
  color:var(--silver);
}

.footer-links h3{
  font-family:'Montserrat', Arial, sans-serif;
  margin-top:0;
  color:var(--white);
}

.footer-links ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  padding:16px 0;
}

.form-layout{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:28px;
  align-items:start;
}

.form-panel,
.info-panel .card{
  background:var(--white);
  border:1px solid var(--border);
  padding:28px;
}

.form-panel h2{
  font-family:'Montserrat', Arial, sans-serif;
  color:var(--navy);
  margin-top:0;
}

.form-panel p{
  color:var(--muted);
}

.info-panel{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:18px;
}

.contact-form label{
  font-weight:700;
  color:var(--navy);
  font-size:0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:14px;
  border:1px solid var(--border);
  background:var(--white);
  color:var(--text);
  font:inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--steel);
}

.form-btn{
  margin-top:8px;
  width:fit-content;
  cursor:pointer;
}

.stacked-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.full-btn{
  width:100%;
}

.faq-item{
  margin-bottom:18px;
}

.faq-item:last-child{
  margin-bottom:0;
}

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

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

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

@media (max-width: 900px){
  .header-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-nav ul{
    gap:14px;
  }

  .three-col,
  .two-col{
    grid-template-columns:1fr;
  }

  .government-band-inner,
  .footer-grid,
  .form-layout{
    grid-template-columns:1fr;
  }

  .trust-strip-inner{
    grid-template-columns:1fr;
  }

  .multi-col-list{
    columns:1;
  }
}

@media (max-width: 640px){
  .hero{
    padding:84px 0 76px;
  }

  .page-hero{
    padding:72px 0 56px;
  }

  .section{
    padding:64px 0;
  }

  .hero-logo{
    max-width:320px;
  }

  .site-nav ul{
    flex-direction:column;
    align-items:flex-start;
  }

  .snapshot-grid,
  .four-col,
  .five-col{
    grid-template-columns:1fr;
  }

  .hero-buttons,
  .band-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .cta-button,
  .primary-btn,
  .secondary-btn{
    width:100%;
  }

  .support-row{
    flex-direction:column;
  }
}
