:root {
  --blue: #0b3f87;
  --blue-dark: #062d67;
  --red: #b80712;
  --ink: #141927;
  --muted: #3d4658;
  --line: #c8d1dd;
}

/* Redesigned contact section - refined, modern, and accessible */
.contact-modern {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;
  padding: 72px 28px;
  max-width: 1200px;
  margin: 0 auto 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.contact-modern-bg { display: none; }

.contact-modern-copy,
.contact-modern-form,
.contact-modern-benefits { position: relative; z-index: 1; }

.contact-modern-eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.contact-modern-copy h2 {
  margin: 8px 0 10px;
  color: var(--blue-dark);
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
}

.contact-modern-copy > p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 15px;
}

.contact-modern-list { display: grid; gap: 12px; }

.contact-modern-list article {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11, 74, 165, 0.06);
  box-shadow: 0 6px 18px rgba(11,74,165,0.04);
}

.contact-modern-list article > span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-modern-form {
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 31, 72, 0.08);
  border: 0;
}

.contact-form-head { display:flex; gap:14px; align-items:center; margin-bottom:18px; }
.contact-form-head > span { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--blue-dark)); color:#fff; display:grid; place-items:center; font-size:20px; }
.contact-form-head h3 { margin:0; font-size:18px; font-weight:800; }
.contact-form-head p { margin:0; color:var(--muted); font-size:13px; }

.contact-modern-fields { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.contact-modern-fields input,
.contact-modern-fields select,
.contact-modern-fields textarea {
  padding:14px 16px;
  border:1px solid #e6eef8;
  border-radius:10px;
  background:#fbfdff;
  font-size:15px;
  color:var(--ink);
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.contact-modern-fields input:focus,
.contact-modern-fields select:focus,
.contact-modern-fields textarea:focus {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(184, 7, 18, 0.08);
  outline: none;
  background: #fff;
}

.contact-modern-fields textarea { grid-column:1/ -1; min-height:140px; resize:vertical; }

.contact-modern-form button {
  margin-top:14px;
  padding:14px 18px;
  width:100%;
  border-radius:10px;
  background: linear-gradient(180deg, var(--red), #9b060f);
  color:#fff;
  border:0;
  font-weight:800;
  letter-spacing:0.6px;
  cursor:pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.contact-modern-form button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(184,7,18,0.12); }
.contact-modern-form button:active { transform: translateY(-1px); }

/* Benefit cards removed */

@media (max-width: 980px) {
  .contact-modern { grid-template-columns: 1fr; padding:36px 20px; }
  .contact-modern-benefits { grid-template-columns: 1fr; }
  .contact-modern-fields { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .contact-modern {
    grid-template-columns: 1fr;
    padding: 70px 24px 58px;
  }

  .contact-modern-copy h2,
  .contact-modern-copy > p,
  .contact-modern-list {
    max-width: none;
  }

  .contact-modern-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-modern {
    padding: 58px 16px 46px;
  }

  .contact-modern-copy h2 {
    font-size: 34px;
  }

  .contact-modern-form {
    padding: 24px 18px;
  }

  .contact-form-head,
  .contact-modern-list article,
  .contact-modern-benefits article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-modern-fields {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Times New Roman", Times, serif;
  color: var(--ink);
  background: #f3f6fa;
}

a {
  color: inherit;
  text-decoration: none;
}

body :where(h1, h2, h3, h4, h5, h6, p, a, span, li, input, select, textarea, button, label, strong, em, small) {
  font-family: "Times New Roman", Times, serif;
}

body :where(h1, h2, h3) {
  font-family: "Times New Roman", Times, serif !important;
}

.hero h1 {
  font-size: clamp(46px, 4.2vw, 66px);
}

.products-title,
.product-section .section-head h1 {
  font-size: clamp(26px, 2.7vw, 38px);
}

.about-copy h2 {
  font-size: clamp(26px, 2.6vw, 36px);
}

.why-copy h2 {
  font-size: clamp(26px, 2.7vw, 38px);
}

.contact-copy h2 {
  font-size: clamp(42px, 3.7vw, 60px);
}

:where(.brand-mark, .brand-mark *, .badge-mark, .badge-mark *, .footer-logo, .footer-logo *) {
  font-family: inherit;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 990px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 22%, rgba(12, 63, 135, 0.09) 0 2px, transparent 3px) 0 0 / 22px 22px,
    linear-gradient(125deg, #ffffff 0%, #f7fafd 46%, #e8eef7 100%);
}

.banner::before,
.banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.banner::before {
  width: 760px;
  height: 760px;
  left: -150px;
  top: 190px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(12, 47, 100, 0.03);
}

.banner::after {
  inset: auto 0 0 0;
  height: 0;
  background: transparent;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 58px 20px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 395px;
  gap: 18px;
}

.brand-mark {
  position: relative;
  width: 70px;
  height: 72px;
  display: block;
}

.mark-p {
  position: absolute;
  top: -6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 86px;
  line-height: 0.9;
  font-weight: 800;
}

.mark-blue {
  left: 0;
  color: var(--blue-dark);
}

.mark-red {
  right: 2px;
  color: var(--red);
}

.horse {
  position: absolute;
  left: 19px;
  top: 12px;
  color: #fff;
  font-size: 41px;
  transform: rotate(-8deg);
  text-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-family: "Inter", Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.brand-name strong {
  color: var(--blue-dark);
  font-style: normal;
}

.brand-name em {
  color: var(--red);
  font-style: normal;
}

.brand-tagline {
  font-size: 14px;
  color: #222b3a;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 39px;
  flex: 1;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #090d15;
  white-space: nowrap;
}

.nav a.active {
  color: var(--blue-dark);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 999px;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 184px;
  height: 58px;
  padding: 0 25px;
  border-radius: 999px;
  background: linear-gradient(135deg, #bd0713, #a60712);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(166, 7, 18, 0.19);
}

.quote-btn span,
.primary-action span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.quote-btn span {
  background: #fff;
  color: var(--red);
  font-size: 15px;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, 44%) minmax(650px, 1fr);
  align-items: flex-start;
  min-height: 600px;
  padding: 35px 0 40px 82px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-top: 0;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(11, 63, 135, 0.38);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--blue-dark);
  font-size: 17px;
  box-shadow: 0 10px 24px rgba(15, 35, 60, 0.05);
}

.rating-icon {
  font-size: 21px;
  line-height: 1;
}

h1 {
  margin: 32px 0 22px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(54px, 5.1vw, 80px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
}

h1 span {
  color: var(--blue-dark);
}

h1 em {
  color: var(--red);
  font-style: normal;
}

h2 {
  max-width: 650px;
  margin: 0 0 31px;
  color: #0d2f67;
  font-size: clamp(22px, 1.85vw, 31px);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-copy p {
  max-width: 660px;
  margin: 0;
  color: #333c4d;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
  margin-bottom: 70px;
}

.primary-action,
.video-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-action {
  gap: 28px;
  min-width: 291px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, #0c468e, #072c66);
  box-shadow: 0 18px 30px rgba(8, 45, 100, 0.22);
}

.video-action {
  gap: 14px;
  min-width: 225px;
  padding: 0 23px;
  color: var(--blue-dark);
  background: #fff;
  border: 2px solid #123d80;
}

.play {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
}

.visual {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 1050px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -150px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.blue-bg {
  display: none;
}

.arc {
  display: none;
}

.plant-img {
  display: none;
}

.ribbon {
  display: none;
}

.cards {
  display: none;
}

.logo-badge {
  display: none;
}


.logo-badge::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -16px;
  width: 104px;
  height: 92px;
  background: #fff;
  border-bottom-right-radius: 36px;
}

.badge-mark {
  position: relative;
  z-index: 2;
  width: 98px;
  height: 96px;
  display: block;
}

.mark-letter {
  position: absolute;
  top: -8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 122px;
  line-height: 0.85;
  font-weight: 800;
}

.mark-letter-blue {
  left: 0;
  color: #fff;
}

.mark-letter-red {
  right: 0;
  color: #fff;
}

.mark-horse {
  position: absolute;
  left: 27px;
  top: 21px;
  color: #fff;
  font-size: 55px;
  transform: rotate(-8deg);
}

.feature-strip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: min(2100px, calc(100% - 40px));
  min-height: 250px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 38px 0 34px;
  border-radius: 34px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 18px 36px rgba(29, 43, 64, 0.13);
  overflow: visible;
}

.feature {
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto auto;
  column-gap: 26px;
  row-gap: 14px;
  align-content: start;
  padding: 0 46px;
  border-right: 2px solid var(--line);
  overflow: visible;
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  grid-row: 1 / 3;
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #fff;
  font-size: 42px;
  border: 8px solid #fff;
  box-shadow: 0 6px 18px rgba(17, 34, 56, 0.18), 0 0 0 2px #d9e1ec;
}

.blue-icon {
  background: linear-gradient(145deg, #0e4c98, #063475);
}

.red-icon {
  background: linear-gradient(145deg, #d11420, #9c0610);
}

.feature h3 {
  margin: 4px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--blue-dark);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.feature:nth-child(2) h3,
.feature:nth-child(4) h3 {
  color: var(--red);
}

.feature p {
  grid-column: 1 / 3;
  max-width: none;
  margin: 0;
  color: #2e3544;
  font-size: 26px;
  line-height: 1.6;
}

.products {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 3vw 88px;
  background:
    linear-gradient(90deg, rgba(6, 45, 103, 0.96) 0 3.8%, transparent 3.9%),
    radial-gradient(circle at 6% 10%, rgba(11, 63, 135, 0.07), transparent 23%),
    linear-gradient(115deg, #ffffff 0%, #f8fbff 42%, #edf3f9 100%);
}

.products::before,
.products::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.products::before {
  left: -78px;
  top: -58px;
  width: 270px;
  height: 270px;
  border-radius: 52px;
  background: #063272;
  transform: skewX(-18deg) rotate(18deg);
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.76);
}

.products::after {
  right: -38px;
  bottom: -76px;
  width: 250px;
  height: 300px;
  border-radius: 120px 0 0 0;
  background: #c50814;
  box-shadow: -54px -40px 0 rgba(255, 255, 255, 0.8);
}

.products-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 30px;
  text-align: center;
}

.products-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bd0713;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.products-label::before,
.products-label::after {
  content: "";
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bd0713);
}

.products-label::after {
  background: linear-gradient(90deg, #bd0713, transparent);
}

.products-title {
  width: 100%;
  margin: 14px auto 22px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.products-title-main {
  color: #082a62;
}

.products-title-accent {
  color: #c50814;
}

.products-title::after {
  content: "";
  display: block;
  width: 178px;
  height: 6px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #082a62 0 48%, #c50814 48% 68%, #c9d0d8 68%);
}

.products-desc {
  max-width: 850px;
  margin: 0 auto;
  color: #111827;
  font-size: 22px;
  line-height: 1.42;
}

.products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto 16px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(130deg, #0b3f87 0%, #274f9f 32%, #73417f 58%, #b80712 100%) border-box;
  box-shadow: 0 18px 34px rgba(15, 35, 60, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(130deg, #072f6c 0%, #0b3f87 30%, #8a335a 62%, #b80712 100%) border-box;
  box-shadow: 0 24px 48px rgba(15, 35, 60, 0.18);
}

.product-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 26px;
  z-index: 2;
  width: 22px;
  height: 172px;
  background: #d00915;
  border-radius: 18px 0 0 18px;
}

.product-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 20px 20px 36px 20px;
  clip-path: none;
  background: #071c42;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 17, 43, 0.18), rgba(5, 17, 43, 0.02));
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-card:nth-child(2) .product-image img,
.product-card:nth-child(5) .product-image img {
  object-position: center 48%;
}

.product-card:nth-child(6) .product-image img {
  object-position: center 42%;
}

.product-content {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  column-gap: 18px;
  flex: 1;
  padding: 0 30px 72px;
}

.product-icon {
  grid-row: 1 / 4;
  align-self: start;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: -26px;
  border-radius: 50%;
  border: 7px solid #fff;
  background: linear-gradient(145deg, #0a3f87, #061f4c);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(7, 31, 76, 0.24);
}

.product-content h3 {
  margin: 18px 0 12px;
  color: #082a62;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.94;
  font-weight: 800;
  text-transform: uppercase;
}

.product-content h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  background: #d00915;
  border-radius: 99px;
}

.product-content p {
  grid-column: 2;
  margin: 0;
  color: #343b49;
  font-size: 16px;
  line-height: 1.5;
}

.product-link {
  position: absolute;
  left: 124px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  color: #d00915;
  font-size: 32px;
  line-height: 1;
}

.product-link::before {
  content: "VIEW DETAILS";
  color: #082a62;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.view-all-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(620px, calc(100% - 32px));
  min-height: 58px;
  margin: 14px auto 0;
  padding: 0 8px 0 28px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(112deg, #082a62 0 58%, #d00915 58%);
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 11px 23px rgba(13, 42, 86, 0.18);
}

.view-all-btn strong {
  font-size: 19px;
}

.view-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #082a62;
  font-family: Inter, Arial, sans-serif;
  font-size: 30px;
}

.product-section {
  min-height: auto;
  padding: 90px 2% 88px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #f2f5f8 100%);
}

.product-section::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -92px;
  width: 260px;
  height: 260px;
  border: 18px solid #1f66b2;
  border-radius: 0 0 110px 0;
  z-index: 0;
}

.product-section::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border: 18px solid #dc3340;
  border-radius: 110px 0 0 0;
  z-index: 0;
  opacity: 0.98;
}

.product-section .bg-plant {
  position: absolute;
  right: 0;
  top: 0;
  width: 360px;
  height: 310px;
  background: url("Home Photos/HOME PAGE 1.jpg") center/cover no-repeat;
  opacity: 0.11;
  filter: grayscale(1);
  mask-image: linear-gradient(90deg, transparent 0%, black 30%, black 100%);
  z-index: 0;
}

.product-section .hex-bg {
  position: absolute;
  left: 20px;
  top: 115px;
  width: 230px;
  height: 240px;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, rgba(8, 62, 130, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(8, 62, 130, 0.12) 87.5%, rgba(8, 62, 130, 0.12)),
    linear-gradient(150deg, rgba(8, 62, 130, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(8, 62, 130, 0.12) 87.5%, rgba(8, 62, 130, 0.12)),
    linear-gradient(30deg, rgba(8, 62, 130, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(8, 62, 130, 0.12) 87.5%, rgba(8, 62, 130, 0.12)),
    linear-gradient(150deg, rgba(8, 62, 130, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(8, 62, 130, 0.12) 87.5%, rgba(8, 62, 130, 0.12)),
    linear-gradient(60deg, rgba(8, 62, 130, 0.10) 25%, transparent 25.5%, transparent 75%, rgba(8, 62, 130, 0.10) 75%, rgba(8, 62, 130, 0.10));
  background-size: 46px 80px;
  background-position: 0 0, 0 0, 23px 40px, 23px 40px, 0 0;
  z-index: 0;
}

.product-section .section-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 44px;
}

.product-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #c3111d;
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-section .eyebrow::before,
.product-section .eyebrow::after {
  content: "";
  width: 95px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c3111d);
}

.product-section .eyebrow::after {
  background: linear-gradient(90deg, #c3111d, transparent);
}

.product-section .section-head h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(64px, 4.6vw, 92px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  margin: 0 0 18px;
  text-align: center;
}

.product-section .section-head h1 .navy {
  color: #082f66;
}

.product-section .section-head h1 .red {
  color: #c3111d;
}

.product-section .title-mark {
  width: 112px;
  height: 5px;
  border-radius: 99px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, #073e82 0 48%, #c3111d 48% 70%, #bfc6ce 70% 100%);
}

.product-section .section-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.45;
  color: #18243a;
}

.product-section .product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(380px, 1fr));
  gap: 34px 28px;
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 8px;
  justify-content: center;
}

.product-section .product-card {
  min-height: 470px;
  height: auto;
  position: relative;
  display: block;
  background: #fff;
  border: 2px solid rgba(8, 47, 102, 0.30);
  border-radius: 36px 10px 18px 10px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.13);
  transform: skewX(-4deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-section .product-card:hover {
  transform: skewX(-4deg) translateY(-7px);
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.18);
}

.product-section .product-card::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 46px;
  width: 20px;
  height: 120px;
  background: #c3111d;
  border-radius: 20px;
  transform: skewX(-6deg);
  z-index: 5;
}

.product-section .card-inner {
  min-height: 470px;
  height: 100%;
  transform: skewX(4deg);
  margin-left: -12px;
  margin-right: -12px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-section .product-img {
  height: 242px;
  overflow: hidden;
  border-radius: 34px 8px 0 0;
  position: relative;
  background: #0b2445;
}

.product-section .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.4s ease;
}

.product-section .product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-section .product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 27, 62, 0.20), transparent 55%);
}

.product-section .content {
  position: relative;
  padding: 24px 34px 42px 118px;
  min-height: 188px;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-section .icon-wrap {
  position: absolute;
  left: 42px;
  top: -38px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #082f66;
  color: #fff;
  font-size: 34px;
  border: 6px solid #fff;
  box-shadow: 0 14px 30px rgba(8, 47, 102, 0.26);
}

.product-section .content h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  color: #082f66;
  margin: 0 0 12px;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-section .small-red-line {
  width: 31px;
  height: 3px;
  background: #c3111d;
  border-radius: 99px;
  margin-bottom: 12px;
}

.product-section .content p {
  font-size: 16px;
  line-height: 1.55;
  color: #333c4d;
  max-width: 285px;
  margin: 0;
  overflow: visible;
}

.product-section .details-row {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  color: #082f66;
  font-weight: 900;
  font-size: 13.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-top: auto;
  padding-top: 8px;
}

.product-section .arrow {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #c3111d, #8f0b14);
  box-shadow: 0 12px 22px rgba(195, 17, 29, 0.22);
}

.product-section .details-row:hover {
  transform: translateY(-1px);
  color: #0b4aa5;
}

.product-section .details-row:active {
  transform: translateY(0);
}

.product-section .details-row:focus-visible {
  outline: 3px solid rgba(195, 17, 29, 0.35);
  outline-offset: 2px;
}

.product-section .product-card:hover .arrow {
  transform: translateX(5px);
}

.product-section .cta-bar {
  position: relative;
  z-index: 3;
  width: max-content;
  max-width: 100%;
  height: auto;
  margin: 18px auto 0;
  display: block;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 62, 130, 0.20);
  overflow: visible;
}

.product-section .cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 520px;
  max-width: 100%;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  background: linear-gradient(135deg, #082f66 0%, #0b4aa5 55%, #c3111d 100%);
  box-shadow: 0 18px 36px rgba(7, 62, 130, 0.20);
  text-decoration: none;
}

.product-section .cta-link span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
  font-size: 22px;
  line-height: 1;
}

.product-section .cta-link:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.product-section .cta-link:active {
  transform: translateY(0);
}

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(460px, 0.88fr) minmax(560px, 1fr);
  gap: clamp(46px, 5vw, 86px);
  align-items: center;
  margin-top: 0px;
  padding: 150px 3% 94px;
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 47, 102, 0.06) 0 2px, transparent 3px) 0 0 / 20px 20px,
    linear-gradient(135deg, #ffffff 0%, #fbfdff 58%, #eef3f8 100%);
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.about-section::before {
  content: "";
  left: -220px;
  top: -210px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: transparent;
  border: 42px solid rgba(8, 47, 102, 0.08);
}

.about-section::after {
  right: -170px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border: 36px solid rgba(8, 47, 102, 0.08);
  border-radius: 50%;
}

.about-orbit {
  position: absolute;
  left: -70px;
  bottom: -115px;
  width: 520px;
  height: 520px;
  border: 18px solid #d1111e;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  z-index: -1;
}

.about-dots {
  position: absolute;
  right: 66px;
  top: 64px;
  width: 170px;
  height: 170px;
  opacity: 0.22;
  background: radial-gradient(circle, #9aa9bb 0 2px, transparent 3px) 0 0 / 18px 18px;
}

.about-media {
  position: relative;
  min-height: 650px;
}

.about-photo {
  position: absolute;
  left: 40px;
  top: 0;
  width: min(620px, calc(100% - 40px));
  height: 620px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 92px 36px 92px 36px;
  box-shadow: 0 24px 52px rgba(10, 35, 72, 0.22);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.standard-badge,
.experience-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 35, 60, 0.16);
}

.standard-badge {
  left: 0;
  top: 20px;
  width: 178px;
  min-height: 204px;
  padding: 22px 18px;
  border-radius: 24px;
  text-align: center;
}

.standard-badge::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 30px;
  width: 5px;
  height: 90px;
  border-radius: 99px;
  background: #d1111e;
}

