:root {
  --brand-blue: #0754b8;
  --brand-blue-2: #0069d9;
  --navy: #001f4d;
  --deep-navy: #07111f;
  --sky: #eaf3ff;
  --ice: #f6faff;
  --text: #111827;
  --muted: #5b6472;
  --white: #ffffff;
  --border: #d7e6f8;
  --shadow: 0 18px 50px rgba(0, 45, 112, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img, svg { max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, 92%); margin: 0 auto; }
.section-pad { padding: 82px 0; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--navy); color: var(--white); padding: 10px 14px; z-index: 50; }
.skip-link:focus { left: 10px; }

.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 82px; height: 54px; display: grid; place-items: center; }
.brand-mark svg path:first-child, .brand-mark svg circle { fill: var(--brand-blue); }
.brand-mark svg path:nth-child(2) { stroke: var(--brand-blue); stroke-width: 6; stroke-linecap: round; fill: none; }
.brand-text strong { display: block; color: var(--navy); font-size: 22px; line-height: 0.95; text-transform: uppercase; letter-spacing: 0.5px; }
.brand-text small { display: block; color: var(--brand-blue); font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; }
.site-nav { justify-self: center; display: flex; gap: 8px; }
.site-nav a { text-decoration: none; color: var(--navy); font-weight: 800; padding: 10px 12px; border-radius: 999px; }
.site-nav a:hover { background: var(--sky); color: var(--brand-blue); }
.header-phone { text-decoration: none; color: var(--brand-blue); font-size: 20px; font-weight: 900; white-space: nowrap; }
.nav-toggle { display: none; background: var(--brand-blue); border: 0; border-radius: 12px; padding: 10px; width: 46px; height: 44px; }
.nav-toggle span { display: block; height: 3px; margin: 5px 0; background: var(--white); border-radius: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(0,105,217,0.22) 0 18%, transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6faff 48%, #eaf3ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 58%, rgba(0,31,77,0.07) 58% 100%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 46px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--brand-blue); text-transform: uppercase; font-size: 14px; font-weight: 900; letter-spacing: 2px; }
.eyebrow.light-blue { color: #cfe7ff; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(40px, 6.2vw, 74px); margin-bottom: 24px; color: var(--navy); letter-spacing: -2px; }
h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; color: var(--navy); letter-spacing: -1px; }
h3 { font-size: 22px; margin-bottom: 10px; color: var(--navy); }
p { margin-top: 0; }
.lead { font-size: 20px; color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 24px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 12px; text-decoration: none; font-weight: 900; border: 2px solid transparent; cursor: pointer; font: inherit; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 45, 112, 0.18); }
.btn-primary { background: var(--brand-blue); color: var(--white); }
.btn-outline { background: var(--white); color: var(--brand-blue); border-color: var(--brand-blue); }
.btn.full { width: 100%; }
.hero-price { width: min(430px, 100%); display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; align-items: center; background: var(--navy); color: var(--white); padding: 20px 22px; border-radius: 18px; box-shadow: var(--shadow); }
.hero-price span { font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.hero-price strong { grid-row: span 2; font-size: 58px; line-height: 1; }
.hero-price em { font-style: normal; color: #cfe7ff; font-weight: 800; }
.hero-card { background: linear-gradient(160deg, var(--navy), var(--brand-blue)); color: var(--white); padding: 38px; border-radius: 30px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.18); }
.hero-card h2 { color: var(--white); }
.hero-card p { color: #dfeeff; }
.route-graphic { height: 170px; position: relative; margin-bottom: 12px; }
.pin { position: absolute; top: 25px; width: 36px; height: 36px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--white); }
.pin::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-blue); top: 11px; left: 11px; }
.pin-left { left: 28px; }
.pin-right { right: 32px; }
.route-line { position: absolute; left: 70px; right: 76px; top: 54px; height: 52px; border-bottom: 4px dashed #cfe7ff; border-radius: 0 0 50% 50%; }
.parcel { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); font-size: 74px; filter: drop-shadow(0 14px 16px rgba(0,0,0,.25)); }

