:root {
  --navy: #052853;
  --navy-dark: #021733;
  --blue: #0b64c0;
  --light-blue: #59a8ef;
  --steel: #6f7e8f;
  --gray: #f3f6fa;
  --line: #d9e1ea;
  --white: #ffffff;
  --text: #0b1b34;
  --shadow: 0 18px 45px rgba(5, 40, 83, .14);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav-wrap { height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 92px; height: 58px; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: white; font-weight: 900; font-size: 26px; letter-spacing: -2px; border-radius: 8px; box-shadow: inset -12px -12px 0 rgba(255,255,255,.12); }
.brand-mark.small { width: 74px; height: 46px; font-size: 21px; }
.brand-text strong { display: block; text-transform: uppercase; font-size: 30px; line-height: .9; letter-spacing: 1px; color: var(--navy); }
.brand-text span { display: block; text-transform: uppercase; letter-spacing: 12px; font-weight: 700; color: var(--steel); }
.brand-text small { display: block; text-transform: uppercase; font-size: 9px; color: var(--navy); letter-spacing: .8px; }
.main-nav { display: flex; align-items: center; gap: 22px; font-weight: 800; text-transform: uppercase; font-size: 13px; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 3px; background: var(--blue); transition: .25s; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 13px 18px; background: var(--navy); color: var(--white); border-radius: 5px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--navy); margin: 5px 0; }
.hero { min-height: 650px; position: relative; display: flex; align-items: center; color: white; background: linear-gradient(90deg, rgba(2,23,51,.98), rgba(5,40,83,.78), rgba(5,40,83,.2)), url('../img/warehouse-hero.svg') center/cover no-repeat; }
.hero-content { position: relative; z-index: 2; }
.hero-copy { max-width: 670px; padding: 90px 0; }
.eyebrow { display: inline-block; margin: 0 0 12px; color: var(--light-blue); font-weight: 900; text-transform: uppercase; letter-spacing: 1.6px; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: .95; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 28px; }
h2 { font-size: clamp(28px, 3.3vw, 42px); line-height: 1.05; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
h3 { color: var(--navy); text-transform: uppercase; font-size: 18px; line-height: 1.15; }
.hero-lead { font-size: 21px; font-weight: 600; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 28px; border-radius: 6px; font-weight: 900; text-transform: uppercase; letter-spacing: .4px; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 12px 30px rgba(11,100,192,.28); }
.btn-outline { border-color: rgba(255,255,255,.9); color: white; background: rgba(255,255,255,.06); }
.btn-outline.dark { border-color: var(--navy); color: var(--navy); background: white; }
.trust-band { padding: 54px 0; background: white; box-shadow: var(--shadow); position: relative; z-index: 5; }
.trust-grid { display: grid; grid-template-columns: 120px 1fr 360px; gap: 42px; align-items: center; }
.circle-icon { width: 74px; height: 74px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; color: white; margin: 0 auto 22px; }
.circle-icon.large { width: 104px; height: 104px; margin: 0; }
.circle-icon svg { width: 48%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li { font-weight: 700; }
.check-list li::before { content: "✓"; color: var(--blue); margin-right: 10px; font-weight: 900; }
.section { padding: 84px 0; }
.section.light { background: var(--gray); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.cards { display: grid; gap: 22px; }
.four-col { grid-template-columns: repeat(4, 1fr); }
.card { background: white; padding: 34px 24px; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,.04); transition: .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.industry-item { min-height: 88px; border: 1px solid var(--line); background: white; border-radius: 12px; display: grid; place-items: center; text-align: center; padding: 16px; font-weight: 900; text-transform: uppercase; color: var(--navy); }
.center { text-align: center; }
.muted { color: #526477; }
.why { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: white; }
.why-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 34px; align-items: stretch; }
.why-panel { padding: 72px 0; }
.why h2, .why h3 { color: white; }
.why-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 34px; }
.why-list div { border-left: 1px solid rgba(255,255,255,.28); padding-left: 18px; }
.quote-card { align-self: center; min-height: 350px; border-radius: 18px; padding: 44px; display: flex; align-items: end; background: linear-gradient(rgba(255,255,255,.03), rgba(255,255,255,.04)), url('../img/truck-dock.svg') center/cover no-repeat; box-shadow: inset 0 0 0 1000px rgba(2,23,51,.36); }
.quote-card p { font-size: 28px; line-height: 1.25; font-weight: 800; }
.split { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.private-label { background: white; }
.cta { padding: 84px 0; color: white; background: linear-gradient(135deg, #063a78, var(--navy-dark)); }
.cta h2 { color: white; }
.cta-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; background: white; color: var(--text); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 6px; font-weight: 800; font-size: 13px; text-transform: uppercase; color: var(--navy); }
.contact-form label:nth-child(4) { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 13px; font: inherit; }
.contact-form button { grid-column: 1 / -1; border: 0; }
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.78); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.footer-grid h3 { color: white; font-size: 15px; }
.footer-grid a { display: block; margin-bottom: 8px; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 20px; font-size: 14px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 96px 0 auto 0; background: white; flex-direction: column; align-items: flex-start; padding: 24px 40px 36px; box-shadow: var(--shadow); transform: translateY(-130%); transition: .25s; }
  .main-nav.open { transform: translateY(0); }
  .trust-grid, .why-grid, .cta-grid { grid-template-columns: 1fr; }
  .four-col, .why-list { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 82px; }
  .brand-mark { width: 64px; height: 42px; font-size: 18px; }
  .brand-text strong { font-size: 20px; }
  .brand-text span { letter-spacing: 7px; }
  .brand-text small { display: none; }
  .main-nav { inset: 82px 0 auto 0; }
  .hero { min-height: 620px; }
  .hero-copy { padding: 70px 0; }
  h1 { font-size: 39px; }
  .hero-lead { font-size: 18px; }
  .four-col, .why-list, .industry-grid, .contact-form, .footer-grid { grid-template-columns: 1fr; }
  .split { flex-direction: column; align-items: flex-start; }
  .section { padding: 62px 0; }
}

/* Contact form behavior and spam-protection fields */
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-wrap, .form-status { grid-column: 1 / -1; }
.turnstile-wrap { min-height: 66px; }
.form-status { margin: 0; min-height: 1.5em; font-weight: 700; text-transform: none; }
.form-status.success { color: #146c2e; }
.form-status.error { color: #b42318; }
.contact-form button:disabled { opacity: .7; cursor: wait; }