.standard-icon {
  color: #082f66;
  font-size: 54px;
  line-height: 1;
}

.standard-badge strong {
  color: #082f66;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
}


.standard-badge em {
  color: #c3111d;
  font-style: normal;
}

.standard-badge span:last-child {
  color: #082f66;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-badge {
  right: 70px;
  bottom: 28px;
  width: 220px;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 24px;
  text-align: center;
}

.experience-badge strong {
  color: #d1111e;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 78px;
  line-height: 0.9;
}

.experience-badge span {
  color: #082f66;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-badge i {
  width: 48px;
  height: 4px;
  border-radius: 99px;
  background: #d1111e;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #c3111d;
  font-size: 21px;
  letter-spacing: 4px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-label::before,
.about-label::after {
  content: "";
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c3111d);
}

.about-label::after {
  background: linear-gradient(90deg, #c3111d, transparent);
}

.about-copy h2 {
  width: min(100%, 780px);
  margin: 0;
  color: #082f66;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(96px, 7.6vw, 144px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-copy h2 .about-line {
  display: block;
}

.about-copy h2 .about-accent {
  color: #c3111d;
}

.about-title-mark {
  width: 156px;
  height: 6px;
  margin: 26px 0 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #082f66 0 50%, #c3111d 50% 66%, #c9d0d8 66%);
}

.about-copy > p {
  max-width: 760px;
  margin: 0 0 36px;
  color: #273247;
  font-size: 22px;
  line-height: 1.45;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  max-width: 760px;
}

.about-feature {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 136px;
  padding: 22px 26px 22px 20px;
  border: 1px solid rgba(8, 47, 102, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(15, 35, 60, 0.10);
}

.about-feature-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b4c99, #062f6f);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.about-feature h3 {
  margin: 0 0 8px;
  color: #082f66;
  font-size: 22px;
  font-weight: 900;
}

.about-feature p {
  margin: 0;
  color: #344054;
  font-size: 19px;
  line-height: 1.4;
}

.about-feature span {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 18px;
  border-radius: 99px;
  background: #d1111e;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.about-primary,
.about-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 250px;
  height: 60px;
  border-radius: 999px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b4c99, #062f6f);
  box-shadow: 0 16px 30px rgba(8, 47, 102, 0.20);
}

.about-secondary {
  color: #082f66;
  background: #fff;
  border: 2px solid #082f66;
}

.about-primary span,
.about-secondary span {
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
}

.industries-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 46px;
  padding: 66px 6% 78px;
  background:
    radial-gradient(circle at 6% 66%, rgba(8, 47, 102, 0.08) 0 2px, transparent 3px) 0 0 / 18px 18px,
    linear-gradient(135deg, #ffffff 0%, #f9fbfe 58%, #eef3f8 100%);
}

.industries-section::before,
.industries-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.industries-section::before {
  right: 36px;
  top: 180px;
  width: 78px;
  height: 250px;
  border: 2px solid rgba(8, 47, 102, 0.12);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.industries-section::after {
  right: 36px;
  top: 500px;
  width: 78px;
  height: 180px;
  border: 2px solid rgba(8, 47, 102, 0.12);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.industry-word {
  position: absolute;
  left: 14px;
  top: 42px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(8, 47, 102, 0.12);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 104px;
  line-height: 0.8;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
}

.industry-line-art {
  position: absolute;
  left: 150px;
  bottom: 170px;
  width: 300px;
  height: 210px;
  opacity: 0.16;
  background: url("Home Photos/HOME PAGE 1.jpg") center/cover no-repeat;
  filter: grayscale(1);
  mask-image: linear-gradient(0deg, black, transparent 78%);
}

.industries-intro {
  position: relative;
  z-index: 2;
  padding: 88px 0 0 80px;
}

.industry-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #c3111d;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.industry-label::before,
.industry-label::after {
  content: "";
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c3111d);
}

.industry-label::after {
  background: linear-gradient(90deg, #c3111d, transparent);
}

.industries-intro h2 {
  margin: 0;
  color: #082f66;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(58px, 5.2vw, 78px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: none;
}

.industries-intro h2 span {
  display: block;
  color: #c3111d;
}

.industry-title-mark {
  width: 136px;
  height: 6px;
  margin: 32px 0 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #082f66 0 44%, #c3111d 44% 66%, #c9d0d8 66%);
}

.industries-intro p {
  max-width: 300px;
  margin: 0;
  color: #202b3d;
  font-size: 18px;
  line-height: 1.55;
}

.intro-dots {
  width: 140px;
  height: 48px;
  margin-top: 48px;
  opacity: 0.22;
  background: radial-gradient(circle, #8393a8 0 2px, transparent 3px) 0 0 / 16px 16px;
}

.industry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.industry-card {
  position: relative;
  min-height: 342px;
  overflow: hidden;
  border-radius: 16px;
  background: #082f66;
  box-shadow: 0 14px 32px rgba(8, 31, 72, 0.22);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 20, 50, 0.14) 0%, rgba(3, 16, 42, 0.88) 58%, rgba(3, 16, 42, 0.98) 100%);
}

.industry-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -38px;
  z-index: 2;
  width: 140px;
  height: 140px;
  background: #d1111e;
  transform: rotate(45deg);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-icon {
  position: absolute;
  left: 26px;
  top: 80px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  color: #082f66;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 31, 72, 0.22);
}

.industry-content {
  position: absolute;
  left: 28px;
  right: 26px;
  bottom: 34px;
  z-index: 3;
  color: #fff;
}

.industry-content h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-content i {
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: #e00f1d;
}

.industry-content p {
  max-width: 265px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 1.5;
}

.industry-card > a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.industry-stats {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  padding: 34px 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #082f66, #031a3f);
  border-bottom: 7px solid #d1111e;
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 31, 72, 0.20);
}

.industry-stats article {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 22px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.industry-stats article:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
}

.industry-stats strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 46px;
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
}

.industry-stats span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-stats p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.45;
}

.why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(430px, 38%) minmax(760px, 1fr);
  gap: clamp(18px, 2.4vw, 44px);
  min-height: 980px;
  padding: 86px 3.2% 42px;
  background:
    radial-gradient(circle at 93% 8%, rgba(8, 47, 102, 0.10) 0 1px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(135deg, #ffffff 0%, #fbfdff 55%, #edf2f8 100%);
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.why-section::before {
  left: -180px;
  top: -190px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: transparent;
  border: 38px solid rgba(8, 47, 102, 0.07);
  box-shadow: none;
}

.why-section::after {
  left: -170px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  border: 34px solid #d1111e;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
}

.why-pattern {
  position: absolute;
  right: -80px;
  top: -85px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(8, 47, 102, 0.08);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 10px, rgba(8, 47, 102, 0.10) 11px 12px);
  opacity: 0.38;
}

.why-curve {
  position: absolute;
  left: -90px;
  top: -72px;
  z-index: -1;
  width: 640px;
  height: 640px;
  border: 18px solid rgba(8, 47, 102, 0.08);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}

.why-copy {
  position: relative;
  z-index: 2;
  padding-top: 10px;
  padding-left: clamp(0px, 1.2vw, 24px);
}

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #c3111d;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.why-label::before,
.why-label::after {
  content: "";
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c3111d);
}

.why-label::after {
  background: linear-gradient(90deg, #c3111d, transparent);
}

.why-copy h2 {
  margin: 0;
  color: #082f66;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(64px, 5.8vw, 92px);
  line-height: 0.94;
  font-weight: 800;
  text-transform: none;
}

.why-copy h2 span {
  display: block;
  color: #d1111e;
}

.why-title-mark {
  width: 166px;
  height: 6px;
  margin: 30px 0 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #082f66 0 44%, #d1111e 44% 66%, #c9d0d8 66%);
}

.why-copy > p {
  max-width: 560px;
  margin: 0;
  color: #202b3d;
  font-size: 20px;
  line-height: 1.6;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin-top: 44px;
}

.why-pillars article {
  min-height: 230px;
  padding: 22px 18px 20px;
  text-align: center;
  border: 1px solid rgba(8, 47, 102, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow:
    0 18px 40px rgba(15, 35, 60, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.why-pillars article:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 47, 102, 0.16);
  box-shadow:
    0 26px 58px rgba(15, 35, 60, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(135deg, #0b4aa5, #082f66);
  box-shadow: 0 14px 26px rgba(8, 47, 102, 0.22);
}

.why-pillars h3 {
  margin: 0;
  color: #082f66;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-pillars i {
  display: block;
  width: 46px;
  height: 3px;
  margin: 14px auto 18px;
  background: #d1111e;
  border-radius: 99px;
}

.why-pillars p {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.6;
}

.why-visual {
  position: relative;
  min-height: 760px;
  margin-top: -18px;
}

.why-ring {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 680px;
  height: 680px;
  border: 2px dashed rgba(8, 47, 102, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: whyRingSpin 24s linear infinite;
  will-change: transform;
}

.why-ring::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(209, 17, 30, 0.14);
  border-radius: 50%;
  animation: whyRingSpinReverse 18s linear infinite;
}

.why-center {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 410px;
  height: 470px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(24% 0, 76% 0, 100% 22%, 100% 78%, 76% 100%, 24% 100%, 0 78%, 0 22%);
  transform: translate(-50%, -50%);
  background: #082f66;
  box-shadow: 0 22px 52px rgba(8, 31, 72, 0.28);
}

.why-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 50, 0.06), rgba(4, 20, 50, 0.30));
}

.why-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-astm {
  position: absolute;
  left: 50%;
  top: calc(51% + 64px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 7px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #082f66;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(8, 31, 72, 0.28);
}

.why-astm strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 35px;
  line-height: 0.9;
}

.why-astm span {
  color: #ff1728;
}

.why-astm em {
  margin-top: -24px;
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-hex {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 292px;
  min-height: 308px;
  padding: 28px 30px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  /* pointed top/bottom shape */
  clip-path: polygon(50% 0, 100% 12%, 100% 88%, 50% 100%, 0 88%, 0 12%);
  filter: drop-shadow(0 18px 28px rgba(15, 35, 60, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
}

.hex-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(8, 31, 72, 0.18);
}

.hex-icon.blue {
  background: #082f66;
}

.hex-icon.red {
  background: #d1111e;
}

.why-hex h3 {
  max-width: 230px;
  margin: 0;
  color: #082f66;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.why-hex i {
  width: 52px;
  height: 3px;
  margin: 14px auto 16px;
  border-radius: 99px;
  background: #d1111e;
}

.why-hex p {
  max-width: 210px;
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.55;
}

.why-hex:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 26px 40px rgba(15, 35, 60, 0.22));
}

/* (back to hex: no bottom strip) */

.hex-top-left {
  left: 104px;
  top: 0;
}

.hex-top-right {
  right: 104px;
  top: 0;
}

.hex-mid-left {
  left: 0;
  top: 282px;
}

.hex-mid-right {
  right: 0;
  top: 282px;
}

.hex-bottom-left {
  left: 110px;
  bottom: -40px;
}

.hex-bottom-right {
  right: 110px;
  bottom: -40px;
}

.why-stats {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
  padding: 34px 44px;
  border: 4px solid #fff;
  border-bottom: 7px solid #d1111e;
  border-radius: 28px 28px 22px 22px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #082f66, #031a3f);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 31, 72, 0.22);
}

.why-stats article {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 22px;
  align-items: center;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.why-stats article:last-child {
  border-right: 0;
}

.why-stat-icon {
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
}

.why-stats strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 46px;
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
}

.why-stats span {
  display: block;
  color: #ff1c2b;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-stats p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 15px;
  line-height: 1.45;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 0;
  background:
    linear-gradient(138deg, #052758 0 6%, transparent 6.1%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #edf3f8 100%);
}

.contact-section::before {
  content: "";
  position: absolute;
  right: 52px;
  top: 34px;
  z-index: -1;
  width: 440px;
  height: 280px;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(8, 47, 102, 0.35) 8% 9%, transparent 9% 18%) 0 0 / 54px 100%,
    linear-gradient(180deg, transparent 0 42%, rgba(8, 47, 102, 0.22) 42% 43%, transparent 43%);
  border-bottom: 1px solid rgba(8, 47, 102, 0.20);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: 66px;
  top: 655px;
  width: 160px;
  height: 130px;
  opacity: 0.34;
  background: radial-gradient(circle, #e93d48 0 2px, transparent 3px) 0 0 / 18px 18px;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(370px, 31%) minmax(250px, 20%) minmax(460px, 1fr);
  gap: 28px;
  width: min(1780px, calc(100% - 96px));
  margin: 0 auto;
  padding: 64px 90px 48px;
  border-radius: 0 0 48px 48px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(10, 35, 72, 0.08);
}

.contact-shell::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  opacity: 0.12;
  background:
    linear-gradient(30deg, rgba(8, 62, 130, 0.12) 12%, transparent 12.5%, transparent 87%, rgba(8, 62, 130, 0.12) 87.5%, rgba(8, 62, 130, 0.12)),
    linear-gradient(150deg, rgba(8, 62, 130, 0.10) 12%, transparent 12.5%, transparent 87%, rgba(8, 62, 130, 0.10) 87.5%, rgba(8, 62, 130, 0.10));
  background-size: 54px 94px;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c60814;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 18px;
  margin-bottom: 26px;
}

.contact-eyebrow span {
  width: 78px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c60814);
}

.contact-eyebrow span:last-child {
  background: linear-gradient(90deg, #c60814, transparent);
}

.contact-copy h2 {
  margin: 0;
  color: #071d45;
  font-size: clamp(48px, 4.1vw, 70px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1px;
}

.contact-copy h2 span {
  display: block;
  color: #cf0b17;
}

.contact-title-line {
  width: 215px;
  height: 6px;
  margin: 28px 0 30px;
  background: linear-gradient(90deg, #071d45 0 34%, #cf0b17 34% 66%, #d2d8e1 66% 100%);
  border-radius: 99px;
}

.contact-copy > p {
  max-width: 455px;
  margin: 0 0 34px;
  color: #172235;
  font-size: 18px;
  line-height: 1.55;
}

.contact-info-list {
  display: grid;
  gap: 0;
  max-width: 455px;
}

.contact-info-list article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid rgba(8, 47, 102, 0.16);
}

.contact-info-list article:last-child {
  border-bottom: 0;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(8, 47, 102, 0.18);
  border-radius: 50%;
  color: #c60814;
  background: #fff;
  font-size: 34px;
  box-shadow: 0 8px 18px rgba(15, 35, 60, 0.05);
}

.contact-info-list h3 {
  margin: 0 0 8px;
  color: #071d45;
  font-size: 19px;
  font-weight: 900;
}

.contact-info-list p {
  margin: 0;
  color: #162236;
  font-size: 15px;
  line-height: 1.45;
}

.contact-photo-wrap {
  position: relative;
  z-index: 2;
  min-height: 760px;
}

.contact-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 545px;
  margin: 0;
  border-radius: 78px 26px 26px 26px;
  border-right: 6px solid #cf0b17;
  background: #092657;
  box-shadow: 0 18px 44px rgba(8, 31, 72, 0.20);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 23, 52, 0.02), rgba(6, 23, 52, 0.18));
}

.assist-card {
  position: absolute;
  left: -24px;
  right: 8px;
  bottom: 0;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  min-height: 182px;
  padding: 28px 28px 26px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(135deg, #082b63, #031a3f);
  color: #fff;
  box-shadow: 0 16px 34px rgba(8, 31, 72, 0.28);
}

.assist-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  font-size: 46px;
  color: #fff;
}

.assist-copy strong {
  display: block;
  margin-top: 5px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.assist-copy span {
  display: block;
  width: 86px;
  height: 3px;
  margin: 12px 0 12px;
  background: #d70d19;
  border-radius: 99px;
}

.assist-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.assist-card a {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e40f1d, #bd0713);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.contact-form {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: 56px 42px 38px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(15, 35, 60, 0.11);
}

.form-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 22px;
}

.form-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #d50916;
  color: #fff;
  font-size: 37px;
}

.form-head h3 {
  margin: 0 0 8px;
  color: #071d45;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
}

.form-head p {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
}

.form-divider {
  height: 1px;
  margin: 30px 0 34px;
  background: rgba(8, 47, 102, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 18px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid #cbd3df;
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: #14213a;
  font: 500 15px Inter, Arial, sans-serif;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #4a5872;
}

.form-grid select,
.form-grid textarea {
  grid-column: 1 / -1;
}

.form-grid textarea {
  min-height: 164px;
  padding-top: 22px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 32px;
}

.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 225px;
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #082b63, #031a3f);
  color: #fff;
  font: 900 16px Inter, Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(8, 31, 72, 0.22);
}

.form-actions button span {
  font-size: 21px;
}

.form-actions p {
  margin: 0;
  color: #4b5568;
  font-size: 14px;
  line-height: 1.45;
}

.form-actions p span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  border: 2px solid #9aa7bb;
  border-radius: 50%;
  color: #082b63;
  vertical-align: middle;
}

.contact-benefits {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 142px;
  margin-top: 18px;
  padding: 28px 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(15, 35, 60, 0.10);
}

.contact-benefits article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid rgba(8, 47, 102, 0.18);
}

.contact-benefits article:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, #082b63, #031a3f);
  color: #fff;
  font-size: 35px;
  box-shadow: 0 10px 20px rgba(8, 31, 72, 0.18);
}

.contact-benefits h3 {
  margin: 0 0 8px;
  color: #071d45;
  font-size: 17px;
  font-weight: 900;
}

.contact-benefits p {
  margin: 0;
  color: #263348;
  font-size: 14px;
  line-height: 1.45;
}

.contact-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 44px;
  min-height: 150px;
  padding: 30px 8% 28px;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(135deg, #082b63, #031a3f);
  color: #fff;
  border-bottom: 6px solid #d50916;
}

.footer-pipe {
  width: 360px;
  max-width: 100%;
  height: 90px;
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,0.9) 8% 9%, transparent 9% 100%) 0 62px / 64px 20px,
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)) 20px 62px / 300px 2px no-repeat;
}

.contact-footer blockquote {
  position: relative;
  margin: 0;
  padding-left: 72px;
  border-right: 2px solid #d50916;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.contact-footer blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -18px;
  color: #d50916;
  font-size: 78px;
  line-height: 1;
  font-family: Georgia, serif;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social strong {
  margin-right: 18px;
  font-size: 17px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(255,255,255,0.05) 0 1px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(135deg, #082c63 0%, #031b42 58%, #02142f 100%);
  color: #fff;
  border-bottom: 7px solid #d50916;
}

.footer-assurance {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1780px, calc(100% - 96px));
  min-height: 176px;
  margin: -1px auto 0;
  padding: 34px 46px;
  border: 1px solid rgba(8, 47, 102, 0.10);
  border-radius: 28px;
  background: rgba(255,255,255,0.98);
  color: #071d45;
  box-shadow: 0 18px 38px rgba(15, 35, 60, 0.10);
  transform: translateY(-48px);
}

.footer-assurance article {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 22px;
  align-items: center;
  padding: 0 34px;
  border-right: 1px solid rgba(8, 47, 102, 0.24);
}

.footer-assurance article:last-child {
  border-right: 0;
}

.assurance-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(8, 47, 102, 0.16);
  border-radius: 50%;
  color: #d50916;
  background: #fff;
  font-size: 42px;
  box-shadow: 0 8px 18px rgba(15, 35, 60, 0.06);
}