.trust-strip { background: var(--brand-blue); color: var(--white); padding: 24px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-grid div { border-left: 1px solid rgba(255,255,255,0.35); padding-left: 16px; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 18px; }
.trust-grid span { color: #d8ebff; font-size: 14px; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 34px rgba(0, 45, 112, 0.07); }
.service-card span { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--sky); color: var(--brand-blue); font-size: 26px; margin-bottom: 18px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.rates-section { background: linear-gradient(135deg, var(--navy), var(--brand-blue)); }
.rates-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr); gap: 26px; align-items: start; }
.rate-panel { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.24); }
.panel-title { background: var(--deep-navy); color: var(--white); padding: 16px 22px; text-transform: uppercase; letter-spacing: 1px; font-weight: 900; font-size: 18px; }
.panel-title.blue { background: var(--brand-blue); text-align: center; }
.rate-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 17px 22px; border-bottom: 1px solid var(--border); }
.rate-row:last-child { border-bottom: 0; }
.rate-row span { display: block; color: var(--muted); font-size: 14px; }
.rate-row > strong { color: var(--brand-blue); font-size: 22px; white-space: nowrap; text-align: right; }
.mileage-panel { padding-bottom: 20px; }
.mileage-panel p { padding: 22px 24px 0; color: var(--muted); }
.mileage-card { display: flex; gap: 16px; align-items: center; margin: 18px 24px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--ice); }
.mileage-card span { font-size: 38px; }
.mileage-card strong { display: block; color: var(--navy); font-size: 24px; }
.mileage-card small { color: var(--muted); font-weight: 700; }
.note-box { margin: 22px 24px 0; padding: 18px; border-radius: 16px; background: var(--sky); border: 1px solid var(--border); }
.note-box strong { display: block; color: var(--navy); margin-bottom: 8px; }
.note-box ul { margin: 0; padding-left: 20px; color: var(--muted); }

.commercial-grid, .quote-grid, .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.tick-list { padding: 0; margin: 24px 0 0; list-style: none; }
.tick-list li { position: relative; padding-left: 34px; margin-bottom: 13px; font-weight: 800; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-blue); color: var(--white); font-size: 14px; }
.tick-list.compact li { color: var(--white); }
.tick-list.compact li::before { background: var(--white); color: var(--brand-blue); }
.commercial-card { background: var(--ice); border: 1px solid var(--border); border-radius: 26px; padding: 30px; box-shadow: 0 12px 34px rgba(0, 45, 112, 0.08); }
.ideal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0 26px; }
.ideal-grid span { background: var(--white); border: 1px solid var(--border); color: var(--navy); font-weight: 900; padding: 12px 14px; border-radius: 999px; text-align: center; }

.blue-band { background: var(--deep-navy); color: var(--white); }
.blue-band h2 { color: var(--white); }
.feature-list { display: grid; gap: 16px; }
.feature-list div { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 18px; border-radius: 18px; }
.feature-list strong, .feature-list span { display: block; }
.feature-list span { color: #d8ebff; }
.contact-card, .quote-form { background: var(--white); border: 1px solid var(--border); border-radius: 24px; box-shadow: 0 12px 34px rgba(0, 45, 112, 0.08); }
.contact-card { padding: 24px; margin-top: 24px; }
.contact-card p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-weight: 800; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card span { color: var(--brand-blue); width: 22px; text-align: center; }
.contact-card a { color: var(--brand-blue); text-decoration: none; }
.quote-form { padding: 28px; }
.quote-form label { display: block; margin-bottom: 16px; font-weight: 900; color: var(--navy); }
input, textarea { width: 100%; margin-top: 7px; border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px; font: inherit; color: var(--text); background: #fbfdff; }
input:focus, textarea:focus { outline: 3px solid rgba(7,84,184,.16); border-color: var(--brand-blue); }
.form-note { color: var(--muted); font-size: 14px; margin: 12px 0 0; }

.site-footer { background: var(--deep-navy); color: var(--white); padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer-brand .brand-text strong { color: var(--white); }
.site-footer p { color: #c9def8; margin: 10px 0 0; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--white); text-decoration: none; font-weight: 800; }

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav { display: none; grid-column: 1 / -1; justify-self: stretch; flex-direction: column; background: var(--sky); padding: 12px; border-radius: 18px; }
  .site-nav.open { display: flex; }
  .header-phone { display: none; }
  .hero-grid, .rates-grid, .commercial-grid, .quote-grid, .two-col { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-pad { padding: 58px 0; }
  .brand-mark { width: 62px; }
  .brand-text strong { font-size: 18px; }
  h1 { letter-spacing: -1px; }
  .hero-card { padding: 28px; }
  .hero-price { grid-template-columns: 1fr; }
  .hero-price strong { grid-row: auto; font-size: 50px; }
  .service-grid, .trust-grid, .ideal-grid { grid-template-columns: 1fr; }
  .rate-row { grid-template-columns: 1fr; }
  .rate-row > strong { text-align: left; }
  .footer-grid, .footer-links { flex-direction: column; align-items: flex-start; }
}
