:root {
  --blue: #2b6ca3;
  --blue-dark: #1f527d;
  --accent: #6190b8;
  --yellow: #ffde11;
  --text: #333;
  --muted: #666;
  --bg: #fff;
  --bg-alt: #f4f8fb;
  --max: 1100px;
  --font: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}
.logo img { height: 50px; width: auto; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.site-nav a:hover, .site-nav a.active { color: var(--blue-dark); text-decoration: underline; }
.nav-toggle {
  display: none;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  padding: .4rem .65rem;
  cursor: pointer;
}
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero--truck,
.hero--cover {
  aspect-ratio: 8 / 3;
  width: 100%;
  background: #1f527d;
}
@media (max-width: 520px) {
  .hero--truck,
  .hero--cover {
    aspect-ratio: auto;
    min-height: 260px;
  }
}
.hero--truck .hero-image,
.hero--cover .hero-image {
  object-fit: cover;
  object-position: center center;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 45, 75, .08) 0%, rgba(15, 45, 75, .72) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 0 2rem;
  width: 100%;
}
.hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-legal {
  background: linear-gradient(135deg, var(--blue-dark), var(--accent));
  min-height: 180px;
  align-items: center;
}
.legal-body h2 {
  font-size: 1.05rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.legal-body h2:first-of-type {
  margin-top: 1rem;
}
.section { padding: 3rem 0; }
.section.alt { background: var(--bg-alt); }
.section h2, .section h3 { color: var(--blue); text-transform: uppercase; letter-spacing: .03em; }
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.prose { max-width: 820px; }
.prose ul { padding-left: 1.2rem; }
.rounded { border-radius: 4px; }
.shadow { box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.pay-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}
.pay-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pay-strip-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 45, 75, .45), rgba(15, 45, 75, .65));
}
.pay-strip .container {
  position: relative;
  z-index: 1;
}
.pay-strip h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: 0;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: var(--yellow); color: #000; }
.btn:hover { filter: brightness(.95); }
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(260px, 340px) 1fr;
  margin-top: 1.5rem;
  align-items: start;
}
.contact-details {
  background: var(--bg-alt);
  border: 1px solid #dbe7f1;
  border-top: 4px solid var(--accent);
  padding: 1.5rem 1.35rem;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.contact-list li {
  display: grid;
  gap: .35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #d6e4ef;
}
.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-value {
  display: block;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text);
}
.contact-value a {
  font-weight: 600;
  text-decoration: none;
}
.contact-value a:hover {
  text-decoration: underline;
}
.muted { color: var(--muted); font-size: .88rem; }
.contact-form {
  background: #fff;
  border: 1px solid #dbe7f1;
  border-top: 4px solid var(--blue);
  padding: 1.5rem 1.35rem;
  display: grid;
  gap: .85rem;
}
.contact-form-title {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-form label {
  display: grid;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: .55rem .65rem;
  border: 1px solid #c9d8e6;
  font: inherit;
}
.form-success { color: #1a7f37; font-weight: 600; }
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  background: #fff;
  border: 1px solid #dbe7f1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.price-card h3 { margin: 0; color: var(--blue); }
.price { font-size: 1.35rem; font-weight: 700; margin: 0; color: var(--blue-dark); }
.price-card ul { margin: 0; padding-left: 1.1rem; flex: 1; }
.faq dt { font-weight: 700; color: var(--blue); margin-top: 1rem; }
.faq dd { margin: .35rem 0 0; }
.center { text-align: center; }
.narrow { max-width: 560px; }
.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-links a { color: #fff; }
.footer-links span { opacity: .5; margin: 0 .35rem; }
html.cookie-banner-visible {
  scroll-padding-bottom: var(--cookie-banner-offset, 96px);
}
html.cookie-banner-visible body {
  padding-bottom: var(--cookie-banner-offset, 96px);
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s ease, transform .3s ease;
}
#cookie-banner.show {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner .inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: rgba(31, 41, 55, .97);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
}
#cookie-banner p {
  margin: 0;
  flex: 1 1 240px;
  font-size: .95rem;
  line-height: 1.5;
}
#cookie-banner a {
  color: #9ec5e8;
}
#cookie-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
#cookie-banner .btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}
@media (max-width: 900px) {
  .split, .contact-grid, .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: .75rem;
  }
  .site-nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
}