.footer-assurance h3 {
  margin: 0 0 10px;
  color: #061a3f;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-assurance p {
  margin: 0;
  color: #172236;
  font-size: 15px;
  line-height: 1.5;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(210px, 0.8fr) minmax(320px, 1fr) minmax(370px, 1.35fr);
  gap: 64px;
  width: min(1700px, calc(100% - 140px));
  margin: 0 auto;
  padding: 72px 0 58px;
}

.footer-main::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: 20px;
  width: 420px;
  height: 140px;
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,0.8) 8% 9%, transparent 9% 100%) 0 82px / 70px 28px,
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)) 20px 82px / 340px 2px no-repeat;
  pointer-events: none;
}

.footer-col {
  position: relative;
  z-index: 2;
}

.footer-logo strong {
  display: block;
  font-style: italic;
  color: #fff;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -2px;
  font-weight: 900;
}

.footer-logo span {
  display: block;
  margin-top: 6px;
  color: #ff1525;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.footer-brand i,
.footer-col > h3::after,
.footer-follow h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 24px 0 28px;
  border-radius: 99px;
  background: #e00f1d;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.55;
}

.footer-checks {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.footer-checks li {
  position: relative;
  padding-left: 36px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.footer-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e00f1d;
  font-size: 14px;
}

.footer-line-art {
  height: 110px;
}

.footer-col > h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-col li a {
  display: block;
  position: relative;
  padding: 14px 0 14px 28px;
  color: rgba(255,255,255,0.94);
  font-size: 16px;
}

.footer-col li a::before {
  content: "\203A";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 24px;
  line-height: 0.75;
}

.catalogue-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  min-height: 116px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 18px;
  color: #fff;
}

.catalogue-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 70px;
  border-right: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 42px;
}

.catalogue-card strong,
.catalogue-card em,
.catalogue-card small {
  display: block;
}

.catalogue-card strong {
  font-size: 15px;
  text-transform: uppercase;
}

.catalogue-card em {
  margin: 6px 0;
  color: #ff1525;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.catalogue-card small {
  color: rgba(255,255,255,0.86);
  font-size: 13px;
}

.footer-contact article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.footer-contact article:last-child {
  border-bottom: 0;
}

.footer-contact article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
}

.footer-contact h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}

.footer-contact p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.45;
}

.footer-cert-row {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(500px, 1.7fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: 42px;
  width: min(1700px, calc(100% - 140px));
  margin: 0 auto;
  padding: 38px 0;
  border-top: 1px solid rgba(255,255,255,0.20);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-promise {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 26px;
}

.footer-promise span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 4px solid #fff;
  border-radius: 16px;
  color: #ff1525;
  font-size: 34px;
  font-weight: 900;
}

.footer-promise p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

.footer-promise strong {
  color: #ff1525;
}

.cert-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255,255,255,0.25);
  border-right: 1px solid rgba(255,255,255,0.25);
}

.cert-list article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
  text-align: center;
}

.cert-list article:last-child {
  border-right: 0;
}

.cert-list span {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.cert-list p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-follow h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
}

.footer-follow h3::after {
  margin: 14px 0 18px;
}

.footer-follow div {
  display: flex;
  gap: 18px;
}

