:root {
  --navy: #07336f;
  --blue: #0d4d8f;
  --orange: #ff6a00;
  --orange-dark: #d94f00;
  --ink: #17202d;
  --muted: #657181;
  --line: #dbe1e8;
  --soft: #f4f7fa;
  --pale: #edf4fb;
  --white: #ffffff;
  --green: #18794e;
  --shadow: 0 18px 44px rgba(7, 51, 111, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.utility {
  color: #e7f0fb;
  background: var(--navy);
  font-size: 13px;
}

.utility-inner,
.nav-row,
.section-head,
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner { min-height: 34px; }
.utility-links, .main-nav, .hero-actions, .cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

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

.nav-row { min-height: 76px; }
.brand img { width: 205px; height: auto; }
.main-nav a {
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
  color: #2d3b4d;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a.active { color: var(--navy); border-bottom-color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { color: #fff; background: var(--orange); }
.button.primary:hover { background: var(--orange-dark); }
.button.secondary { color: var(--navy); border-color: var(--navy); background: #fff; }
.button.dark { color: #fff; background: var(--navy); }
.button.light { color: var(--navy); background: #fff; }
.button.large { min-height: 50px; padding: 13px 20px; }
.button.full { width: 100%; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: 0; }
h1 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 56px); }
h2 { margin-bottom: 14px; font-size: clamp(26px, 3vw, 36px); }
h3 { margin-bottom: 10px; font-size: 19px; }
p { color: var(--muted); }

.eyebrow {
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  padding: 38px 0 38px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.7)),
    url("./assets/quote-bg.png") center / cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: start;
}

.hero-copy { max-width: 760px; }
.hero h1 { max-width: 760px; font-size: clamp(40px, 4vw, 54px); }
.lead { max-width: 640px; font-size: 17px; color: #435266; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.hero-points li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.quote-head {
  padding: 18px 20px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px 8px 0 0;
}
.quote-head strong, .quote-head span { display: block; }
.quote-head strong { font-size: 22px; }
.quote-head span { color: #cfe0f4; font-size: 13px; }
.quote-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}
.quote-card label:first-child,
.quote-card .file-field,
.quote-card .button,
.quote-card .micro {
  grid-column: 1 / -1;
}
label { display: grid; gap: 6px; color: #334255; font-size: 13px; font-weight: 800; }
input, select {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
}
.micro { margin: 0; font-size: 12px; }

.section { padding: 50px 0; }
.section.alt { background: var(--soft); }
.section-head { margin-bottom: 18px; align-items: end; }
.section-head.compact { justify-content: flex-start; }

.product-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .35s ease;
}

.product-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.carousel-arrow.prev { left: -21px; }
.carousel-arrow.next { right: -21px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7d2e2;
  cursor: pointer;
}

.carousel-dots button.active { width: 24px; border-radius: 999px; background: var(--orange); }

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 230px;
  padding: 22px;
  background: #f7f9fc;
}
.product-media img { width: 94%; height: 100%; object-fit: contain; }
.product-media span { display: none; }
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.product-body h3 {
  min-height: 46px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.28;
}
.product-body p { display: none; }
.spec-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0; }
.spec-pills span {
  padding: 3px 7px;
  border-radius: 3px;
  color: #526173;
  background: #edf0f4;
  font-size: 11px;
  font-weight: 800;
}
.product-specs {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.product-specs strong { color: var(--ink); }
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  border-radius: 4px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}
.card-cta:hover { background: var(--orange-dark); }

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
th, td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: #fff; background: var(--navy); }

.trust-grid,
.armour-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article,
.armour-choice-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #f7f9fc;
}

.trust-grid article:first-child img,
.trust-grid article:nth-child(3) img,
.trust-grid article:nth-child(4) img {
  object-fit: contain;
  padding: 18px;
}

.trust-grid strong {
  display: block;
  padding: 15px 16px 18px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.armour-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.armour-choice-grid article {
  padding: 22px;
  border-top: 4px solid var(--orange);
}

.armour-choice-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.armour-choice-grid span {
  display: block;
  margin: 14px 0 4px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.armour-choice-grid p {
  margin-bottom: 0;
  color: #405064;
}

.side-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.side-panel ul { margin: 0 0 20px; padding: 0; list-style: none; }
.side-panel li {
  position: relative;
  margin: 10px 0;
  padding-left: 23px;
  color: var(--muted);
}
.side-panel li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 900; }

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.application-grid article {
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.application-grid img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  background: #f7f9fc;
}
.application-grid article:nth-child(n+2) img {
  object-fit: contain;
  padding: 18px;
}
.application-grid strong, .application-grid span { display: block; }
.application-grid strong { padding: 16px 16px 6px; color: var(--navy); font-size: 17px; line-height: 1.28; }
.application-grid span { padding: 0 16px 18px; color: var(--muted); font-size: 14px; line-height: 1.45; }

.cta-strip {
  padding: 42px 0;
  color: #fff;
  background: var(--navy);
}
.cta-strip h2, .cta-strip p, .cta-strip .eyebrow { color: #fff; }
.cta-strip p { max-width: 700px; margin-bottom: 0; color: #d7e6f7; }

.seo-copy { max-width: 980px; }
.seo-copy p { margin-bottom: 0; font-size: 16px; }

.faq-wrap { max-width: 920px; }
.faq-list { display: grid; gap: 10px; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
summary {
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
details p { padding: 0 18px 18px; margin: 0; }

.site-footer {
  padding: 42px 0;
  color: #dbe6f4;
  background: #0b203b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-grid img { width: 220px; margin-bottom: 16px; }
.footer-grid strong, .footer-grid a { display: block; }
.footer-grid strong { margin-bottom: 12px; color: #fff; }
.footer-grid a { margin: 8px 0; color: #dbe6f4; }
.footer-grid p { max-width: 360px; color: #b9c9dc; }

.mobile-cta { display: none; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid, .spec-layout { grid-template-columns: 1fr; }
  .quote-card { max-width: 620px; }
  .product-page, .application-grid, .trust-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .armour-choice-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .carousel-arrow.prev { left: -10px; }
  .carousel-arrow.next { right: -10px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .utility { display: none; }
  .nav-row { min-height: 66px; }
  .brand img { width: 168px; }
  .site-header .button { display: none; }
  .hero { padding: 34px 0 36px; }
  .hero-points { grid-template-columns: 1fr; }
  .quote-card form { grid-template-columns: 1fr; }
  .quote-card { margin-top: 56px; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .product-page, .application-grid, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .carousel-arrow { display: none; }
  .section { padding: 48px 0; }
  th, td { padding: 10px; font-size: 13px; }
  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 4px;
    color: #fff;
    background: var(--orange);
    font-weight: 900;
    box-shadow: var(--shadow);
  }
  .mobile-cta a:first-child { background: #168a4a; }
}