.footer-follow a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 21px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 82px;
  color: rgba(255,255,255,0.94);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  padding-left: 38px;
  border-left: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 42px);
    transform: translateY(-28px);
  }

  .footer-assurance article:nth-child(2) {
    border-right: 0;
  }

  .footer-assurance article {
    border-bottom: 1px solid rgba(8, 47, 102, 0.16);
    padding: 22px;
  }

  .footer-assurance article:nth-child(3),
  .footer-assurance article:nth-child(4) {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 56px);
    gap: 42px;
    margin-top: 0;
  }

  .footer-cert-row {
    grid-template-columns: 1fr;
    width: calc(100% - 56px);
  }

  .cert-list {
    border-left: 0;
    border-right: 0;
  }

  .footer-follow {
    text-align: center;
  }

  .footer-follow h3::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-follow div {
    justify-content: center;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 42px);
    padding: 48px 32px 40px;
  }

  .contact-copy > p,
  .contact-info-list {
    max-width: 100%;
  }

  .contact-photo-wrap {
    min-height: auto;
  }

  .contact-photo {
    height: 520px;
  }

  .assist-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -24px 24px 0;
  }

  .contact-benefits {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .contact-benefits article:nth-child(2) {
    border-right: 0;
  }

  .contact-benefits article {
    border-bottom: 1px solid rgba(8, 47, 102, 0.14);
    padding: 22px;
  }

  .contact-benefits article:nth-child(3),
  .contact-benefits article:nth-child(4) {
    border-bottom: 0;
  }

  .contact-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-pipe {
    margin: 0 auto;
  }

  .contact-footer blockquote {
    padding: 0;
    border-right: 0;
  }

  .contact-footer blockquote::before {
    position: static;
    display: block;
    height: 44px;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-section {
    padding: 38px 24px;
  }

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

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 600px;
    max-width: 720px;
  }

  .industries-section {
    grid-template-columns: 1fr;
  }

  .industries-intro {
    padding: 0;
  }

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

  .industry-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .industry-stats article:nth-child(2) {
    border-right: 0;
  }

  .why-section {
    grid-template-columns: 1fr;
  }

  .why-copy {
    padding-top: 0;
  }

  .why-copy > p {
    max-width: 720px;
  }

  .why-pillars {
    max-width: 760px;
  }

  .why-visual {
    min-height: 760px;
  }

  .why-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .why-stats article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .footer-assurance {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 20px;
  }

  .footer-assurance article,
  .footer-assurance article:nth-child(2),
  .footer-assurance article:nth-child(3) {
    grid-template-columns: 72px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 47, 102, 0.16);
    padding: 18px 0;
  }

  .footer-assurance article:last-child {
    border-bottom: 0;
  }

  .assurance-icon {
    width: 62px;
    height: 62px;
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: calc(100% - 34px);
    gap: 34px;
    padding-bottom: 36px;
  }

  .footer-logo strong {
    font-size: 42px;
  }

  .footer-logo span {
    font-size: 20px;
    letter-spacing: 7px;
  }

  .catalogue-card {
    grid-template-columns: 64px 1fr;
  }

  .footer-contact article {
    grid-template-columns: 58px 1fr;
  }

  .footer-cert-row {
    width: calc(100% - 34px);
    gap: 28px;
  }

  .footer-promise {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cert-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .cert-list article:nth-child(2) {
    border-right: 0;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px 20px;
    padding: 22px 20px;
    text-align: center;
  }

  .footer-bottom p {
    flex-basis: 100%;
  }

  .footer-bottom a {
    padding-left: 0;
    border-left: 0;
  }

  .contact-section {
    background: linear-gradient(135deg, #f8fbff 0%, #fff 50%, #edf3f8 100%);
  }

  .contact-shell {
    width: calc(100% - 22px);
    padding: 34px 18px 28px;
    border-radius: 0 0 28px 28px;
  }

  .contact-eyebrow {
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }

  .contact-eyebrow span {
    width: 44px;
  }

  .contact-copy h2 {
    font-size: 42px;
    text-align: center;
  }

  .contact-title-line {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-copy > p {
    text-align: center;
    font-size: 16px;
  }

  .contact-info-list article {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    min-height: 100px;
  }

  .contact-info-icon {
    width: 56px;
    height: 56px;
    font-size: 27px;
  }

  .contact-photo-wrap {
    min-height: auto;
  }

  .contact-photo {
    height: 430px;
    border-radius: 52px 18px 18px 18px;
  }

  .assist-card {
    grid-template-columns: 1fr;
    margin: -24px 10px 0;
    text-align: center;
  }

  .assist-icon {
    display: none;
  }

  .assist-card a {
    grid-column: auto;
  }

  .assist-copy span {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    padding: 32px 18px 24px;
    border-radius: 22px;
  }

  .form-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-icon {
    margin: 0 auto;
  }

  .form-head h3 {
    font-size: 27px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .form-actions button {
    width: 100%;
  }

  .contact-benefits {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-benefits article,
  .contact-benefits article:nth-child(2),
  .contact-benefits article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 47, 102, 0.14);
    padding: 18px 0;
  }

  .contact-benefits article:last-child {
    border-bottom: 0;
  }

  .contact-footer {
    padding: 26px 20px;
  }

  .footer-social strong {
    flex-basis: 100%;
    margin: 0 0 4px;
  }

  .product-section .section-head h1 {
    font-size: 44px;
  }

  .product-section .section-head p {
    font-size: 16px;
  }

  .product-section .eyebrow {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .product-section .eyebrow::before,
  .product-section .eyebrow::after {
    width: 38px;
  }

  .product-section .product-grid {
    grid-template-columns: 1fr;
  }

  .product-section .product-card {
    transform: none;
    min-height: 0;
  }

  .product-section .product-card:hover {
    transform: translateY(-6px);
  }

  .product-section .card-inner {
    transform: none;
    margin: 0;
    min-height: 0;
  }

  .product-section .content {
    min-height: 190px;
    padding-bottom: 72px;
  }

  .product-section .cta-bar {
    width: 100%;
    border-radius: 18px;
  }

  .product-section .cta-link {
    border-radius: 18px;
    min-height: 54px;
    padding: 0 18px;
    font-size: 13px;
    letter-spacing: 0.6px;
    width: 100%;
  }

  .product-section .cta-link span {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .about-section {
    padding: 56px 20px;
  }

  .about-media {
    min-height: 500px;
  }

  .about-photo {
    left: 0;
    width: 100%;
    height: 440px;
    border-radius: 56px 24px 56px 24px;
  }

  .standard-badge {
    width: 138px;
    min-height: 166px;
  }

  .standard-badge strong {
    font-size: 27px;
  }

  .experience-badge {
    width: 168px;
    min-height: 168px;
  }

  .experience-badge strong {
    font-size: 58px;
  }

  .experience-badge span {
    font-size: 21px;
  }

  .about-label {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .about-label::before,
  .about-label::after {
    width: 36px;
  }

  .about-copy h2 {
    font-size: 44px;
  }

  .about-copy > p {
    font-size: 17px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-primary,
  .about-secondary {
    width: 100%;
    min-width: 0;
  }

  .industries-section {
    padding: 54px 20px;
  }

  .industry-word {
    display: none;
  }

  .industries-intro h2 {
    font-size: 48px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 320px;
  }

  .industry-stats {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .industry-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 20px 0;
  }

  .industry-stats article:last-child {
    border-bottom: 0;
  }

  .why-section {
    padding: 54px 20px;
  }

  .why-label {
    font-size: 14px;
  }

  .why-label::before,
  .why-label::after {
    width: 38px;
  }

  .why-copy h2 {
    font-size: 48px;
  }

  .why-copy > p {
    font-size: 17px;
  }

  .why-pillars {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-pillars article {
    border-right: 0;
    min-height: 0;
  }

  .why-visual {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .why-ring {
    display: none;
  }

  .why-center,
  .why-astm,
  .why-hex {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .why-center {
    width: 100%;
    height: 360px;
    clip-path: none;
    border-radius: 22px;
  }

  .why-astm {
    margin: -86px auto 0;
  }

  .why-hex {
    width: 100%;
    min-height: 0;
    clip-path: none;
    border-radius: 18px;
  }

  .why-stats {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .why-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 20px 0;
  }

  .why-stats article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1320px) {
  .site-header {
    padding: 30px 30px 15px;
    gap: 18px;
  }

  .brand {
    min-width: 330px;
  }

  .brand-name {
    font-size: 25px;
  }

  .nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 20px 34px 380px;
  }

  .visual {
    margin-top: 40px;
    transform: scale(0.86);
    transform-origin: left top;
  }

  .feature-strip {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: -320px auto 32px;
  }

  .feature {
    border-bottom: 2px solid var(--line);
  }

}

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

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .quote-btn {
    min-width: 150px;
  }

  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .visual {
    transform: scale(0.64);
    min-height: 485px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: -220px;
  }

  .feature {
    border-right: 0;
  }

  .products {
    padding: 80px 24px;
  }

  .products-title {
    font-size: 42px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-image {
    height: 200px;
  }

  .product-content {
    grid-template-columns: 66px 1fr;
    padding: 0 22px 68px;
  }

  .product-icon {
    width: 64px;
    height: 64px;
    font-size: 29px;
  }

  .product-content h3 {
    font-size: 22px;
  }

  .product-content p {
    font-size: 14px;
  }

  .product-link {
    left: 104px;
    right: 22px;
  }

}

/* Responsive fix: tablet */
@media (max-width: 1400px) {
  .feature-strip {
    width: min(1800px, calc(100% - 30px));
    min-height: 230px;
    padding: 32px 0 30px;
  }

  .feature {
    grid-template-columns: 82px 1fr;
    column-gap: 22px;
    padding: 0 34px;
  }

  .feature-icon {
    width: 78px;
    height: 78px;
    font-size: 36px;
  }

  .feature h3 {
    font-size: 32px;
  }

  .feature p {
    font-size: 19px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 100%;
  }

  .brand-name {
    font-size: 23px;
  }

  .quote-btn {
    height: 48px;
  }

  h1 {
    margin-top: 34px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .visual {
    transform: scale(0.42);
    transform-origin: left top;
    min-height: 320px;
  }

  .feature-strip {
    width: calc(100% - 24px);
    margin-top: -145px;
    border-radius: 20px;
  }

  .feature {
    grid-template-columns: 66px 1fr;
    column-gap: 18px;
    padding: 28px 24px;
  }

  .feature-icon {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }

  .products {
    padding: 60px 16px;
  }

  .products-label {
    font-size: 14px;
  }

  .products-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .products-desc {
    font-size: 16px;
  }

  .products-header {
    margin-bottom: 50px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .product-card {
    min-height: 0;
  }

  .product-image {
    height: 180px;
  }

  .product-content {
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    padding: 0 18px 64px;
  }

  .product-icon {
    width: 58px;
    height: 58px;
    margin-top: -22px;
    margin-bottom: 0;
    border-width: 6px;
    font-size: 24px;
  }

  .product-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .product-content p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .product-link {
    left: 90px;
    right: 18px;
    bottom: 20px;
  }

  .view-all-btn {
    height: 48px;
    font-size: 18px;
    padding: 0 32px;
  }

  .view-all-btn span {
    font-size: 20px;
  }
}

/* Color balancing overrides */
.site-header {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(245,249,255,0.96)),
    radial-gradient(circle at 12% 0%, rgba(11, 63, 135, 0.08), transparent 30%);
  border-bottom: 1px solid rgba(8, 47, 102, 0.12);
}

.banner {
  background:
    radial-gradient(circle at 0 22%, rgba(11, 63, 135, 0.10) 0 2px, transparent 3px) 0 0 / 22px 22px,
    radial-gradient(circle at 83% 10%, rgba(184, 7, 18, 0.08), transparent 24%),
    linear-gradient(125deg, #ffffff 0%, #eef5ff 48%, #dfeaf7 100%);
}

.product-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(197, 8, 20, 0.07), transparent 24%),
    radial-gradient(circle at 92% 6%, rgba(8, 47, 102, 0.11), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #e9f1fb 55%, #f7f9fc 100%);
}

.about-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(8, 47, 102, 0.10), transparent 28%),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 52%, #f1f5f9 100%);
}

.industries-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(135deg, #082f66 0%, #05214d 54%, #031632 100%);
}

.why-section {
  background:
    radial-gradient(circle at 93% 8%, rgba(8, 47, 102, 0.11) 0 1px, transparent 2px) 0 0 / 12px 12px,
    radial-gradient(circle at 8% 80%, rgba(209, 17, 30, 0.08), transparent 26%),
    linear-gradient(135deg, #f7fbff 0%, #edf4fc 55%, #ffffff 100%);
}

.contact-section {
  background:
    linear-gradient(138deg, #052758 0 6%, transparent 6.1%),
    radial-gradient(circle at 90% 64%, rgba(209, 9, 22, 0.08), transparent 22%),
    linear-gradient(135deg, #eef5ff 0%, #ffffff 46%, #e7eff8 100%);
}

.contact-shell,
.product-section .product-card,
.about-feature,
.why-hex,
.contact-form,
.contact-benefits,
.feature-strip {
  background-color: rgba(255, 255, 255, 0.96);
}

/* Layout refinement: centered structure and compact cards */
.site-header {
  padding-left: clamp(28px, 5vw, 88px);
  padding-right: clamp(28px, 5vw, 88px);
}

.hero {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: minmax(430px, 0.9fr) minmax(560px, 1fr);
  padding-left: 0;
  padding-right: 0;
}

.visual {
  transform: scale(0.74);
  margin-left: -10px;
}

.feature-strip {
  width: min(1280px, calc(100% - 90px));
  min-height: 176px;
  padding: 24px 0 22px;
}

.feature {
  grid-template-columns: 60px 1fr;
  column-gap: 18px;
  padding: 0 26px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-width: 6px;
  font-size: 26px;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  line-height: 1.38;
}

.about-section,
.product-section,
.industries-section,
.why-section,
.contact-section {
  padding-left: max(32px, calc((100% - 1320px) / 2));
  padding-right: max(32px, calc((100% - 1320px) / 2));
}

.product-section .section-head,
.products-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.product-section .section-head p,
.products-desc {
  max-width: 640px;
  font-size: 16px;
}

.product-section .product-grid,
.products-grid {
  max-width: 1650px;
  gap: 42px 38px;
}

.product-section .product-card,
.product-card {
  min-height: 460px;
}

.product-section .card-inner {
  min-height: 460px;
}

.product-section .product-img,
.product-image {
  height: 220px;
}

.product-section .content {
  padding: 28px 30px 78px 102px;
  min-height: 220px;
}

.product-section .icon-wrap,
.product-icon {
  width: 58px;
  height: 58px;
  font-size: 26px;
}

.product-section .icon-wrap {
  left: 28px;
  top: -28px;
  border-width: 5px;
}

.product-section .content h3,
.product-content h3 {
  font-size: 20px;
}

.product-section .content p,
.product-content p {
  font-size: 13px;
  line-height: 1.42;
}

.product-section .details-row {
  left: 92px;
  right: 24px;
  bottom: 18px;
}

.industries-section {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
}

.industry-grid {
  max-width: 900px;
  gap: 18px;
}

.industry-card {
  min-height: 285px;
}

.industry-icon {
  width: 66px;
  height: 66px;
  top: 62px;
  font-size: 24px;
}

.industry-content h3 {
  font-size: 21px;
}

.industry-content p {
  font-size: 13px;
}

.industry-stats,
.why-stats {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.why-section {
  grid-template-columns: minmax(340px, 0.82fr) minmax(720px, 1fr);
  gap: 28px;
}

.why-visual {
  transform: scale(0.86);
  transform-origin: center top;
}

.why-hex {
  width: 230px;
  min-height: 236px;
  padding: 22px 22px 24px;
}

.hex-icon {
  width: 62px;
  height: 62px;
  font-size: 28px;
}

.why-hex h3 {
  font-size: 18px;
}

.why-hex p {
  font-size: 12.5px;
}

.contact-shell {
  width: min(1280px, calc(100% - 64px));
  grid-template-columns: minmax(320px, 0.95fr) minmax(220px, 0.72fr) minmax(420px, 1.15fr);
  padding: 48px 54px 40px;
}

.contact-photo-wrap {
  min-height: 650px;
}

.contact-photo {
  height: 470px;
}

.contact-form {
  min-height: 650px;
  padding: 42px 32px 30px;
}

.contact-benefits {
  min-height: 112px;
  padding: 22px 26px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  font-size: 28px;
}

.footer-main,
.footer-cert-row {
  width: min(1280px, calc(100% - 64px));
}

.footer-main {
  gap: 42px;
}

@media (max-width: 1320px) {
  .hero,
  .contact-shell,
  .footer-main,
  .footer-cert-row {
    width: calc(100% - 48px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .industries-section,
  .why-section {
    grid-template-columns: 1fr;
  }

  .product-section .product-grid,
  .products-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-section,
  .product-section,
  .industries-section,
  .why-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-section .product-grid,
  .products-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* Final structure polish: contained sections and smaller cards */
.site-header {
  padding-left: clamp(28px, 4vw, 64px);
  padding-right: clamp(28px, 4vw, 64px);
}

.hero {
  width: min(1280px, calc(100% - 84px));
  grid-template-columns: minmax(380px, 40%) minmax(500px, 1fr);
  min-height: 660px;
  padding-left: 0;
}

.hero-copy {
  max-width: 540px;
  padding-left: 0;
}

.hero-copy h1 {
  font-size: clamp(30px, 3.8vw, 54px) !important;
}

.hero-copy h2 {
  font-size: clamp(17px, 1.45vw, 24px) !important;
}

.visual {
  transform: translate(46px, -22px) scale(1.06);
  transform-origin: center right;
}

.feature-strip {
  width: min(1180px, calc(100% - 84px));
  min-height: 132px;
  margin-top: -48px;
  padding: 18px 0 16px;
  border-radius: 28px;
}

.feature {
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 10px;
  align-content: start;
  padding: 0 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-width: 5px;
  font-size: 19px;
}

.feature h3 {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.08;
}

.feature p {
  grid-column: 2;
  max-width: 190px;
  font-size: 15.5px !important;
  line-height: 1.45;
  color: #243044;
}

.about-section,
.product-section,
.industries-section,
.why-section,
.contact-section {
  padding-left: max(18px, calc((100vw - 1480px) / 2));
padding-right: max(18px, calc((100vw - 1480px) / 2));

}

.about-section {
  grid-template-columns: minmax(340px, 0.85fr) minmax(420px, 1fr);
  gap: clamp(38px, 4.5vw, 68px);
}

.about-photo {
  width: min(470px, 100%);
  height: 470px;
}

.about-feature {
  min-height: 88px;
  padding: 14px 16px;
}

.about-feature h3 {
  font-size: 19px;
}

.about-feature p {
  font-size: 15px;
}

.why-copy h2,
.products-title,
.product-section .section-head h1 {
  font-size: clamp(30px, 2.05vw, 40px) !important;
  line-height: 1.08;  
}

/* About heading: keep exactly 2 lines (one per span) */
.about-copy h2 {
  font-size: clamp(30px, 2.05vw, 40px)!important;
  line-height: 1.02;
}

.about-copy h2 .about-line {
  white-space: nowrap;
}



.product-section .product-grid,
.products-grid {
  max-width: 980px;
  gap: 15px;
}

.product-section .product-card,
.product-section .card-inner {
  min-height: 380px;
}

.product-section .product-img {
  height: 190px;
}

.product-section .content {
  min-height: 152px;
  padding: 16px 20px 48px 78px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-section .icon-wrap {
  width: 50px;
  height: 50px;
  left: 22px;
  top: -25px;
  border-width: 5px;
  font-size: 20px;
}

.product-section .content h3 {
  font-size: 18px;
}

.product-section .content p {
  font-size: 14px;
  line-height: 1.5;
}

.product-section .details-row {
  left: auto;
  bottom: auto;
}

.product-actions {
  margin-top: 22px;
}

.industries-section {
  grid-template-columns: minmax(250px, 0.72fr) minmax(620px, 1fr);
  gap: 36px;
}

.industry-grid {
  max-width: 840px;
  gap: 16px;
}

.industry-card {
  min-height: 230px;
}

.industry-card .industry-content {
  padding: 76px 22px 24px;
}

.industry-icon {
  width: 54px;
  height: 54px;
  top: 46px;
}

.industry-stats,
.why-stats {
  width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.why-section {
  grid-template-columns: minmax(300px, 0.75fr) minmax(630px, 1fr);
  gap: 34px;
}

.why-center {
  width: 280px;
  height: 335px;
}

.why-hex {
  width: 200px;
  min-height: 208px;
}

.why-hex h3 {
  font-size: 17px;
}

.why-hex p {
  font-size: 12.5px;
}

.contact-shell {
  width: min(1210px, calc(100% - 84px));
  grid-template-columns: minmax(290px, 0.85fr) minmax(220px, 0.6fr) minmax(410px, 1.12fr);
  gap: 28px;
  padding: 40px 38px 34px;
}

.contact-photo-wrap {
  min-height: 590px;
}

.contact-photo {
  height: 430px;
}

.support-card {
  width: min(100%, 260px);
  padding: 22px;
}

.contact-form {
  min-height: 590px;
  padding: 30px 28px;
}

.contact-benefits {
  min-height: 96px;
  padding: 16px 20px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
}

.site-footer {
  padding-left: max(28px, calc((100vw - 1220px) / 2));
  padding-right: max(28px, calc((100vw - 1220px) / 2));
}

.footer-main,
.footer-cert-row,
.footer-bottom {
  max-width: 1160px;
}

.footer-main {
  grid-template-columns: 1.05fr 0.72fr 1fr 1.15fr;
  gap: 36px;
}

@media (max-width: 1180px) {
  .hero,
  .feature-strip,
  .contact-shell {
    width: calc(100% - 42px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visual {
    transform: scale(0.74);
    transform-origin: top center;
    margin: -46px auto 0;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -34px;
  }

  .feature:nth-child(5) {
    grid-column: 1 / -1;
  }

  .about-section,
  .industries-section,
  .why-section,
  .contact-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero,
  .feature-strip,
  .contact-shell {
    width: calc(100% - 24px);
  }

  .about-section,
  .product-section,
  .industries-section,
  .why-section,
  .contact-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-strip,
  .product-section .product-grid,
  .products-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(5) {
    grid-column: auto;
  }

  .about-photo {
    height: 360px;
  }

  .contact-shell {
    padding: 26px 18px;
  }
}

/* Hero heading alignment fix */
.hero-copy h1 .hero-line {
  display: block;
  color: var(--ink);
  white-space: nowrap;
}

.hero-copy h1 .blue-word {
  color: var(--blue-dark);
}

.hero-copy h1 em {
  color: var(--red);
}

.hero-copy {
  transform: translateX(-52px);
}

@media (max-width: 1180px) {
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-copy {
    margin-left: 0;
    padding-left: 0;
    transform: translateX(-32px);
  }
}

@media (max-width: 760px) {
  .hero-copy {
    transform: none;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 50px) !important;
  }
}

/* Why stats polish */
.why-stats {
  justify-self: center;
  width: min(1380px, calc(100vw - 48px));
  max-width: none;
  margin: 8px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  padding: 22px 26px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-bottom: 7px solid #d1111e;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(209, 17, 30, 0.18) 0 4px, transparent 4px 100%),
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.10), transparent 24%),
    linear-gradient(135deg, #0a376f 0%, #06265a 56%, #03183a 100%);
  box-shadow: 0 18px 38px rgba(6, 28, 70, 0.20);
}

.why-stats article {
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  min-width: 0;
  padding: 0 24px;
  min-height: 104px;
}

.why-stat-icon {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 27px;
}

.why-stats strong {
  max-width: 100%;
  font-size: clamp(32px, 2.7vw, 42px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(209, 17, 30, 0.65);
}

.why-stats span {
  margin-top: 4px;
  color: #ff2534;
  font-size: 13px;
  line-height: 1.08;
}

.why-stats span:empty {
  display: none;
}

.why-stats p {
  grid-column: 2;
  max-width: 230px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.36;
}

@media (max-width: 1180px) {
  .why-stats {
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
  }

  .why-stats article:nth-child(2) {
    border-right: 0;
  }

  .why-stats article:nth-child(3),
  .why-stats article:nth-child(4) {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 720px) {
  .why-stats {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    padding: 18px 20px;
  }

  .why-stats article,
  .why-stats article:nth-child(2),
  .why-stats article:nth-child(3),
  .why-stats article:nth-child(4) {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .why-stats article:last-child {
    border-bottom: 0;
  }

  .why-stat-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .why-stats p {
    max-width: none;
  }
}

/* Industries section redesign */
.industries-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: clamp(24px, 2.4vw, 34px);
  align-items: start;
  width: 100%;
  min-height: 0;
  padding: 112px max(14px, calc((100vw - 1440px) / 2)) 112px max(76px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.90)),
    radial-gradient(circle at 13% 70%, rgba(8, 47, 102, 0.11) 0 1px, transparent 2px) 0 0 / 14px 14px,
    linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #eef4fb 100%);
}

.industries-section::before {
  display: none;
}

.industries-section::after {
  display: none !important;
  content: none !important;
}

.industry-word {
  display: block;
  left: 12px;
  top: 86px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(8, 47, 102, 0.12);
  font-size: clamp(78px, 8vw, 104px);
  line-height: 0.82;
  letter-spacing: 2px;
}

.industry-line-art {
  left: 120px;
  bottom: 0;
  width: 310px;
  height: 230px;
  opacity: 0.12;
  border-radius: 18px 18px 0 0;
  filter: grayscale(1) contrast(0.86);
  mask-image: linear-gradient(0deg, black 0%, transparent 88%);
}

.industries-intro {
  padding: 48px 0 0 0;
}

.industry-label {
  gap: 14px;
  margin-bottom: 22px;
  color: #c50814;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

.industry-label::before,
.industry-label::after {
  width: 28px;
  background: #d1111e;
}

.industries-intro h2 {
  max-width: 280px;
  color: #082f66;
  font-size: clamp(46px, 4.3vw, 58px) !important;
  line-height: 1.03;
}

.industries-intro h2 span {
  color: #c50814;
}

.industry-title-mark {
  width: 104px;
  height: 5px;
  margin: 24px 0 28px;
  background: linear-gradient(90deg, #082f66 0 48%, #d1111e 48% 70%, #cfd6de 70%);
}

.industries-intro p {
  max-width: 270px;
  color: #202b3d;
  font-size: 16px;
  line-height: 1.55;
}

.intro-dots {
  width: 108px;
  height: 42px;
  margin-top: 34px;
  opacity: 0.20;
  background: radial-gradient(circle, #9aa8ba 0 1.5px, transparent 2.5px) 0 0 / 14px 14px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 20px;
  width: 100%;
  max-width: 980px;
  margin: 0;
}

.industry-card {
  min-height: 282px;
  border-radius: 12px;
  background: #082f66;
  box-shadow: 0 10px 22px rgba(8, 31, 72, 0.20);
}

.industry-card::before {
  background:
    linear-gradient(180deg, rgba(4, 20, 50, 0.05) 0%, rgba(4, 23, 54, 0.70) 50%, rgba(3, 17, 43, 0.98) 100%);
}

.industry-card::after {
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  background: #d1111e;
}

.industry-card img {
  object-position: center;
}

.industry-icon {
  left: 18px;
  top: 56px;
  width: 58px;
  height: 58px;
  color: #082f66;
  border: 1px solid rgba(8, 47, 102, 0.08);
  font-family: "Times New Roman", Times, serif;
  font-size: 27px;
  box-shadow: 0 10px 22px rgba(8, 31, 72, 0.22);
}

.industry-content {
  left: 20px;
  right: 20px;
  bottom: 24px;
}

.industry-card .industry-content {
  padding: 0;
}

.industry-content h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.05;
}

.industry-content i {
  width: 28px;
  height: 3px;
  margin-bottom: 12px;
}

.industry-content p {
  max-width: 190px;
  font-size: 12px;
  line-height: 1.45;
}

.industry-card > a {
  right: 10px;
  bottom: 8px;
  width: 36px;
  height: 36px;
  font-size: 30px;
}

@media (min-width: 1280px) {
  .industry-grid {
    max-width: 1040px;
  }
}

@media (max-width: 1180px) {
  .industries-section {
    grid-template-columns: 1fr;
    padding: 92px 42px;
  }

  .industry-word {
    display: none;
  }

  .industries-intro {
    padding-top: 0;
  }

  .industries-intro h2,
  .industries-intro p {
    max-width: 620px;
  }

  .industry-grid {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .industries-section {
    padding: 78px 18px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 260px;
  }
}

/* Shared eyebrow style: match "Our Industries" */
.product-section .eyebrow,
.about-label,
.why-label,
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #c50814;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.product-section .eyebrow::before,
.product-section .eyebrow::after,
.about-label::before,
.about-label::after,
.why-label::before,
.why-label::after,
.contact-eyebrow span {
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background: #d1111e;
}

.product-section .eyebrow::before,
.product-section .eyebrow::after,
.about-label::before,
.about-label::after,
.why-label::before,
.why-label::after {
  content: "";
}

.product-section .eyebrow::after,
.about-label::after,
.why-label::after,
.contact-eyebrow span:last-child {
  background: #d1111e;
}

@media (max-width: 720px) {
  .product-section .eyebrow,
  .about-label,
  .why-label,
  .contact-eyebrow {
    gap: 10px;
    font-size: 14px;
  }

  .product-section .eyebrow::before,
  .product-section .eyebrow::after,
  .about-label::before,
  .about-label::after,
  .why-label::before,
  .why-label::after,
  .contact-eyebrow span {
    width: 24px;
    flex-basis: 24px;
  }
}

@keyframes whyRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes whyRingSpinReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-ring,
  .why-ring::after,
  .client-logo-track {
    animation: none;
  }
}


/* Remove red side bracket from Our Industries section */
.industries-section::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* Why Choose left panel: match clean reference layout */
.why-section {
  grid-template-columns: minmax(500px, 42%) minmax(640px, 1fr);
}

.why-copy {
  max-width: 620px;
  padding-top: 24px;
  padding-left: clamp(18px, 3.2vw, 64px);
}

.why-label {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: min(100%, 430px);
  margin-bottom: 24px;
  color: #d1111e;
  font-size: 15px;
  letter-spacing: 0;
}

.why-label::before,
.why-label::after {
  width: 92px;
  flex: 0 0 92px;
  background: linear-gradient(90deg, transparent, #d1111e);
}

.why-label::after {
  background: linear-gradient(90deg, #d1111e, transparent);
}

.why-copy h2 {
  max-width: 560px;
  color: #082f66;
  font-size: clamp(54px, 4.9vw, 76px) !important;
  line-height: 0.96;
  letter-spacing: 0;
}

.why-copy h2 span {
  color: #d1111e;
}

.why-title-mark {
  width: 170px;
  height: 5px;
  margin: 26px 0 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #082f66 0 34%, #d1111e 34% 64%, #d6dbe2 64%);
}

.why-copy > p {
  max-width: 520px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.55;
}

.why-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 560px;
  margin-top: 44px;
}

.why-pillars article {
  min-height: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.why-pillars article + article {
  border-left: 1px solid #d8dde5;
}

.why-pillars article:hover {
  transform: none;
  box-shadow: none;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  border: 1px solid #d7dee8;
  color: #d1111e;
  font-size: 32px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(8, 47, 102, 0.08);
}

.why-pillars h3 {
  color: #082f66;
  font-size: 16px;
  line-height: 1.05;
}

.why-pillars i {
  width: 38px;
  height: 3px;
  margin: 12px auto 14px;
  background: #d1111e;
}

.why-pillars p {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .why-section {
    grid-template-columns: 1fr;
  }

  .why-copy {
    max-width: 720px;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .why-label {
    justify-content: flex-start;
    width: 100%;
  }

  .why-label::before,
  .why-label::after {
    width: 34px;
    flex-basis: 34px;
  }

  .why-copy h2 {
    font-size: clamp(40px, 11vw, 56px) !important;
  }

  .why-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-pillars article {
    padding: 0;
  }

  .why-pillars article + article {
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid #d8dde5;
  }
}

/* Why Choose premium section background */
.why-section {
  background:
    linear-gradient(122deg, rgba(5, 37, 84, 0.96) 0 9%, transparent 9.2%),
    radial-gradient(circle at 14% 18%, rgba(8, 47, 102, 0.13) 0 1.5px, transparent 2.5px) 0 0 / 18px 18px,
    radial-gradient(circle at 88% 30%, rgba(209, 17, 30, 0.10), transparent 25%),
    radial-gradient(circle at 13% 88%, rgba(209, 17, 30, 0.18), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #eaf1f8 100%);
}

.why-section::before {
  left: -220px;
  top: -210px;
  width: 680px;
  height: 680px;
  border: 34px solid rgba(8, 47, 102, 0.10);
  border-right-color: rgba(8, 47, 102, 0.04);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(8, 47, 102, 0.08);
}

.why-section::after {
  left: -190px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border-width: 42px;
  border-color: #d1111e;
  border-top-color: transparent;
  border-right-color: transparent;
  opacity: 0.98;
}

.why-pattern {
  right: -95px;
  top: -105px;
  width: 420px;
  height: 420px;
  opacity: 0.24;
}

.why-curve {
  left: -118px;
  top: -96px;
  width: 720px;
  height: 720px;
  border-width: 22px;
  border-color: rgba(8, 47, 102, 0.09);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

/* Why Choose section: stronger background and visible hex card borders */
.why-section {
  background:
    radial-gradient(circle at 24% 46%, rgba(8, 47, 102, 0.10) 0 1.5px, transparent 2.5px) 0 0 / 18px 18px,
    radial-gradient(circle at 72% 38%, rgba(209, 17, 30, 0.08), transparent 28%),
    linear-gradient(135deg, #eaf2fb 0%, #f4f8fd 46%, #dfe9f5 100%);
}

.why-hex {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 2px solid rgba(8, 47, 102, 0.30);
  box-shadow:
    inset 0 0 0 1px rgba(209, 17, 30, 0.16),
    0 18px 34px rgba(8, 31, 72, 0.16);
  filter: drop-shadow(0 16px 22px rgba(8, 31, 72, 0.14));
}

.why-hex:nth-of-type(even) {
  border-color: rgba(209, 17, 30, 0.34);
}

.why-hex:hover {
  border-color: rgba(8, 47, 102, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(209, 17, 30, 0.24),
    0 24px 46px rgba(8, 31, 72, 0.22);
}

/* Why Choose final polish: clean readable background and even hex outlines */
.why-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 44%, rgba(239, 246, 253, 0.94) 44% 100%),
    radial-gradient(circle at 73% 46%, rgba(8, 47, 102, 0.08) 0 1.5px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(135deg, #ffffff 0%, #f5f9fe 48%, #e8f1fa 100%);
}

.why-section::before {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(8, 47, 102, 0.07);
}

.why-copy {
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.why-hex {
  position: absolute;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 26px rgba(8, 31, 72, 0.16));
  clip-path: polygon(50% 0, 100% 12%, 100% 88%, 50% 100%, 0 88%, 0 12%);
}

.why-hex::before,
.why-hex::after {
  content: "";
  position: absolute;
  clip-path: inherit;
  pointer-events: none;
}

.why-hex::before {
  inset: 0;
  z-index: 0;
  /* border stroke with subtle red/blue accents */
  background:
    conic-gradient(
      from 210deg,
      rgba(209, 17, 30, 0.95) 0 18deg,
      rgba(124, 135, 155, 0.92) 18deg 158deg,
      rgba(8, 47, 102, 0.95) 158deg 176deg,
      rgba(124, 135, 155, 0.92) 176deg 338deg,
      rgba(209, 17, 30, 0.95) 338deg 360deg
    );
}

.why-hex::after {
  inset: 4px;
  z-index: 1;
  background: #ffffff;
}

.why-hex > * {
  position: relative;
  z-index: 2;
}

.why-hex:hover {
  box-shadow: none;
  filter: drop-shadow(0 24px 34px rgba(8, 31, 72, 0.22));
}

/* Why Choose unified background */
.why-section {
  background:
    radial-gradient(circle at 72% 42%, rgba(8, 47, 102, 0.09) 0 1.5px, transparent 2.5px) 0 0 / 18px 18px,
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(209, 17, 30, 0.055), transparent 26%),
    linear-gradient(135deg, #f7fbff 0%, #eef6fd 48%, #e7f0f9 100%);
}

.why-section::before {
  left: -260px;
  top: -245px;
  width: 760px;
  height: 760px;
  border: 30px solid rgba(8, 47, 102, 0.065);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.why-section::after {
  left: -170px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-width: 34px;
  border-color: rgba(209, 17, 30, 0.80);
  border-top-color: transparent;
  border-right-color: transparent;
  opacity: 0.55;
}

.why-copy {
  background: transparent;
}

/* Why Choose clean no-dot background */
.why-section {
  padding-top: clamp(78px, 7vw, 124px);
  padding-bottom: clamp(78px, 7vw, 124px);
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.98) 0 36%, rgba(243, 248, 253, 0.96) 36% 100%),
    linear-gradient(135deg, #f7fbff 0%, #edf5fc 52%, #f9fbfd 100%);
}

.why-section::before {
  left: -185px;
  top: -175px;
  width: 500px;
  height: 500px;
  border-width: 18px;
  border-color: rgba(8, 47, 102, 0.035);
  background: transparent;
}

.why-section::after {
  left: -105px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-width: 22px;
  border-color: rgba(209, 17, 30, 0.20);
  border-top-color: transparent;
  border-right-color: transparent;
  opacity: 1;
}

.why-pattern {
  display: none;
}

.why-curve {
  right: -150px;
  top: 130px;
  width: 360px;
  height: 360px;
  border-width: 1px;
  border-color: rgba(8, 47, 102, 0.08);
  opacity: 0.55;
}

/* Clients and testimonials section */
.clients-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 14px 56px;
  background: #f4f8fd;
}

.clients-top {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 22px clamp(28px, 4vw, 64px) 42px;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 62%, rgba(255, 255, 255, 0.86) 100%),
    url("Home Photos/HOME PAGE 8.jpg") right center / 520px 100% no-repeat,
    linear-gradient(135deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow: inset 0 0 0 1px rgba(8, 47, 102, 0.05);
}

.clients-top::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 170px;
  height: 130px;
  opacity: 0.25;
  background: radial-gradient(circle, #9dadc1 0 2px, transparent 3px) 0 0 / 16px 16px;
}

.clients-top::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.clients-heading,
.client-stats,
.client-logo-grid,
.client-progress {
  position: relative;
  z-index: 2;
}

.clients-heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.clients-eyebrow,
.testimonial-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #e1111c;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.clients-eyebrow span,
.testimonial-label span {
  width: 34px;
  height: 3px;
  background: #e1111c;
}

.clients-heading h2 {
  max-width: 900px;
  margin: 14px auto 10px;
  color: #070d21;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.clients-heading h2 span {
  display: block;
  white-space: nowrap;
}

.clients-heading p {
  margin: 0 auto;
  color: #6a7180;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.clients-heading i {
  display: block;
  width: 34px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: #e1111c;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(820px, 100%);
  margin: 6px auto 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(16, 35, 62, 0.14);
}

.client-stats article {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 90px;
  padding: 16px 28px;
  border-right: 1px solid #dce3ed;
}

.client-stats article:last-child {
  border-right: 0;
}

.client-stat-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #072d63;
  box-shadow: 0 8px 16px rgba(7, 45, 99, 0.22);
  font-size: 30px;
}

.client-stats strong {
  display: block;
  color: #ed111d;
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.client-stats span {
  display: block;
  margin-top: 5px;
  color: #070d21;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.client-logo-grid {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.client-logo-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: clientLogoMarquee 28s linear infinite;
  will-change: transform;
}

.client-logo-grid:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo {
  display: grid;
  place-items: center;
  align-content: center;
  flex: 0 0 168px;
  min-height: 126px;
  padding: 16px 10px;
  border: 1px solid rgba(8, 47, 102, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
  box-shadow: 0 12px 24px rgba(16, 35, 62, 0.10);
}

.client-logo strong,
.client-logo span {
  font-family: Inter, Arial, sans-serif;
}

.client-logo strong {
  color: #111827;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.client-logo span {
  margin-top: 4px;
  color: #111827;
  font-size: 12px;
}

.client-logo.reliance strong {
  color: #101010;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.client-logo.upl strong {
  color: #1e293b;
  font-size: 31px;
}

.client-logo.upl::before {
  content: "";
  width: 50px;
  height: 50px;
  margin-bottom: -34px;
  margin-left: -54px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 42%, #ff951b, #ff3d22 64%, #f7b4b5);
}

.client-logo.basf strong {
  font-size: 29px;
}

.client-logo.basf strong::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  background: #8a8f96;
  box-shadow: 24px 0 0 #8a8f96;
}

.client-logo.birla strong {
  display: grid;
  place-items: center;
  width: 82px;
  min-height: 74px;
  padding: 10px;
  color: #111;
  background:
    linear-gradient(135deg, #111 0 25%, #bbb 25% 50%, #333 50% 75%, #e8e8e8 75%);
  font-size: 11px;
  text-transform: uppercase;
}

.client-logo.lupin strong {
  color: #099447;
  font-size: 28px;
  text-transform: uppercase;
}

.client-logo.aarti strong {
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
}

.client-logo.tata strong {
  color: #0b55a8;
  font-size: 29px;
}

.client-logo.tata span {
  color: #0b55a8;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-logo.nocil strong {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 3px solid #0b55a8;
  color: #0b55a8;
  clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  font-size: 15px;
}

.client-progress {
  width: 112px;
  height: 4px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #082f66 0 48%, #ef171f 48% 70%, #cbd5df 70% 100%);
}

.client-progress span {
  display: none;
}

@keyframes clientLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.testimonial-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin-top: 26px;
  margin-bottom: 0;
  border-radius: 18px;
  background: #062b61;
  color: #fff;
  box-shadow: 0 18px 42px rgba(6, 29, 66, 0.20);
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 66, 0.98) 0 52%, rgba(4, 28, 66, 0.62) 72%, rgba(4, 28, 66, 0.22) 100%),
    url("Home Photos/HOME PAGE 8.jpg") right center / 55% 100% no-repeat;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  width: min(880px, 66%);
  padding: 28px 0 48px 112px;
}

.testimonial-label {
  justify-content: flex-start;
  color: #ff1d25;
}

.testimonial-content h2 {
  margin: 10px 0 18px;
  color: #fff;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(32px, 3vw, 45px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  min-height: 220px;
  padding: 28px 40px 24px 64px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(7, 48, 103, 0.68);
}

.quote-mark {
  position: absolute;
  left: -24px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ef171f;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.testimonial-copy p {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.55;
}

.testimonial-copy i {
  display: block;
  width: 42px;
  height: 3px;
  margin: 22px 0 14px;
  background: #ef171f;
}

.testimonial-copy strong,
.testimonial-copy span,
.testimonial-nav,
.testimonial-client strong,
.testimonial-client span,
.testimonial-cta strong,
.testimonial-cta p,
.testimonial-cta a {
  font-family: Inter, Arial, sans-serif;
}

.testimonial-copy strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}

.testimonial-copy span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.testimonial-nav button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 22px;
}

.testimonial-nav em {
  color: #fff;
  font-style: normal;
  font-size: 14px;
}

.testimonial-nav em::first-letter {
  color: #ef171f;
}

.testimonial-client {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.62);
}

.testimonial-industry {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

.testimonial-industry span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 28px;
}

.testimonial-industry strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}

.testimonial-logo {
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 108px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-align: center;
}

.testimonial-logo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.testimonial-logo span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.testimonial-cta {
  position: absolute;
  left: 68px;
  right: 68px;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 270px 270px;
  gap: 40px;
  align-items: center;
  min-height: 112px;
  padding: 20px 28px;
  border-radius: 12px 12px 0 0;
  border-bottom: 8px solid #ef171f;
  background: rgba(6, 42, 92, 0.94);
  box-shadow: 0 -10px 28px rgba(3, 19, 45, 0.22);
}

.cta-intro {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 18px;
}

.cta-intro > span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  font-size: 34px;
}

.cta-intro strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.cta-intro p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 15px;
}

.testimonial-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-red {
  background: #e9141d;
}

.cta-red em {
  font-style: normal;
  font-size: 23px;
}

.cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 1180px) {
  .client-logo-grid {
    margin: 0 -14px;
  }

  .testimonial-content {
    width: 100%;
    padding-left: 64px;
    padding-right: 52px;
  }

  .testimonial-bg {
    background:
      linear-gradient(90deg, rgba(4, 28, 66, 0.98), rgba(4, 28, 66, 0.78)),
      url("Home Photos/HOME PAGE 8.jpg") center / cover no-repeat;
  }

  .testimonial-cta {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .clients-section {
    padding: 8px 10px 36px;
  }

  .clients-top {
    padding: 28px 16px 22px;
  }

  .clients-heading h2 {
    font-size: 28px;
  }

  .clients-heading h2 span {
    white-space: normal;
  }

  .client-stats {
    grid-template-columns: 1fr;
  }

  .client-stats article {
    border-right: 0;
    border-bottom: 1px solid #dce3ed;
  }

  .client-stats article:last-child {
    border-bottom: 0;
  }

  .client-logo-grid {
    margin: 0 -10px;
  }

  .client-logo {
    flex-basis: 150px;
    min-height: 112px;
  }

  .testimonial-panel {
    min-height: 0;
  }

  .testimonial-content {
    padding: 30px 18px 42px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 46px 22px 24px;
  }

  .quote-mark {
    left: 18px;
    top: -34px;
  }

  .testimonial-client {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    padding-top: 24px;
  }

  .testimonial-copy p {
    font-size: 16px;
  }

  .testimonial-cta {
    left: 16px;
    right: 16px;
    padding: 18px;
  }

  .cta-intro {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* Exact compact footer from supplied reference */
.site-footer {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: #005e64 !important;
  color: #fff !important;
  font-family: "Inter", Arial, sans-serif !important;
}

.site-footer a {
  text-decoration: none;
}

.footer-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 116px !important;
  min-height: 92px !important;
  padding: 18px 30px !important;
  background:
    linear-gradient(90deg, rgba(5, 28, 35, 0.88), rgba(6, 34, 42, 0.74)),
    url("Home Photos/HOME PAGE 8.jpg") center 48% / cover no-repeat !important;
  text-align: center !important;
}

.footer-cta h2 {
  margin: 0 0 6px !important;
  color: #fff !important;
  font-size: 21px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.footer-cta p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
}

.footer-cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 160px !important;
  height: 45px !important;
  padding: 0 18px !important;
  border-radius: 5px !important;
  background: #ff5c16 !important;
  color: #fff !important;
  box-shadow: 0 7px 16px rgba(255, 92, 22, 0.28) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.site-footer .footer-main {
  display: grid !important;
  grid-template-columns: 250px 135px 160px 315px !important;
  justify-content: center !important;
  gap: 44px !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 222px !important;
  margin: 0 auto !important;
  padding: 26px 30px 22px !important;
  background: #00646a !important;
}

.site-footer .footer-main::before,
.footer-cert-row,
.footer-checks,
.footer-line-art,
.catalogue-card,
.site-footer .footer-brand i,
.site-footer .footer-col > h3::after,
.site-footer .footer-follow h3::after {
  display: none !important;
}

.site-footer .footer-col {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
}

.site-footer .footer-col:not(:first-child)::before {
  content: "" !important;
  position: absolute !important;
  left: -24px !important;
  top: 31px !important;
  bottom: 0 !important;
  width: 2px !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 14px !important;
  color: #fff !important;
}

.footer-logo-mark {
  display: grid !important;
  gap: 2px !important;
  width: 34px !important;
  transform: translateY(1px) !important;
}

.footer-logo-mark span {
  display: block !important;
  width: 27px !important;
  height: 7px !important;
  border: 3px solid #ff5c16 !important;
  border-right: 0 !important;
  border-radius: 16px 0 0 16px !important;
  transform: rotate(34deg) !important;
}

.footer-logo-copy {
  display: grid !important;
  gap: 0 !important;
}

.site-footer .footer-logo strong {
  display: block !important;
  color: #fff !important;
  font-size: 34px !important;
  line-height: 0.82 !important;
  font-style: normal !important;
  font-weight: 900 !important;
  letter-spacing: -1px !important;
  text-transform: none !important;
}

.site-footer .footer-logo em {
  display: block !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-style: normal !important;
  font-weight: 900 !important;
  letter-spacing: 4.3px !important;
}

.site-footer .footer-brand p {
  max-width: 245px !important;
  margin: 0 0 18px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 12px !important;
  line-height: 1.58 !important;
  font-weight: 700 !important;
}

.site-footer .footer-social {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 !important;
}

.site-footer .footer-social a {
  display: grid !important;
  place-items: center !important;
  width: 27px !important;
  height: 27px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #00646a !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.site-footer .footer-col > h3 {
  margin: 0 0 17px !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  text-transform: none !important;
}

.site-footer .footer-col ul {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-footer .footer-col li {
  border: 0 !important;
}

.site-footer .footer-col li a {
  position: relative !important;
  display: block !important;
  padding: 0 0 0 16px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 11px !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
}

.site-footer .footer-col li a::before {
  content: "\203A" !important;
  position: absolute !important;
  left: 0 !important;
  top: -2px !important;
  color: #ff5c16 !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.site-footer .footer-contact article {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  align-items: start !important;
  gap: 11px !important;
  margin: 0 0 15px !important;
  padding: 0 !important;
  border: 0 !important;
}

.site-footer .footer-contact article > span {
  display: block !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ff5c16 !important;
  font-size: 17px !important;
  line-height: 1 !important;
  text-align: center !important;
}

.site-footer .footer-contact p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 12px !important;
  line-height: 1.48 !important;
  font-weight: 800 !important;
}

.site-footer .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 10px calc((100vw - 950px) / 2) !important;
  background: rgba(0, 53, 56, 0.42) !important;
  color: rgba(255, 255, 255, 0.94) !important;
}

.site-footer .footer-bottom p {
  margin: 0 !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.site-footer .footer-bottom div {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

.site-footer .footer-bottom a {
  padding: 0 13px !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.site-footer .footer-bottom a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.65) !important;
}

@media (max-width: 980px) {
  .footer-cta {
    gap: 28px !important;
  }

  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
    justify-content: stretch !important;
    gap: 34px 46px !important;
  }

  .site-footer .footer-col:nth-child(3)::before {
    display: none !important;
  }

  .site-footer .footer-bottom {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 640px) {
  .footer-cta {
    flex-direction: column !important;
    gap: 16px !important;
    min-height: 150px !important;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr !important;
    padding: 28px 22px !important;
  }

  .site-footer .footer-col:not(:first-child)::before {
    display: none !important;
  }

  .site-footer .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 15px 18px !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .site-footer .footer-bottom > div {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .site-footer .footer-bottom a {
    padding: 0 10px !important;
    border-left: 0 !important;
  }
}

/* Ensure footer CTA is visible and readable on small screens */
@media (max-width: 640px) {
  .footer-cta {
    position: relative !important;
    z-index: 4 !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-height: auto !important;
    padding: 16px 18px !important;
    align-items: center !important;
    justify-content: center !important;
    background-position: center 38% !important;
  }

  .footer-cta > div {
    max-width: 620px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .footer-cta h2 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .footer-cta p {
    font-size: 13px !important;
    margin: 0 0 6px !important;
    opacity: 0.95 !important;
  }

  .footer-cta a {
    width: 160px !important;
    height: 44px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  /* Center footer brand (logo + description) on small screens */
  .site-footer .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .site-footer .footer-brand .footer-logo {
    margin: 0 0 12px !important;
  }

  .site-footer .footer-brand p {
    margin: 0 auto !important;
    max-width: 340px !important;
    text-align: center !important;
  }

  .site-footer .footer-social {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }
}

/* Wider, richer footer background refinement */
.site-footer {
  background:
    radial-gradient(circle at 14% 38%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(135deg, #072e5f 0%, #00686e 48%, #004b51 100%) !important;
  box-shadow: inset 0 5px 0 #d1111e !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 92px 0 40px;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18% 18.2%, transparent 18.2% 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 92, 22, 0.16), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(3, 19, 45, 0.32), transparent 34%);
  opacity: 0.9;
}

/* Force footer CTA visible and above decorative overlays */
.site-footer .footer-cta,
.footer-cta {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 99999 !important;
}

.site-footer .footer-cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ff5c16 !important;
  color: #fff !important;
}

.footer-cta {
  gap: clamp(70px, 12vw, 190px) !important;
  min-height: 108px !important;
  padding: 22px max(42px, calc((100vw - 1280px) / 2)) !important;
  background:
    linear-gradient(90deg, rgba(3, 18, 38, 0.92), rgba(5, 38, 55, 0.76)),
    url("Home Photos/HOME PAGE 8.jpg") center 45% / cover no-repeat !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.footer-cta h2 {
  font-size: clamp(24px, 2.35vw, 34px) !important;
}

.footer-cta p {
  font-size: 13px !important;
}

.footer-cta a {
  width: 178px !important;
  height: 50px !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, #ff6a1f 0%, #f04a12 100%) !important;
  box-shadow: 0 10px 24px rgba(255, 92, 22, 0.34) !important;
}

.site-footer .footer-main {
  position: relative !important;
  grid-template-columns: minmax(300px, 1.35fr) minmax(150px, 0.75fr) minmax(190px, 0.85fr) minmax(340px, 1.45fr) !important;
  gap: clamp(44px, 5.2vw, 76px) !important;
  width: min(1220px, calc(100% - 72px)) !important;
  min-height: 248px !important;
  padding: 34px 0 30px !important;
  background: transparent !important;
}

.site-footer .footer-col:not(:first-child)::before {
  left: calc(clamp(44px, 5.2vw, 76px) / -2) !important;
  top: 24px !important;
  bottom: 0 !important;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.24) 18%, rgba(255, 255, 255, 0.12) 100%) !important;
}

.site-footer .footer-logo {
  margin-bottom: 16px !important;
}

.site-footer .footer-logo strong {
  font-size: 39px !important;
}

.site-footer .footer-logo em {
  font-size: 11px !important;
  letter-spacing: 4.9px !important;
}

.footer-logo-mark {
  width: 40px !important;
}

.footer-logo-mark span {
  width: 31px !important;
  height: 8px !important;
}

.site-footer .footer-brand p {
  max-width: 320px !important;
  font-size: 13px !important;
  line-height: 1.62 !important;
}

.site-footer .footer-social a {
  width: 30px !important;
  height: 30px !important;
  color: #062b58 !important;
  box-shadow: 0 6px 16px rgba(3, 19, 45, 0.14) !important;
}

.site-footer .footer-col > h3 {
  font-size: 16px !important;
  margin-bottom: 18px !important;
}

.site-footer .footer-col ul {
  gap: 11px !important;
}

.site-footer .footer-col li a,
.site-footer .footer-contact p {
  font-size: 12px !important;
}

.site-footer .footer-contact article {
  grid-template-columns: 24px 1fr !important;
  gap: 13px !important;
  margin-bottom: 17px !important;
}

.site-footer .footer-contact article > span,
.site-footer .footer-col li a::before {
  color: #ff671f !important;
}

.site-footer .footer-bottom {
  min-height: 44px !important;
  padding: 12px max(36px, calc((100vw - 1220px) / 2)) !important;
  background: rgba(2, 35, 47, 0.74) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  font-size: 12px !important;
}

@media (max-width: 980px) {
  .site-footer .footer-main {
    width: min(760px, calc(100% - 42px)) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 32px 0 !important;
  }
}

@media (max-width: 640px) {
  .footer-cta {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .site-footer .footer-main {
    width: calc(100% - 34px) !important;
    grid-template-columns: 1fr !important;
  }
}

/* Final footer correction: cleaner, wider, and fully readable */
.site-footer {
  isolation: isolate !important;
  background:
    linear-gradient(135deg, rgba(5, 36, 78, 0.96) 0%, rgba(0, 105, 111, 0.96) 52%, rgba(0, 72, 79, 0.98) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px) 0 0 / 28px 28px !important;
  box-shadow: none !important;
}

.site-footer::before {
  inset: 108px 0 44px !important;
  z-index: -1 !important;
  background:
    linear-gradient(120deg, transparent 0 16%, rgba(255, 255, 255, 0.08) 16% 16.15%, transparent 16.15% 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 92, 22, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(3, 21, 46, 0.34), transparent 38%, rgba(0, 44, 52, 0.28)) !important;
}

.footer-cta {
  min-height: 118px !important;
  padding: 24px max(44px, calc((100vw - 1320px) / 2)) !important;
  gap: clamp(58px, 11vw, 180px) !important;
  background:
    linear-gradient(90deg, rgba(4, 18, 39, 0.92), rgba(8, 42, 58, 0.76)),
    url("Home Photos/HOME PAGE 8.jpg") center 52% / cover no-repeat !important;
  border-top: 5px solid #d1111e !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.footer-cta > div {
  min-width: 0 !important;
}

.footer-cta h2 {
  display: block !important;
  margin: 0 0 8px !important;
  font-size: clamp(24px, 2vw, 30px) !important;
  line-height: 1.12 !important;
  white-space: normal !important;
}

.footer-cta p {
  display: block !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.footer-cta a {
  flex: 0 0 auto !important;
  width: 184px !important;
  height: 52px !important;
  font-size: 13px !important;
}

.site-footer .footer-main {
  grid-template-columns: minmax(330px, 1.45fr) minmax(165px, 0.72fr) minmax(220px, 0.9fr) minmax(405px, 1.55fr) !important;
  gap: clamp(46px, 5vw, 78px) !important;
  width: min(1320px, calc(100% - 80px)) !important;
  min-height: 252px !important;
  padding: 38px 0 34px !important;
}

.site-footer .footer-col:not(:first-child)::before {
  left: calc(clamp(46px, 5vw, 78px) / -2) !important;
  top: 22px !important;
  bottom: 4px !important;
  width: 1px !important;
  background: rgba(255, 255, 255, 0.22) !important;
}

.site-footer .footer-logo {
  margin-bottom: 18px !important;
}

.site-footer .footer-logo strong {
  font-size: 38px !important;
}

.site-footer .footer-brand p {
  max-width: 340px !important;
  margin-bottom: 20px !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.site-footer .footer-col > h3 {
  margin-bottom: 19px !important;
  font-size: 17px !important;
}

.site-footer .footer-col ul {
  gap: 12px !important;
}

.site-footer .footer-col li a,
.site-footer .footer-contact p {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.site-footer .footer-contact article {
  margin-bottom: 18px !important;
}

.site-footer .footer-bottom {
  min-height: 48px !important;
  padding: 13px max(40px, calc((100vw - 1320px) / 2)) !important;
  background: rgba(1, 48, 57, 0.86) !important;
}

@media (max-width: 1180px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(860px, calc(100% - 52px)) !important;
  }

  .site-footer .footer-col:nth-child(3)::before {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .footer-cta {
    flex-direction: column !important;
    min-height: 172px !important;
    gap: 18px !important;
    text-align: center !important;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr !important;
    width: calc(100% - 36px) !important;
    padding: 34px 0 !important;
  }

  .site-footer .footer-col:not(:first-child)::before {
    display: none !important;
  }
}

/* Footer typography bump */
.footer-cta h2 {
  font-size: clamp(28px, 2.3vw, 36px) !important;
}

.footer-cta p {
  font-size: 15px !important;
}

.footer-cta a {
  font-size: 15px !important;
}

.site-footer .footer-logo strong {
  font-size: 44px !important;
}

.site-footer .footer-logo em {
  font-size: 12px !important;
  letter-spacing: 5.6px !important;
}

.site-footer .footer-brand p {
  max-width: 390px !important;
  font-size: 15px !important;
  line-height: 1.68 !important;
}

.site-footer .footer-col > h3 {
  font-size: 20px !important;
}

.site-footer .footer-col li a {
  font-size: 14px !important;
  line-height: 1.42 !important;
}

.site-footer .footer-col ul {
  gap: 13px !important;
}

.site-footer .footer-contact p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.site-footer .footer-contact article > span {
  font-size: 20px !important;
}

.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  font-size: 14px !important;
}

/* Cleaner contact icons */
.site-footer .footer-contact article {
  grid-template-columns: 36px 1fr !important;
  align-items: center !important;
  gap: 12px !important;
}

.site-footer .footer-contact article > span {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 30px !important;
  height: 30px !important;
  border: 1px solid rgba(255, 103, 31, 0.82) !important;
  border-radius: 50% !important;
  background: rgba(255, 103, 31, 0.08) !important;
  color: transparent !important;
  font-size: 0 !important;
}

.site-footer .footer-contact article > span::before {
  color: #ff671f !important;
  font-family: Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.site-footer .footer-contact article:nth-of-type(1) > span::before {
  content: "\260E";
}

.site-footer .footer-contact article:nth-of-type(2) > span::before {
  content: "\2709";
  font-size: 15px !important;
}

.site-footer .footer-contact article:nth-of-type(3) > span::before {
  content: "\25CE";
  font-size: 18px !important;
}

.site-footer .footer-contact article:nth-of-type(4) > span::before {
  content: "";
  width: 8px !important;
  height: 8px !important;
  border: 2px solid #ff671f !important;
  border-radius: 50% 50% 50% 0 !important;
  transform: rotate(-45deg) !important;
}

.site-footer .footer-contact article:nth-of-type(4) > span::after {
  content: "";
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: #ff671f !important;
}

/* Final font and hover polish */
.site-header,
.site-header *,
.nav,
.nav *,
.site-footer,
.site-footer * {
  font-family: "Inter", Arial, sans-serif !important;
}

.nav a {
  transition: color 180ms ease, transform 180ms ease !important;
}

.nav a::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  right: 50% !important;
  bottom: -5px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #ff671f !important;
  transition: left 180ms ease, right 180ms ease !important;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ff671f !important;
  transform: translateY(-1px) !important;
}

.nav a:hover::before,
.nav a:focus-visible::before {
  left: 0 !important;
  right: 0 !important;
}

.nav a.active {
  color: var(--blue-dark) !important;
}

.nav a.active:hover,
.nav a.active:focus-visible {
  color: #ff671f !important;
}

.nav a.active::after {
  background: var(--blue-dark) !important;
}

.nav a.active:hover::after,
.nav a.active:focus-visible::after {
  background: #ff671f !important;
}

.quote-btn {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.quote-btn:hover,
.quote-btn:focus-visible {
  background: linear-gradient(135deg, #ff671f, #d1111e) !important;
  box-shadow: 0 18px 34px rgba(255, 103, 31, 0.28) !important;
  transform: translateY(-2px) !important;
}

.site-footer .footer-logo strong {
  font-size: 46px !important;
  font-weight: 900 !important;
}

.site-footer .footer-logo em {
  font-size: 13px !important;
  font-weight: 900 !important;
}

.site-footer .footer-brand p {
  font-size: 16px !important;
  line-height: 1.72 !important;
  font-weight: 600 !important;
}

.site-footer .footer-col > h3 {
  font-size: 21px !important;
  font-weight: 800 !important;
}

.site-footer .footer-col li a {
  font-size: 15px !important;
  line-height: 1.48 !important;
  font-weight: 650 !important;
  transition: color 180ms ease, transform 180ms ease, padding-left 180ms ease !important;
}

.site-footer .footer-col li a:hover,
.site-footer .footer-col li a:focus-visible {
  color: #ffb08b !important;
  padding-left: 21px !important;
  transform: translateX(2px) !important;
}

.site-footer .footer-col li a:hover::before,
.site-footer .footer-col li a:focus-visible::before {
  color: #fff !important;
}

.site-footer .footer-contact p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-weight: 650 !important;
}

.site-footer .footer-contact article {
  transition: transform 180ms ease !important;
}

.site-footer .footer-contact article:hover {
  transform: translateX(3px) !important;
}

.site-footer .footer-contact article > span {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease !important;
}

.site-footer .footer-contact article:hover > span {
  border-color: #ff671f !important;
  background: #ff671f !important;
  transform: translateY(-1px) !important;
}

.site-footer .footer-contact article:hover > span::before {
  color: #fff !important;
}

.site-footer .footer-contact article:nth-of-type(4):hover > span::before {
  border-color: #fff !important;
}

.site-footer .footer-contact article:nth-of-type(4):hover > span::after {
  background: #fff !important;
}

.site-footer .footer-social a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.site-footer .footer-social a:hover,
.site-footer .footer-social a:focus-visible {
  background: #ff671f !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 22px rgba(255, 103, 31, 0.25) !important;
}

.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  font-size: 15px !important;
  font-weight: 650 !important;
}

.site-footer .footer-bottom a {
  transition: color 180ms ease !important;
}

.site-footer .footer-bottom a:hover,
.site-footer .footer-bottom a:focus-visible {
  color: #ffb08b !important;
}

/* Contact Us section redesign */
.contact-modern,
.contact-modern * {
  font-family: "Inter", Arial, sans-serif !important;
}

.contact-modern {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 0.78fr) !important;
  gap: clamp(40px, 5vw, 78px) !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 96px max(32px, calc((100vw - 1280px) / 2)) 104px !important;
  overflow: hidden !important;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.96) 54%, rgba(232, 241, 248, 0.96) 100%),
    radial-gradient(circle at 50% 50%, rgba(8, 47, 102, 0.13) 0 1px, transparent 2px) 0 0 / 22px 22px !important;
}

.contact-modern::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(120deg, transparent 0 12%, rgba(8, 47, 102, 0.08) 12% 12.15%, transparent 12.15% 100%),
    linear-gradient(90deg, rgba(8, 47, 102, 0.07), transparent 42%, rgba(255, 103, 31, 0.06)) !important;
}

.contact-modern::after {
  content: "" !important;
  position: absolute !important;
  left: max(24px, calc((100vw - 1280px) / 2)) !important;
  right: max(24px, calc((100vw - 1280px) / 2)) !important;
  top: 0 !important;
  height: 6px !important;
  background: linear-gradient(90deg, #062d67 0 48%, #ff671f 48% 63%, #d1111e 63% 100%) !important;
  border-radius: 0 0 999px 999px !important;
}

.contact-modern-bg {
  display: block !important;
  position: absolute !important;
  right: max(22px, calc((100vw - 1280px) / 2)) !important;
  top: 44px !important;
  bottom: 44px !important;
  width: min(500px, 38vw) !important;
  border: 1px solid rgba(8, 47, 102, 0.08) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(8, 47, 102, 0.08), rgba(255, 103, 31, 0.06)),
    url("Home Photos/HOME PAGE 8.jpg") center / cover no-repeat !important;
  opacity: 0.2 !important;
  filter: grayscale(0.2) contrast(0.95) !important;
}

.contact-modern-copy,
.contact-modern-form {
  position: relative !important;
  z-index: 1 !important;
}

.contact-modern-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  color: #d1111e !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  letter-spacing: 0.7px !important;
}

.contact-modern-eyebrow span {
  display: inline-block !important;
  width: 30px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #ff671f !important;
}

.contact-modern-copy h2 {
  max-width: 650px !important;
  margin: 0 0 18px !important;
  color: #062d67 !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.contact-modern-copy > p {
  max-width: 620px !important;
  margin: 0 0 30px !important;
  color: #2e3b4f !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  font-weight: 550 !important;
}

.contact-modern-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  max-width: 760px !important;
}

.contact-modern-list article {
  display: grid !important;
  grid-template-columns: 54px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  min-height: 134px !important;
  padding: 20px 18px !important;
  border: 1px solid rgba(8, 47, 102, 0.1) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 30px rgba(8, 31, 72, 0.08) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

.contact-modern-list article:hover {
  border-color: rgba(255, 103, 31, 0.45) !important;
  box-shadow: 0 18px 36px rgba(8, 31, 72, 0.13) !important;
  transform: translateY(-4px) !important;
}

.contact-modern-list article > span {
  display: grid !important;
  place-items: center !important;
  width: 50px !important;
  height: 50px !important;
  border: 2px solid rgba(255, 103, 31, 0.32) !important;
  border-radius: 50% !important;
  background: #fff4ee !important;
  color: #ff671f !important;
  font-size: 22px !important;
}

.contact-modern-list h3 {
  margin: 0 0 8px !important;
  color: #062d67 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
}

.contact-modern-list p {
  margin: 0 !important;
  color: #3b4656 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: 550 !important;
}

.contact-modern-form {
  width: 100% !important;
  max-width: 520px !important;
  justify-self: end !important;
  padding: 34px !important;
  border: 1px solid rgba(8, 47, 102, 0.12) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 28px 60px rgba(8, 31, 72, 0.16) !important;
}

.contact-form-head {
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  margin-bottom: 26px !important;
  padding-bottom: 22px !important;
  border-bottom: 1px solid #e3eaf3 !important;
}

.contact-form-head > span {
  display: grid !important;
  place-items: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #062d67 0%, #0b5c79 100%) !important;
  color: #fff !important;
  font-size: 25px !important;
  box-shadow: inset 0 -4px 0 rgba(255, 103, 31, 0.8) !important;
}

.contact-form-head h3 {
  margin: 0 0 4px !important;
  color: #062d67 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
}

.contact-form-head p {
  margin: 0 !important;
  color: #526070 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.contact-modern-fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.contact-modern-fields input,
.contact-modern-fields select,
.contact-modern-fields textarea {
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 15px !important;
  border: 1px solid #dfe8f2 !important;
  border-radius: 7px !important;
  background: #f8fbff !important;
  color: #101827 !important;
  font-size: 15px !important;
  font-weight: 550 !important;
  outline: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.contact-modern-fields textarea {
  grid-column: 1 / -1 !important;
  min-height: 138px !important;
}

.contact-modern-fields input:focus,
.contact-modern-fields select:focus,
.contact-modern-fields textarea:focus {
  border-color: #ff671f !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255, 103, 31, 0.12) !important;
}

.contact-modern-form button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 56px !important;
  margin-top: 18px !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #d1111e 0%, #ff671f 100%) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 15px 30px rgba(209, 17, 30, 0.2) !important;
  transition: transform 180ms ease, box-shadow 180ms ease !important;
}

.contact-modern-form button:hover,
.contact-modern-form button:focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 38px rgba(209, 17, 30, 0.28) !important;
}

@media (max-width: 1100px) {
  .contact-modern {
    grid-template-columns: 1fr !important;
  }

  .contact-modern-form {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 780px) {
  .contact-modern {
    padding: 72px 20px 78px !important;
  }

  .contact-modern-list {
    grid-template-columns: 1fr !important;
  }

  .contact-modern-fields {
    grid-template-columns: 1fr !important;
  }

  .contact-modern-copy h2 {
    font-size: clamp(32px, 9vw, 44px) !important;
  }

  .contact-modern-form {
    padding: 26px 20px !important;
  }
}

/* Extra top gap above Our Valued Clients */
.clients-section {
  padding-top: 42px !important;
}

.clients-top {
  padding-top: 74px !important;
}

@media (max-width: 760px) {
  .clients-section {
    padding-top: 28px !important;
  }

  .clients-top {
    padding-top: 48px !important;
  }
}

/* Contact section width and background fix */
.contact-modern {
  grid-template-columns: minmax(560px, 1fr) minmax(520px, 0.88fr) !important;
  gap: clamp(52px, 6vw, 96px) !important;
}

.contact-modern-bg {
  right: max(30px, calc((100vw - 1280px) / 2)) !important;
  top: 56px !important;
  bottom: 56px !important;
  width: min(560px, 42vw) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(8, 47, 102, 0.10), rgba(8, 47, 102, 0.04)),
    linear-gradient(135deg, rgba(255, 103, 31, 0.08), transparent 52%) !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: inset 0 0 0 1px rgba(8, 47, 102, 0.08) !important;
}

.contact-modern-copy h2 {
  max-width: 760px !important;
  font-size: clamp(42px, 4.4vw, 64px) !important;
}

.contact-modern-copy > p {
  max-width: 780px !important;
}

.contact-modern-list {
  grid-template-columns: 1fr !important;
  max-width: 780px !important;
  gap: 16px !important;
}

.contact-modern-list article {
  grid-template-columns: 58px 1fr !important;
  min-height: 0 !important;
  padding: 18px 22px !important;
}

.contact-modern-list h3 {
  font-size: 18px !important;
}

.contact-modern-list p {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.contact-modern-list p br {
  display: none !important;
}

.contact-modern-form {
  max-width: 560px !important;
  padding: 36px !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)) !important;
  box-shadow:
    0 28px 64px rgba(8, 31, 72, 0.16),
    0 0 0 1px rgba(8, 47, 102, 0.08) !important;
}

.contact-modern-form::before {
  content: "" !important;
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  bottom: -18px !important;
  height: 18px !important;
  border-radius: 0 0 14px 14px !important;
  background: linear-gradient(90deg, rgba(8, 47, 102, 0.16), rgba(255, 103, 31, 0.14)) !important;
}

.contact-modern-fields select {
  grid-column: 1 / -1 !important;
}

@media (max-width: 1180px) {
  .contact-modern {
    grid-template-columns: 1fr !important;
  }

  .contact-modern-bg {
    display: none !important;
  }
}

/* Gap between footer CTA and footer columns */
.site-footer .footer-main {
  margin-top: 34px !important;
  padding-top: 42px !important;
}

.site-footer .footer-main::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent) !important;
}

@media (max-width: 720px) {
  .site-footer .footer-main {
    margin-top: 24px !important;
    padding-top: 32px !important;
  }
}

/* More top/bottom padding for footer CTA */
.footer-cta {
  min-height: 156px !important;
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

.footer-cta h2 {
  margin-bottom: 12px !important;
}

@media (max-width: 720px) {
  .footer-cta {
    min-height: 190px !important;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
}

/* Better contrast for mission / approach / promise cards */
.why-pillars article {
  padding: 28px 24px 30px !important;
  border: 1px solid rgba(8, 47, 102, 0.12) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)) !important;
  box-shadow: 0 16px 34px rgba(8, 31, 72, 0.10) !important;
}

.why-pillars article + article {
  border-left: 1px solid rgba(8, 47, 102, 0.12) !important;
}

.why-pillars h3 {
  color: #062d67 !important;
}

.why-pillars p {
  color: #182235 !important;
  font-weight: 600 !important;
}

/* Header products dropdown */
.nav-dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-dropdown::after {
  content: "" !important;
  position: absolute !important;
  left: -18px !important;
  right: -18px !important;
  top: 100% !important;
  height: 18px !important;
  background: transparent !important;
}

.nav-dropdown > a {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 36px !important;
}

.nav-dropdown-toggle {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 36px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #090d15 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: color 180ms ease, transform 180ms ease !important;
}

.nav-dropdown-toggle::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  right: 50% !important;
  bottom: -5px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #ff671f !important;
  transition: left 180ms ease, right 180ms ease !important;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: #ff671f !important;
  transform: translateY(-1px) !important;
}

.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle:focus-visible::before,
.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before {
  left: 0 !important;
  right: 0 !important;
}

.nav-dropdown-toggle.active {
  color: var(--blue-dark) !important;
}

.dropdown-arrow {
  font-size: 11px !important;
  line-height: 1 !important;
  transition: transform 180ms ease !important;
}

.dropdown-menu {
  position: absolute !important;
  left: 50% !important;
  top: calc(100% + 8px) !important;
  z-index: 50 !important;
  display: grid !important;
  gap: 0 !important;
  width: 292px !important;
  padding: 10px !important;
  border: 1px solid rgba(8, 47, 102, 0.12) !important;
  border-top: 4px solid #ff671f !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 42px rgba(8, 31, 72, 0.18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 8px) !important;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease !important;
}

.dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: -8px !important;
  width: 14px !important;
  height: 14px !important;
  background: #ff671f !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

.dropdown-menu a {
  position: relative !important;
  display: block !important;
  min-height: auto !important;
  padding: 12px 14px 12px 28px !important;
  border-radius: 6px !important;
  color: #102033 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 750 !important;
  text-transform: none !important;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease !important;
}

.dropdown-menu a::before {
  content: "\203A" !important;
  position: absolute !important;
  left: 13px !important;
  top: 50% !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ff671f !important;
  font-size: 19px !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #062d67, #0b5c79) !important;
  padding-left: 32px !important;
}

.dropdown-menu a:hover::before,
.dropdown-menu a:focus-visible::before {
  color: #ffb08b !important;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg) !important;
}

/* Product detail page */
.product-detail-page {
  margin: 0;
  background: #fff;
  color: #0c1830;
  font-family: "Inter", Arial, sans-serif !important;
}

.product-detail-page *,
.product-detail-page :where(h1, h2, h3, h4, p, a, span, li, strong, em, small, th, td, button) {
  font-family: "Inter", Arial, sans-serif !important;
}

.product-page-header {
  display: grid;
  grid-template-columns: 300px 1fr 150px;
  align-items: center;
  gap: 28px;
  min-height: 108px;
  padding: 20px max(34px, calc((100vw - 1320px) / 2));
  background: #fff;
  box-shadow: 0 8px 26px rgba(8, 31, 72, 0.08);
}

.product-page-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #082f66;
}

.product-page-logo-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 62px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(135deg, #082f66 0 52%, #e1111c 52% 100%);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.product-page-logo strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.product-page-logo em {
  color: #e1111c;
  font-style: normal;
}

.product-page-logo small {
  display: block;
  margin-top: 5px;
  color: #273247;
  font-size: 12px;
  font-weight: 650;
}

.product-page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.product-page-nav a {
  position: relative;
  color: #0c1830;
  font-size: 14px;
  font-weight: 850;
  transition: color 180ms ease;
}

.product-page-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -16px;
  height: 3px;
  border-radius: 999px;
  background: #e1111c;
  transition: left 180ms ease, right 180ms ease;
}

.product-page-nav a:hover,
.product-page-nav a.active {
  color: #e1111c;
}

.product-page-nav a:hover::after,
.product-page-nav a.active::after {
  left: 0;
  right: 0;
}

.product-page-quote,
.request-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e1111c, #ff5b16);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(225, 17, 28, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-page-quote {
  padding: 0 20px;
}

.product-page-quote:hover,
.request-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(225, 17, 28, 0.30);
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 max(34px, calc((100vw - 1320px) / 2));
  background: linear-gradient(135deg, #062d67, #0b3f87);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.product-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
  gap: clamp(50px, 5vw, 72px);
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 46px 0 56px;
}

.product-main-image {
  display: grid;
  place-items: center;
  height: 445px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: 34px repeat(5, 78px) 34px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.product-thumbs img {
  width: 78px;
  height: 64px;
  object-fit: cover;
  border: 1px solid #e4eaf2;
  border-radius: 4px;
  background: #fff;
}

.product-thumbs img.active {
  border-color: #e1111c;
  box-shadow: 0 0 0 2px rgba(225, 17, 28, 0.1);
}

.product-thumbs button {
  width: 34px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #082f66;
  font-size: 32px;
  cursor: pointer;
}

.product-detail-copy {
  padding-top: 6px;
}

.product-kicker {
  margin: 0 0 20px;
  color: #e1111c;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  margin: 0;
  color: #082f66;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: 1.1;
  font-weight: 900;
}

.product-detail-copy > i,
.product-overview > i,
.technical-specs > i {
  display: block;
  width: 38px;
  height: 3px;
  margin: 22px 0 26px;
  background: #e1111c;
}

.product-intro {
  max-width: 650px;
  margin: 0 0 25px;
  color: #1d293d;
  font-size: 16px;
  line-height: 1.7;
}

.product-highlights {
  display: grid;
  gap: 17px;
  margin: 0 0 28px;
}

.product-highlights div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  position: relative;
  padding-left: 32px;
}

.product-highlights div::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #082f66;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-highlights dt {
  color: #10264d;
  font-weight: 850;
}

.product-highlights dd {
  margin: 0;
  color: #1f2a3d;
}

.product-actions-detail {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.request-action,
.datasheet-action {
  min-width: 230px;
  padding: 0 26px;
}

.datasheet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid #082f66;
  border-radius: 6px;
  color: #082f66;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.datasheet-action:hover {
  background: #082f66;
  color: #fff;
  transform: translateY(-2px);
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(420px, 1fr);
  gap: clamp(58px, 7vw, 108px);
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 12px 0 48px;
}

.product-overview h2,
.technical-specs h2 {
  margin: 0;
  color: #082f66;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-overview p {
  margin: 0 0 24px;
  color: #202b3c;
  font-size: 16px;
  line-height: 1.72;
}

.product-overview h3 {
  margin: 0 0 16px;
  color: #0c1830;
  font-size: 16px;
  font-weight: 900;
}

.product-overview ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-overview li {
  position: relative;
  padding-left: 34px;
  color: #1d293d;
}

.product-overview li::before {
  content: "\2699";
  position: absolute;
  left: 0;
  color: #e1111c;
}

.technical-specs table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dfe6ef;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 31, 72, 0.05);
}

.technical-specs th,
.technical-specs td {
  padding: 16px 22px;
  border: 1px solid #dfe6ef;
  text-align: left;
  font-size: 15px;
  line-height: 1.45;
}

.technical-specs th {
  width: 36%;
  color: #082f66;
  background: #fbfdff;
  font-weight: 900;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto 52px;
  padding: 28px 32px;
  border: 1px solid #e3eaf2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 31, 72, 0.08);
}

.product-benefits article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid #dfe6ef;
}

.product-benefits article:last-child {
  border-right: 0;
}

.product-benefits span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #082f66;
  border-radius: 50%;
  color: #082f66;
  font-size: 24px;
  font-weight: 900;
}

.product-benefits h3 {
  margin: 0 0 8px;
  color: #082f66;
  font-size: 16px;
  font-weight: 900;
}

.product-benefits p {
  margin: 0;
  color: #354154;
  font-size: 13px;
  line-height: 1.55;
}

.product-page-footer {
  background: #f8fbff;
  border-top: 1px solid #e2e8f0;
}

.product-footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 1fr 0.9fr 1.35fr;
  gap: 38px;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 46px 0;
  border-bottom: 1px solid #dfe6ef;
}

.product-footer-main h3 {
  margin: 0 0 18px;
  color: #082f66;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-footer-main a,
.product-footer-main p {
  display: block;
  margin: 0 0 13px;
  color: #26344a;
  font-size: 14px;
  line-height: 1.55;
}

.product-footer-logo {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: #082f66 !important;
  font-size: 24px !important;
  font-weight: 900;
}

.product-footer-logo span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, #082f66 0 52%, #e1111c 52% 100%);
  color: #fff;
}

.product-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.product-footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border: 1px solid #bcc8d8;
  border-radius: 50%;
  color: #082f66;
  font-weight: 900;
}

.product-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0;
}

.product-footer-bottom p,
.product-footer-bottom a {
  margin: 0;
  color: #26344a;
  font-size: 14px;
}

.product-footer-bottom div {
  display: flex;
  gap: 42px;
}

@media (max-width: 1100px) {
  .product-page-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-page-nav {
    flex-wrap: wrap;
  }

  .product-detail-hero,
  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-benefits,
  .product-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-detail-hero,
  .product-info-grid,
  .product-benefits,
  .product-footer-main,
  .product-footer-bottom {
    width: calc(100% - 32px);
  }

  .product-thumbs {
    grid-template-columns: 30px repeat(3, 1fr) 30px;
  }

  .product-main-image {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    padding: 10px !important;
  }

  .product-main-image img {
    object-fit: contain !important;
  }

  .product-thumbs img:nth-of-type(n+4) {
    display: none;
  }

  .product-highlights div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-benefits,
  .product-footer-main,
  .product-footer-bottom {
    grid-template-columns: 1fr;
  }

  .product-benefits article {
    border-right: 0;
    border-bottom: 1px solid #dfe6ef;
    padding: 18px 0;
  }

  .product-benefits article:last-child {
    border-bottom: 0;
  }

  .product-footer-bottom {
    flex-direction: column;
  }
}

/* Mobile sidebar navigation */
.mobile-menu-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(8, 47, 102, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #082f66;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 31, 72, 0.08);
}

.mobile-menu-toggle span {
  display: block;
  width: 21px;
  height: 3px;
  border-radius: 999px;
  background: #082f66;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(3, 15, 35, 0.54);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  width: min(340px, 86vw);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98)),
    radial-gradient(circle at 20% 10%, rgba(255, 103, 31, 0.12), transparent 30%);
  box-shadow: -22px 0 48px rgba(3, 15, 35, 0.24);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe6ef;
}

.mobile-sidebar-head strong {
  color: #082f66;
  font-size: 20px;
  font-weight: 900;
}

.mobile-sidebar-head button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #ff671f;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-sidebar nav {
  display: grid;
  gap: 8px;
  padding: 24px 0;
}

.mobile-sidebar nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  color: #102033;
  font-size: 16px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.mobile-sidebar nav a:hover,
.mobile-sidebar nav a:focus-visible {
  padding-left: 20px;
  color: #fff;
  background: linear-gradient(135deg, #062d67, #0b5c79);
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #102033;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible,
.mobile-submenu-toggle.is-open {
  color: #fff;
  background: linear-gradient(135deg, #062d67, #0b5c79);
}

.mobile-submenu-toggle span {
  transition: transform 180ms ease;
}

.mobile-submenu-toggle.is-open span {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding-left: 12px;
  opacity: 0;
  visibility: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
}

.mobile-submenu.is-open {
  max-height: 320px;
  opacity: 1;
  visibility: visible;
}

.mobile-submenu > a {
  min-height: 40px !important;
  padding-left: 24px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.mobile-sidebar-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d1111e, #ff671f);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(209, 17, 30, 0.20);
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-sidebar {
  transform: translateX(0);
}

@media (max-width: 980px) {
  .site-header,
  .product-page-header {
    grid-template-columns: 1fr auto !important;
    justify-items: stretch !important;
    gap: 16px !important;
  }

  .site-header .nav,
  .site-header .quote-btn,
  .product-page-nav,
  .product-page-quote {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: grid !important;
    justify-self: end;
  }
}

/* Better mobile menu button */
.mobile-menu-toggle {
  position: relative !important;
  overflow: hidden !important;
  gap: 4px !important;
  width: 52px !important;
  height: 52px !important;
  border: 1px solid rgba(8, 47, 102, 0.18) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  box-shadow: 0 12px 26px rgba(8, 31, 72, 0.12) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

.mobile-menu-toggle::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 5px !important;
  background: linear-gradient(180deg, #d1111e, #ff671f) !important;
}

.mobile-menu-toggle span {
  position: relative !important;
  width: 23px !important;
  height: 3px !important;
  background: #062d67 !important;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease !important;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: rgba(255, 103, 31, 0.55) !important;
  box-shadow: 0 16px 32px rgba(8, 31, 72, 0.16) !important;
  transform: translateY(-2px) !important;
}

.mobile-menu-toggle:hover span,
.mobile-menu-toggle:focus-visible span {
  background: #ff671f !important;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0 !important;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* Home page mobile overflow fixes */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  .site-header,
  .site-footer,
  .footer-cta,
  .footer-main,
  .footer-bottom {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .site-header .brand,
  .site-header .brand-copy,
  .site-header .brand-name,
  .site-header .brand-tagline {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body:not(.product-detail-page) .site-header {
    width: 100% !important;
    padding: 14px 16px !important;
  }

  body:not(.product-detail-page) .brand {
    min-width: 0 !important;
  }

  body:not(.product-detail-page) .brand-copy {
    min-width: 0 !important;
  }

  body:not(.product-detail-page) .brand-name,
  body:not(.product-detail-page) .brand-tagline {
    white-space: normal !important;
  }

  body:not(.product-detail-page) .banner {
    min-height: auto !important;
    padding-bottom: 34px !important;
    background:
      radial-gradient(circle at 18% 8%, rgba(209, 17, 30, 0.10), transparent 46%),
      radial-gradient(circle at 84% 18%, rgba(12, 70, 142, 0.14), transparent 52%),
      linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #fff4f6 100%) !important;
  }

  body:not(.product-detail-page) .banner::before,
  body:not(.product-detail-page) .banner::after {
    content: none !important;
  }

  body:not(.product-detail-page) .hero {
    width: calc(100% - 28px) !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 18px 0 0 !important;
    min-height: auto !important;
  }

  /* kill desktop reserved space on mobile */
  body:not(.product-detail-page) .hero {
    padding-bottom: 0 !important;
  }

  body:not(.product-detail-page) .hero-copy {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px 16px 14px !important;
    transform: none !important;
    border-radius: 18px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)) !important;
    border: 1px solid rgba(8, 47, 102, 0.10) !important;
    box-shadow: 0 18px 44px rgba(8, 31, 72, 0.10) !important;
    backdrop-filter: blur(6px);
  }

  body:not(.product-detail-page) .hero-copy::before,
  body:not(.product-detail-page) .hero-copy::after {
    content: "" !important;
    position: absolute !important;
    inset: auto !important;
    pointer-events: none !important;
  }

  body:not(.product-detail-page) .hero-copy::before {
    right: -46px !important;
    top: -56px !important;
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 30% 30%, rgba(209, 17, 30, 0.28), transparent 62%) !important;
    filter: blur(0.2px);
  }

  body:not(.product-detail-page) .hero-copy::after {
    left: -54px !important;
    bottom: -58px !important;
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 30% 30%, rgba(8, 47, 102, 0.22), transparent 64%) !important;
  }

  body:not(.product-detail-page) .rating-pill {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(8, 47, 102, 0.22) !important;
    box-shadow: 0 12px 26px rgba(8, 31, 72, 0.10) !important;
  }

  body:not(.product-detail-page) .hero-copy h1,
  body:not(.product-detail-page) .hero-copy h1 .hero-line,
  body:not(.product-detail-page) .about-copy h2 .about-line,
  body:not(.product-detail-page) .clients-heading h2 span {
    white-space: normal !important;
  }

  body:not(.product-detail-page) .hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  body:not(.product-detail-page) .hero-actions,
  body:not(.product-detail-page) .about-actions,
  body:not(.product-detail-page) .product-actions {
    flex-wrap: wrap !important;
  }

  body:not(.product-detail-page) .hero-actions {
    margin-top: 22px !important;
    margin-bottom: 18px !important;
    gap: 14px !important;
  }

  body:not(.product-detail-page) .primary-action,
  body:not(.product-detail-page) .video-action,
  body:not(.product-detail-page) .about-primary,
  body:not(.product-detail-page) .about-secondary {
    width: 100% !important;
    min-width: 0 !important;
  }

  body:not(.product-detail-page) .visual {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 6px !important;
  
    padding-right: 20px !important;
  }

  body:not(.product-detail-page) .hero-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 340px !important;
    object-fit: contain !important;
    display: block !important;
  }

  body:not(.product-detail-page) .feature-strip,
  body:not(.product-detail-page) .about-section,
  body:not(.product-detail-page) .product-section,
  body:not(.product-detail-page) .industries-section,
  body:not(.product-detail-page) .why-section,
  body:not(.product-detail-page) .clients-section,
  body:not(.product-detail-page) .contact-modern {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow: hidden !important;
  }

  body:not(.product-detail-page) .feature-strip,
  body:not(.product-detail-page) .about-section,
  body:not(.product-detail-page) .product-section .product-grid,
  body:not(.product-detail-page) .industry-grid,
  body:not(.product-detail-page) .why-section,
  body:not(.product-detail-page) .why-stats,
  body:not(.product-detail-page) .client-stats,
  body:not(.product-detail-page) .contact-modern,
  body:not(.product-detail-page) .contact-modern-fields {
    grid-template-columns: 1fr !important;
  }

  body:not(.product-detail-page) .feature-strip {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    width: calc(100% - 28px) !important;
    margin: 18px auto 0 !important;
  }

  body:not(.product-detail-page) .feature {
    grid-template-columns: 54px 1fr !important;
    padding: 18px 0 !important;
  }

  body:not(.product-detail-page) .about-media {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
  }

  body:not(.product-detail-page) .about-photo {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  body:not(.product-detail-page) .standard-badge,
  body:not(.product-detail-page) .experience-badge {
    transform: scale(0.82) !important;
  }

  body:not(.product-detail-page) .product-section .product-card,
  body:not(.product-detail-page) .product-section .card-inner {
    width: 100% !important;
    min-width: 0 !important;
  }

  body:not(.product-detail-page) .product-section .content {
    padding-right: 18px !important;
  }

  body:not(.product-detail-page) .industries-section {
    padding-top: 72px !important;
  }

  body:not(.product-detail-page) .industries-intro,
  body:not(.product-detail-page) .industry-grid,
  body:not(.product-detail-page) .why-copy,
  body:not(.product-detail-page) .why-pillars,
  body:not(.product-detail-page) .contact-modern-copy,
  body:not(.product-detail-page) .contact-modern-list {
    max-width: 100% !important;
  }

  body:not(.product-detail-page) .industry-card,
  body:not(.product-detail-page) .client-logo,
  body:not(.product-detail-page) .contact-modern-list article {
    min-width: 0 !important;
  }

  body:not(.product-detail-page) .why-visual {
    display: grid !important;
    gap: 18px !important;
    min-height: auto !important;
  }

  body:not(.product-detail-page) .why-center {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin: 0 !important;
  }

  body:not(.product-detail-page) .why-hex,
  body:not(.product-detail-page) .hex-top-left,
  body:not(.product-detail-page) .hex-top-right,
  body:not(.product-detail-page) .hex-mid-left,
  body:not(.product-detail-page) .hex-mid-right,
  body:not(.product-detail-page) .hex-bottom-left,
  body:not(.product-detail-page) .hex-bottom-right {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: auto !important;
    transform: none !important;
  }

  body:not(.product-detail-page) .why-ring,
  body:not(.product-detail-page) .why-astm {
    display: none !important;
  }

  body:not(.product-detail-page) .why-stats {
    width: 100% !important;
  }

  body:not(.product-detail-page) .why-stats article {
    width: 100% !important;
  }

  body:not(.product-detail-page) .clients-top {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body:not(.product-detail-page) .client-logo-grid {
    margin-left: -18px !important;
    margin-right: -18px !important;
  }

  body:not(.product-detail-page) .testimonial-content,
  body:not(.product-detail-page) .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  body:not(.product-detail-page) .testimonial-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body:not(.product-detail-page) .contact-modern {
    grid-template-columns: 1fr !important;
    padding-top: 72px !important;
    padding-bottom: 78px !important;
  }

  body:not(.product-detail-page) .contact-modern-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 18px !important;
  }

  body:not(.product-detail-page) .site-footer .footer-main {
    width: calc(100% - 34px) !important;
  }
}

/* Use the same home header on product pages */
.product-detail-page .site-header {
  display: flex !important;
}

@media (max-width: 980px) {
  .product-detail-page .site-header {
    display: grid !important;
  }
}

/* Mobile fixes for About and Contact readability */
@media (max-width: 760px) {
  body:not(.product-detail-page) .about-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  body:not(.product-detail-page) .about-media,
  body:not(.product-detail-page) .about-copy {
    position: relative !important;
    inset: auto !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  body:not(.product-detail-page) .about-media {
    order: 1 !important;
    display: block !important;
    min-height: auto !important;
    margin: 0 !important;
  }

  body:not(.product-detail-page) .about-copy {
    order: 2 !important;
    margin: 0 !important;
    padding: 26px 0 0 !important;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.98)) !important;
  }

  body:not(.product-detail-page) .about-photo {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin: 0 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  body:not(.product-detail-page) .about-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body:not(.product-detail-page) .standard-badge {
    left: 14px !important;
    top: 16px !important;
    right: auto !important;
    transform: scale(0.72) !important;
    transform-origin: top left !important;
  }

  body:not(.product-detail-page) .experience-badge {
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    transform: scale(0.78) !important;
    transform-origin: bottom right !important;
  }

  body:not(.product-detail-page) .about-copy h2 {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.08 !important;
  }

  body:not(.product-detail-page) .about-copy p {
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: #26344a !important;
  }

  body:not(.product-detail-page) .contact-modern {
    padding-top: 74px !important;
    padding-bottom: 82px !important;
  }

  body:not(.product-detail-page) .contact-modern-copy h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
  }

  body:not(.product-detail-page) .contact-modern-copy > p {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  body:not(.product-detail-page) .contact-modern-list {
    gap: 16px !important;
  }

  body:not(.product-detail-page) .contact-modern-list article {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    align-items: center !important;
    justify-items: stretch !important;
    text-align: left !important;
    padding: 20px 18px !important;
  }

  body:not(.product-detail-page) .contact-modern-list h3 {
    text-align: left !important;
    font-size: 21px !important;
  }

  body:not(.product-detail-page) .contact-modern-list p {
    text-align: left !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body:not(.product-detail-page) .contact-modern-list p br {
    display: block !important;
  }
}

/* Reduce oversized blue product-section accent on mobile */
@media (max-width: 760px) {
  body:not(.product-detail-page) .product-section::before,
  body:not(.product-detail-page) .product-section::after,
  body:not(.product-detail-page) .hex-bg {
    opacity: 0.08 !important;
    transform: scale(0.45) !important;
    transform-origin: top left !important;
  }

  body:not(.product-detail-page) .product-section .section-head,
  body:not(.product-detail-page) .product-section .product-grid,
  body:not(.product-detail-page) .product-section .cta-bar {
    position: relative !important;
    z-index: 3 !important;
  }

  body:not(.product-detail-page) .product-section .section-head p {
    position: relative !important;
    z-index: 4 !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
  }
}

/* Inquiry modal */
.inquiry-modal[hidden] {
  display: none !important;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 30, 0.44);
  backdrop-filter: blur(5px);
}

.inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  padding: 44px 56px 52px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.inquiry-close {
  position: absolute;
  right: 28px;
  top: 26px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #263244;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
}

.inquiry-dialog > h2 {
  width: min(460px, calc(100% - 120px));
  margin: 0 auto 44px;
  padding: 13px 24px;
  border-radius: 9px;
  background: linear-gradient(135deg, #d90919 0%, #ff5b16 100%);
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.inquiry-head {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid #dfe6ef;
}

.inquiry-head > span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 10px;
  background: linear-gradient(135deg, #062d67, #0b5c79);
  color: #fff;
  font-size: 44px;
  box-shadow: inset 0 -8px 0 #e1111c;
}

.inquiry-head h3 {
  margin: 0 0 10px;
  color: #062d67;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.08;
  font-weight: 900;
}

.inquiry-head p {
  margin: 0;
  color: #5d6878;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.35;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  padding-top: 38px;
}

.inquiry-form label {
  display: grid;
  gap: 18px;
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid #dfe6ef;
  border-radius: 13px;
  background: #fff;
}

.inquiry-form label.wide {
  grid-column: 1 / -1;
}

.inquiry-form strong {
  color: #16243a;
  font-size: 21px;
  font-weight: 900;
}

.inquiry-form em {
  color: #ff3b16;
  font-style: normal;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172236;
  font-size: 23px;
}

.inquiry-form textarea {
  min-height: 118px;
  resize: vertical;
}

.inquiry-form label:focus-within {
  border-color: #ff671f;
  box-shadow: 0 0 0 4px rgba(255, 103, 31, 0.12);
}

.inquiry-form button {
  grid-column: 1 / -1;
  min-height: 96px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #d90919 0%, #ff5b16 100%);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(225, 17, 28, 0.20);
}

body.inquiry-open {
  overflow: hidden;
}

/* Compact inquiry form size */
.inquiry-dialog {
  width: min(760px, 100%) !important;
  padding: 34px 42px 40px !important;
  border-radius: 22px !important;
}

.inquiry-dialog > h2 {
  width: min(360px, calc(100% - 90px)) !important;
  margin-bottom: 30px !important;
  padding: 11px 20px !important;
  font-size: clamp(28px, 3.2vw, 38px) !important;
}

.inquiry-head {
  grid-template-columns: 74px 1fr !important;
  gap: 22px !important;
  padding-bottom: 26px !important;
}

.inquiry-head > span {
  width: 68px !important;
  height: 68px !important;
  font-size: 30px !important;
  box-shadow: inset 0 -5px 0 #e1111c !important;
}

.inquiry-head h3 {
  font-size: clamp(25px, 3vw, 34px) !important;
}

.inquiry-head p {
  font-size: clamp(16px, 1.8vw, 20px) !important;
}

.inquiry-form {
  gap: 20px 22px !important;
  padding-top: 28px !important;
}

.inquiry-form label {
  min-height: 104px !important;
  gap: 12px !important;
  padding: 18px 20px !important;
  border-radius: 10px !important;
}

.inquiry-form strong {
  font-size: 17px !important;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  font-size: 18px !important;
}

.inquiry-form textarea {
  min-height: 90px !important;
}

.inquiry-form button {
  min-height: 68px !important;
  font-size: 24px !important;
  border-radius: 9px !important;
}

@media (max-width: 720px) {
  .inquiry-modal {
    padding: 14px;
  }

  .inquiry-dialog {
    padding: 28px 18px 30px;
    border-radius: 18px;
  }

  .inquiry-dialog > h2 {
    width: calc(100% - 60px);
    margin-bottom: 28px;
    font-size: 30px;
  }

  .inquiry-close {
    right: 12px;
    top: 14px;
  }

  .inquiry-head,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .inquiry-head {
    gap: 18px;
    text-align: center;
    justify-items: center;
  }

  .inquiry-form {
    gap: 16px;
  }

  .inquiry-form label,
  .inquiry-form label.wide,
  .inquiry-form button {
    grid-column: auto;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    font-size: 18px;
  }

  .inquiry-form button {
    min-height: 64px;
    font-size: 22px;
  }
}

/* Shared header and footer consistency across all pages */
.product-detail-page .site-header,
.contact-page .site-header,
.industries-page .site-header,
.quality-page .site-header {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding: 44px clamp(28px, 4vw, 64px) 20px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(245,249,255,0.96)),
    radial-gradient(circle at 12% 0%, rgba(11, 63, 135, 0.08), transparent 30%) !important;
}

.product-detail-page .site-footer,
.contact-page .site-footer,
.industries-page .site-footer,
.quality-page .site-footer {
  margin-top: 0 !important;
}

.product-detail-page .site-footer .footer-main,
.contact-page .site-footer .footer-main,
.industries-page .site-footer .footer-main,
.quality-page .site-footer .footer-main {
  width: min(1320px, calc(100% - 80px)) !important;
}

@media (max-width: 980px) {
  .product-detail-page .site-header,
  .contact-page .site-header,
  .industries-page .site-header,
  .quality-page .site-header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    justify-items: stretch !important;
    gap: 16px !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: 100% !important;
    padding: 14px 16px !important;
  }

  .brand,
  .brand-copy {
    min-width: 0 !important;
  }

  .brand-name,
  .brand-tagline {
    white-space: normal !important;
  }

  .site-footer .footer-main {
    width: calc(100% - 34px) !important;
  }
}

/* Keep footer CTA description readable without heavy boldness */
.footer-cta p {
  font-weight: 400 !important;
}

/* Real logo assets */
.brand {
  min-width: clamp(210px, 22vw, 300px) !important;
  min-height: 64px !important;
}

.brand .brand-mark,
.brand .brand-copy {
  display: none !important;
}

.brand::before {
  content: "" !important;
  display: block !important;
  width: clamp(210px, 22vw, 285px) !important;
  aspect-ratio: 379 / 85 !important;
  background: url("header-logo.png") left center / contain no-repeat !important;
}

.site-footer .footer-logo {
  min-width: 180px !important;
  min-height: 92px !important;
}

.site-footer .footer-logo-mark,
.site-footer .footer-logo-copy {
  display: none !important;
}

.site-footer .footer-logo::before {
  content: "" !important;
  display: block !important;
  width: 180px !important;
  aspect-ratio: 336 / 170 !important;
  background: url("footer-logo.png") left center / contain no-repeat !important;
}

@media (max-width: 760px) {
  .brand {
    min-width: clamp(170px, 58vw, 220px) !important;
    min-height: 50px !important;
  }

  .brand::before {
    width: clamp(170px, 58vw, 220px) !important;
  }

  .site-footer .footer-logo {
    min-width: 150px !important;
    min-height: 76px !important;
  }

  .site-footer .footer-logo::before {
    width: 150px !important;
  }
}

/* Keep the shared home header/footer consistent on every page */
.product-detail-page .site-header,
.contact-page .site-header,
.industries-page .site-header,
.quality-page .site-header,
.about-page .site-header {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  min-height: 0 !important;
  padding: 44px 58px 20px !important;
  border-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.product-detail-page .site-footer,
.contact-page .site-footer,
.industries-page .site-footer,
.quality-page .site-footer,
.about-page .site-footer {
  margin-top: 0 !important;
  border-top: 0 !important;
}

.product-detail-page .footer-cta,
.contact-page .footer-cta,
.industries-page .footer-cta,
.quality-page .footer-cta,
.about-page .footer-cta {
  display: flex !important;
}

@media (max-width: 980px) {
  .product-detail-page .site-header,
  .contact-page .site-header,
  .industries-page .site-header,
  .quality-page .site-header,
  .about-page .site-header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 16px !important;
  }
}

@media (max-width: 760px) {
  .product-detail-page .site-header,
  .contact-page .site-header,
  .industries-page .site-header,
  .quality-page .site-header,
  .about-page .site-header {
    width: 100% !important;
    padding: 14px 16px !important;
  }
}

/* Final shared header: same as About reference on every page */
.site-header,
.product-detail-page .site-header,
.contact-page .site-header,
.industries-page .site-header,
.quality-page .site-header,
.about-page .site-header {
  position: relative !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
  min-height: 116px !important;
  padding: 30px 62px 25px !important;
  border-bottom: 1px solid #edf1f7 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.site-header .brand {
  flex: 0 0 auto !important;
  min-width: 285px !important;
  min-height: 70px !important;
}

.site-header .brand::before {
  width: 285px !important;
}

.site-header .nav {
  flex: 1 1 auto !important;
  justify-content: center !important;
  gap: clamp(24px, 3vw, 48px) !important;
}

.site-header .nav a,
.site-header .nav-dropdown-toggle {
  min-height: 42px !important;
  color: #050a16 !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.site-header .nav a.active,
.site-header .nav-dropdown-toggle.active {
  color: #062d67 !important;
}

.site-header .nav a.active::after {
  bottom: -6px !important;
  height: 4px !important;
  background: #062d67 !important;
  border-radius: 0 !important;
}

.site-header .nav-dropdown-toggle.active::before {
  left: 0 !important;
  right: 0 !important;
  bottom: -6px !important;
  height: 4px !important;
  background: #062d67 !important;
  border-radius: 0 !important;
}

.site-header .quote-btn {
  flex: 0 0 auto !important;
  min-width: 186px !important;
  height: 58px !important;
  border-radius: 999px !important;
  background: #bd0713 !important;
  color: #fff !important;
  font-size: 0 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.site-header .quote-btn::before {
  content: "Inquiry" !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

.site-header .quote-btn span {
  display: grid !important;
  place-items: center !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #bd0713 !important;
  font-size: 15px !important;
}

@media (max-width: 980px) {
  .site-header,
  .product-detail-page .site-header,
  .contact-page .site-header,
  .industries-page .site-header,
  .quality-page .site-header,
  .about-page .site-header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 16px !important;
    min-height: 84px !important;
    padding: 14px 22px !important;
  }

  .site-header .nav,
  .site-header .quote-btn {
    display: none !important;
  }

  .site-header .brand {
    min-width: clamp(180px, 50vw, 250px) !important;
    min-height: 54px !important;
  }

  .site-header .brand::before {
    width: clamp(180px, 50vw, 250px) !important;
  }
}

/* Polished inquiry modal */
.inquiry-backdrop {
  background:
    radial-gradient(circle at 50% 18%, rgba(8, 47, 102, 0.22), transparent 34%),
    rgba(5, 18, 42, 0.58) !important;
  backdrop-filter: blur(8px) !important;
}

.inquiry-dialog {
  width: min(780px, calc(100% - 28px)) !important;
  max-height: min(92vh, 940px) !important;
  padding: 0 !important;
  overflow: hidden auto !important;
  border: 1px solid rgba(205, 218, 235, 0.95) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
  box-shadow: 0 34px 90px rgba(5, 18, 42, 0.34) !important;
}

.inquiry-dialog::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto !important;
  height: 8px !important;
  background: linear-gradient(90deg, #062d67, #e1111c) !important;
}

.inquiry-close {
  right: 22px !important;
  top: 18px !important;
  z-index: 3 !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(8, 47, 102, 0.14) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #062d67 !important;
  font-size: 34px !important;
  box-shadow: 0 12px 26px rgba(8, 31, 72, 0.1) !important;
}

.inquiry-dialog > h2 {
  width: auto !important;
  margin: 0 !important;
  padding: 34px 92px 12px 42px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #062d67 !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: clamp(34px, 4vw, 46px) !important;
  line-height: 1.05 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.inquiry-dialog > h2::after {
  content: "" !important;
  display: block !important;
  width: 62px !important;
  height: 4px !important;
  margin-top: 14px !important;
  border-radius: 999px !important;
  background: #e1111c !important;
}

.inquiry-head {
  grid-template-columns: 58px 1fr !important;
  gap: 18px !important;
  margin: 0 42px !important;
  padding: 18px 0 28px !important;
  border-bottom: 1px solid #dbe4f0 !important;
}

.inquiry-head > span {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  background:
    linear-gradient(135deg, #062d67, #0b4d8a) !important;
  color: #fff !important;
  font-size: 25px !important;
  box-shadow: 0 10px 24px rgba(6, 45, 103, 0.22), inset 0 -4px 0 #e1111c !important;
}

.inquiry-head h3 {
  margin: 0 0 6px !important;
  color: #062d67 !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: clamp(25px, 3vw, 34px) !important;
  line-height: 1.05 !important;
}

.inquiry-head p {
  color: #66758a !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
}

.inquiry-form {
  gap: 18px 20px !important;
  padding: 28px 42px 42px !important;
}

.inquiry-form label {
  min-height: 96px !important;
  gap: 10px !important;
  padding: 17px 18px !important;
  border: 1px solid #d8e2ef !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(8, 31, 72, 0.04) !important;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease !important;
}

.inquiry-form label:focus-within {
  border-color: #0b4d8a !important;
  box-shadow: 0 0 0 4px rgba(6, 45, 103, 0.1) !important;
  transform: translateY(-1px) !important;
}

.inquiry-form strong {
  color: #062d67 !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 17px !important;
}

.inquiry-form em {
  color: #e1111c !important;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  color: #172236 !important;
  font-size: 16px !important;
}

.inquiry-form textarea {
  min-height: 92px !important;
}

.inquiry-form button {
  min-height: 64px !important;
  border-radius: 14px !important;
  background:
    linear-gradient(135deg, #062d67 0%, #0b4d8a 55%, #e1111c 160%) !important;
  color: #fff !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 24px !important;
  box-shadow: 0 18px 36px rgba(6, 45, 103, 0.22) !important;
}

.inquiry-form button:hover,
.inquiry-form button:focus-visible {
  background:
    linear-gradient(135deg, #0b4d8a 0%, #062d67 55%, #e1111c 150%) !important;
}

@media (max-width: 720px) {
  .inquiry-dialog > h2 {
    padding: 30px 70px 10px 22px !important;
    font-size: 32px !important;
  }

  .inquiry-head {
    grid-template-columns: 1fr !important;
    margin: 0 22px !important;
    text-align: left !important;
  }

  .inquiry-form {
    grid-template-columns: 1fr !important;
    padding: 24px 22px 30px !important;
  }
}

/* Compact mobile footer layout */
@media (max-width: 700px) {
  .site-footer {
    background:
      linear-gradient(145deg, rgba(4, 47, 70, 0.98) 0%, rgba(7, 128, 126, 0.96) 52%, rgba(2, 80, 78, 0.98) 100%) !important;
  }

  .footer-cta {
    display: none !important;
  }

  .site-footer .footer-main {
    width: calc(100% - 28px) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 18px !important;
    min-height: auto !important;
    padding: 34px 0 30px !important;
  }

  .site-footer .footer-main::before,
  .site-footer .footer-main::after,
  .site-footer .footer-col:not(:first-child)::before {
    display: none !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-contact {
    grid-column: 1 / -1 !important;
  }

  .site-footer .footer-logo {
    width: 150px !important;
    min-width: 150px !important;
    height: 76px !important;
    min-height: 76px !important;
    margin: 0 0 18px !important;
    padding: 12px !important;
  }

  .site-footer .footer-logo::before {
    width: 116px !important;
  }

  .site-footer .footer-brand p {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    font-weight: 750 !important;
  }

  .site-footer .footer-social {
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .site-footer .footer-social a {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }

  .site-footer .footer-col > h3 {
    margin-bottom: 14px !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
  }

  .site-footer .footer-col ul {
    gap: 12px !important;
  }

  .site-footer .footer-col li a {
    padding-left: 14px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 850 !important;
    white-space: normal !important;
  }

  .site-footer .footer-col li a::before {
    font-size: 18px !important;
  }

  .site-footer .footer-contact {
    padding-top: 4px !important;
  }

  .site-footer .footer-contact article {
    grid-template-columns: 34px 1fr !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  .site-footer .footer-contact article > span {
    width: 30px !important;
    height: 30px !important;
  }

  .site-footer .footer-contact p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 850 !important;
    overflow-wrap: anywhere !important;
  }

  .site-footer .footer-bottom {
    min-height: auto !important;
    display: grid !important;
    justify-items: center !important;
    gap: 10px !important;
    padding: 18px 14px !important;
    text-align: center !important;
  }

  .site-footer .footer-bottom p,
  .site-footer .footer-bottom a {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
}
