:root {
  --navy-1000: #02070d;
  --navy-950: #050d17;
  --navy-900: #071522;
  --navy-850: #0a1c2d;
  --navy-800: #0d263e;
  --blue-700: #0759ce;
  --blue-600: #0869f5;
  --blue-500: #2b82ff;
  --blue-400: #6aa9ff;
  --blue-100: #e9f2ff;
  --ink: #0a1728;
  --ink-2: #26384b;
  --muted: #617182;
  --line: #d9e2eb;
  --line-dark: rgba(255, 255, 255, .12);
  --soft: #f3f6f9;
  --white: #fff;
  --success: #0a8a60;
  --warning: #8a6614;
  --shadow-sm: 0 10px 30px rgba(4, 18, 34, .08);
  --shadow: 0 24px 65px rgba(4, 18, 34, .13);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, .34);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: min(1220px, calc(100vw - 44px));
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

img {
  display: block;
  max-width: 100%
}

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

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

button:disabled {
  cursor: not-allowed;
  opacity: .62
}

.container {
  width: var(--container);
  margin-inline: auto
}

.section {
  padding: 96px 0
}

.section-sm {
  padding: 58px 0
}

.section-dark {
  background: var(--navy-950);
  color: #fff
}

.section-soft {
  background: var(--soft)
}

.center {
  text-align: center
}

.center .lead {
  margin-inline: auto
}

.eyebrow {
  margin: 0 0 12px;
  font-size: .74rem;
  letter-spacing: .145em;
  text-transform: uppercase;
  font-weight: 850;
  color: var(--blue-600)
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #86b8ff
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0
}

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.08
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem)
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.55rem)
}

h3 {
  font-size: 1.2rem
}

p {
  margin-bottom: 1rem
}

.lead {
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  color: var(--muted);
  max-width: 730px
}

.lead.compact {
  font-size: 1rem;
  margin-bottom: 25px
}

.blue {
  color: var(--blue-500)
}

.muted {
  color: var(--muted)
}

.small {
  font-size: .87rem
}

.micro-note {
  font-size: .78rem;
  color: var(--muted);
  margin: 18px 0 0
}

.ui-icon {
  display: inline-block;
  flex: none;
  vertical-align: middle
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  white-space: nowrap
}

.btn:hover {
  transform: translateY(-2px)
}

.btn:focus-visible,
.icon-button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(43, 130, 255, .28);
  outline-offset: 3px
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 105, 245, .25)
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(8, 105, 245, .34)
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line)
}

.btn-secondary:hover {
  border-color: #afc2d5;
  box-shadow: var(--shadow-sm)
}

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}


.hero-quote-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    #0759ce,
    #2b82ff
  );

  border: 1px solid rgba(106, 169, 255, 0.55);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-quote-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -120%;
  width: 65%;

  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.hero-quote-btn:hover {
  background: linear-gradient(
    135deg,
    #174b7b 0%,
    #0d3153 100%
  );

  border-color: rgba(134, 184, 255, 0.9);

  box-shadow:
    0 16px 35px rgba(0, 74, 160, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transform: translateY(-3px);
}

.hero-quote-btn:hover::before {
  left: 150%;
}

.hero-quote-btn .ui-icon {
  transition: transform 0.25s ease;
}

.hero-quote-btn:hover .ui-icon {
  transform: translateX(4px);
}



.btn-catalogue {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border-color: rgba(116, 177, 255, .48);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255,255,255,.08);
}

.btn-catalogue:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border-color: rgba(150, 199, 255, .72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.btn-catalogue-prominent {
  background: #ffffff;
  color: var(--navy-900);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 14px 30px rgba(3, 11, 20, .18);
}

.btn-catalogue-prominent:hover {
  background: #f4f8fc;
  color: var(--navy-900);
  border-color: #ffffff;
  box-shadow: 0 18px 38px rgba(3, 11, 20, .24);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5)
}

.btn-sm {
  min-height: 40px;
  padding: 9px 14px;
  font-size: .86rem
}

.btn-wide {
  width: 100%
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 820;
  font-size: .9rem
}

.text-link .ui-icon {
  transition: transform .2s
}

.text-link:hover .ui-icon {
  transform: translateX(3px)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 11, 20, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff
}

.header-inner {
  width: min(1400px, calc(100vw - 44px));
  height: 104px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex: none
}

.logo-image {
  width: 132px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .32))
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: .87rem;
  font-weight: 720
}

.main-nav a {
  position: relative;
  color: #c7d2dc;
  padding: 10px 0;
  white-space: nowrap
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--blue-500);
  transition: right .22s
}

/* Pump brands showcase on the homepage */
.pump-brands-section {
  background: #fff;
}

.pump-brands-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.65fr);
  gap: 48px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(119, 165, 210, .24);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 133, 255, .24), transparent 34%),
    linear-gradient(135deg, #071522 0%, #0b2136 58%, #081726 100%);
  box-shadow: 0 28px 70px rgba(5, 24, 41, .16);
}

.pump-brands-shell:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -250px;
  border: 1px solid rgba(120, 181, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(69, 146, 238, .035), 0 0 0 148px rgba(69, 146, 238, .025);
  pointer-events: none;
}

.pump-brands-intro,
.pump-brands-listing {
  position: relative;
  z-index: 1;
}

.pump-brands-intro h2 {
  max-width: 570px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.pump-brands-intro .lead {
  color: #b7c9d9;
  font-size: 1rem;
  line-height: 1.72;
}

.pump-brands-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.pump-brands-link,
.pump-brands-link:hover {
  color: #d9eaff;
}

.pump-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pump-brands-listing {
  min-width: 0;
}

.pump-brand-disclaimer {
  margin: 16px 2px 0;
  color: #91a8bb;
  font-size: .7rem;
  line-height: 1.55;
}

.pump-brand-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.pump-brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 181, 255, .5);
  background: rgba(255, 255, 255, .11);
}

.pump-brand-name-panel {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 20px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #edf5fc 100%);
  border-bottom: 1px solid rgba(8, 36, 59, .12);
  text-align: center;
}

.pump-brand-name-panel h3 {
  max-width: 190px;
  margin: 0;
  color: #0c2a44;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pump-brand-card--enquiry .pump-brand-name-panel h3 {
  font-size: .9rem;
  letter-spacing: .035em;
}

.pump-brand-card-body {
  position: relative;
  padding: 23px 22px 25px;
}

.pump-brand-number {
  position: absolute;
  top: 24px;
  right: 21px;
  color: rgba(157, 202, 255, .58);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.pump-brand-card p {
  min-height: 102px;
  margin-bottom: 19px;
  color: #b8c9d8;
  font-size: .86rem;
  line-height: 1.62;
}

.pump-brand-card .text-link {
  color: #d9eaff;
  font-size: .78rem;
}

@media(max-width:1300px) {
  .main-nav {
    display: none
  }

  .mobile-menu-button {
    display: grid
  }

  .header-actions {
    margin-left: auto
  }
}

@media(max-width:1120px) {
  .pump-brands-shell {
    grid-template-columns: 1fr;
  }

  .pump-brands-intro {
    max-width: 760px;
  }
}

@media(max-width:800px) {
  .pump-brands-shell {
    gap: 34px;
    padding: 38px;
  }

  .pump-brand-grid {
    grid-template-columns: 1fr;
  }

  .pump-brand-card {
    display: grid;
    grid-template-columns: minmax(150px, .72fr) 1fr;
  }

  .pump-brand-name-panel {
    min-height: 100%;
    border-right: 1px solid rgba(8, 36, 59, .12);
    border-bottom: 0;
  }

  .pump-brand-card p {
    min-height: 0;
  }
}

@media(max-width:560px) {
  .pump-brands-shell {
    padding: 30px 24px;
    border-radius: 22px;
  }

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

  .pump-brands-actions .btn {
    width: 100%;
  }

  .pump-brands-link {
    padding: 8px 2px;
  }

  .pump-brand-card {
    display: block;
  }

  .pump-brand-name-panel {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 36, 59, .12);
  }
}

@media(prefers-reduced-motion:reduce) {
  .pump-brand-card {
    transition: none !important;
  }
}

/* Brands list on product pages */
.brand-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 840px;
  border-top: 1px solid var(--line);
}

.brand-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  min-height: 76px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brand-name {
  display: block;
  margin: 0;
  color: var(--navy-900);
  font-size: .94rem;
  font-weight: 820;
  line-height: 1.45;
}

.brand-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-enquiry-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 840px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft, #f6f9fc);
}

.brand-enquiry-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-enquiry-note strong {
  color: var(--navy-900);
}

.brand-enquiry-note .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-trademark-note {
  max-width: 840px;
  margin: 14px 0 0;
  color: #73879a;
  font-size: .72rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .brand-enquiry-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-item {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 20px;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .brand-item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 0;
  }
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff
}

.main-nav a:hover:after,
.main-nav a.active:after {
  right: 0
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px
}


.header-actions .header-catalogue {
  min-width: 184px;
}

.cta-panel-actions .btn-catalogue-prominent {
  font-weight: 850;
}

@media(max-width:1180px) {
  .header-actions .header-catalogue {
    min-width: 0;
    padding-inline: 13px;
  }
}
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  place-items: center
}

.mobile-panel {
  display: none;
  padding: 8px max(22px, calc((100vw - var(--container))/2)) 24px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.mobile-panel.open {
  display: grid
}

.mobile-panel a {
  padding: 12px 2px;
  color: #d9e3ec;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}


.mobile-panel .mobile-catalogue-link,
.mobile-panel .mobile-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: 800;
}

.mobile-panel .mobile-catalogue-link {
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(119, 181, 255, .28);
}
.mobile-panel .mobile-quote-link {
  color: #fff;
  border-bottom: 0;
  margin-top: 7px
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 74% 30%, #173d62 0, #0a2036 34%, var(--navy-1000) 78%)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%)
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent)
}

.hero-inner {
  position: relative;
  width: var(--container);
  margin: auto;
  padding: 78px 0 0
}

.hero-main {
  min-height: 520px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 36px
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 58px
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px
}

.hero .lead {
  color: #c5d1dc;
  max-width: 650px;
  margin-bottom: 30px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-visual:before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(35, 124, 255, .17);
  filter: blur(70px)
}

.hero-product-image {
  position: relative;
  width: 112%;
  max-width: none;
  border-radius: 28px;
  filter: drop-shadow(0 38px 45px rgba(0, 0, 0, .46));
  transform: translateX(-2%);
  animation: heroFloat 7s ease-in-out infinite
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(135deg, rgba(8, 24, 39, .98), rgba(9, 34, 56, .98));
  border: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  overflow: hidden
}

.trust-item {
  min-height: 86px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.trust-item:last-child {
  border-right: 0
}

.trust-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(106, 169, 255, .58);
  color: #86b8ff;
  background: rgba(43, 130, 255, .055);
  flex: none
}

.trust-item strong {
  display: block;
  font-size: .84rem;
  line-height: 1.25
}

.trust-item span {
  display: block;
  color: #9eb0c1;
  font-size: .72rem;
  margin-top: 3px;
  line-height: 1.3
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateX(-2%) translateY(0)
  }

  50% {
    transform: translateX(-2%) translateY(-8px)
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px
}

.section-head h2 {
  margin-bottom: 0;
  max-width: 850px
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: #aac5e1
}

.category-image {
  height: 172px;
  overflow: hidden;
  position: relative;
  background: var(--navy-900)
}

.category-image:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(2, 7, 13, .5))
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease
}

.category-card:hover .category-image img {
  transform: scale(1.05)
}

.category-number {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(4, 13, 23, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em
}

.category-body {
  padding: 21px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.category-body h3 {
  margin-bottom: 9px
}

.category-body p {
  color: var(--muted);
  font-size: .88rem
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 5px;
  color: #3a4b5c;
  font-size: .82rem
}

.mini-list li {
  display: flex;
  gap: 8px
}

.mini-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--blue-600);
  border-radius: 50%;
  margin-top: .62em;
  flex: none
}

.category-body .text-link {
  margin-top: auto
}

.help-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden
}

.help-intro,
.help-item {
  padding: 27px
}

.help-item {
  border-left: 1px solid var(--line);
  transition: background .22s
}

.help-item:hover {
  background: #f7faff
}

.help-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 16px
}

.help-item h3 {
  font-size: 1rem;
  margin-bottom: 7px
}

.help-item p {
  font-size: .84rem;
  color: var(--muted);
  margin: 0
}

.process-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(5, 1fr);
  align-items: start
}

.process-intro {
  padding-right: 46px
}

.process-intro h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem)
}

.process-step {
  position: relative;
  padding: 8px 17px 0
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 22px;
  left: 48px;
  right: -12px;
  border-top: 1px dashed rgba(134, 184, 255, .34)
}

.process-number {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-600);
  box-shadow: 0 0 0 7px var(--navy-950);
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 25px
}

.process-step h3 {
  font-size: .96rem
}

.process-step p {
  color: #9db0c0;
  font-size: .8rem;
  margin: 0
}

.quality-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  align-items: center
}

.quality-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

.quality-card {
  color: var(--ink);
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff
}

.quality-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-600);
  margin-bottom: 14px
}

.quality-card strong {
  display: block;
  margin-bottom: 5px
}

.quality-card p {
  margin: 0;
  font-size: .83rem;
  color: var(--muted)
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  background: #fff;
  transition: transform .25s, box-shadow .25s
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm)
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px
}

.value-card p {
  margin: 0;
  color: var(--muted)
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #06131f, #0a315a);
  color: #fff;
  padding: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  box-shadow: var(--shadow-dark)
}

.cta-panel:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 65px solid rgba(70, 151, 255, .08);
  border-radius: 50%;
  right: -130px;
  top: -185px
}

.cta-panel-content {
  position: relative;
  z-index: 1;
  max-width: 710px
}

.cta-panel h2 {
  margin-bottom: 15px
}

.cta-panel p {
  color: #bbcad7;
  margin: 0
}

.cta-panel-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.featured-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.featured-grid {
  grid-template-columns: repeat(5, 1fr)
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #aec7df
}

.product-card-image {
  position: relative;
  aspect-ratio: 16/10;
  display: block;
  overflow: hidden;
  background: var(--navy-900)
}

.product-card-image:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(2, 7, 13, .64));
  pointer-events: none
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease
}

.product-card:hover .product-card-image img {
  transform: scale(1.045)
}

.product-card-category,
.product-card-model {
  position: absolute;
  z-index: 2;
  top: 13px;
  padding: 6px 9px;
  border-radius: 7px;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .055em
}

.product-card-category {
  left: 13px;
  background: rgba(5, 13, 23, .78);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff
}

.product-card-model {
  right: 13px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .13)
}

.product-card-body {
  padding: 21px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.product-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 9px
}

.product-card-body p {
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 16px
}

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 99px;
  background: #f1f5f8;
  border: 1px solid #e0e7ed;
  color: #4b5e70;
  font-size: .67rem;
  font-weight: 750
}

.tag-row.large .tag {
  font-size: .74rem;
  padding: 6px 10px
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px
}

.card-actions .text-link {
  font-size: .81rem
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  color: var(--blue-600);
  transition: background .2s, color .2s, border-color .2s
}

.icon-button:hover {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600)
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy-1000), #0a2b4a);
  color: #fff;
  padding: 78px 0 70px
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent)
}

.page-hero:after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(43, 130, 255, .12);
  filter: blur(45px);
  right: -140px;
  top: -250px
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  max-width: 950px;
  margin-bottom: 20px
}

.page-hero .lead {
  color: #c5d2de
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #91a7bb;
  font-size: .8rem;
  margin-bottom: 29px
}

.breadcrumb a {
  color: #d0dce6
}

.catalogue-summary {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  border-radius: 9px;
  font-size: .78rem;
  color: #c7d5e0
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: start
}

.filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 106px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(4, 18, 34, .045)
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px
}

.filter-panel h2,
.filter-panel h3 {
  font-size: 1rem;
  margin: 0
}

.filter-toggle {
  display: none
}

.filter-options {
  display: grid;
  gap: 4px
}

.filter-option {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 7px;
  border-radius: 8px;
  color: #405264;
  font-size: .87rem;
  cursor: pointer;
  transition: background .18s
}

.filter-option:hover {
  background: #f4f7fa
}

.filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%)
}

.filter-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #a7b5c4;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: #fff;
  transition: .18s
}

.filter-check:after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  margin-top: -2px;
  transition: transform .16s
}

.filter-option input:checked+.filter-check {
  background: var(--blue-600);
  border-color: var(--blue-600)
}

.filter-option input:checked+.filter-check:after {
  transform: rotate(-45deg) scale(1)
}

.filter-option input:focus-visible+.filter-check {
  outline: 3px solid rgba(43, 130, 255, .2);
  outline-offset: 2px
}

.filter-count {
  min-width: 27px;
  text-align: center;
  padding: 2px 6px;
  border-radius: 99px;
  background: #eef3f7;
  color: #687b8c;
  font-size: .68rem;
  font-weight: 800
}

.filter-panel .btn {
  margin-top: 17px;
  width: 100%
}

.catalogue-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px
}

.search-box {
  height: 48px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background: #fff;
  flex: 1;
  max-width: 620px;
  transition: border-color .2s, box-shadow .2s
}

.search-box:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(43, 130, 255, .11)
}

.search-box input {
  border: 0;
  outline: 0;
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
  background: transparent
}

.search-box button {
  border: 0;
  background: transparent;
  color: var(--blue-600);
  width: 49px;
  display: grid;
  place-items: center
}

.result-count {
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap
}

.empty-state {
  grid-column: 1/-1;
  min-height: 330px;
  padding: 50px;
  text-align: center;
  border: 1px dashed #aebfce;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted)
}

.empty-state strong {
  font-size: 1.2rem;
  color: var(--ink)
}

.product-hero {
  padding: 52px 0 75px;
  background: linear-gradient(180deg, #f7f9fb, #eef3f7)
}

.product-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 58px;
  align-items: center
}

.product-gallery {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(5, 20, 36, .1)
}

.gallery-frame {
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-900)
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 17px 8px 2px
}

.gallery-caption>span {
  grid-row: 1/3;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-600);
  font-weight: 900;
  font-size: .75rem
}

.gallery-caption strong {
  font-size: .84rem
}

.gallery-caption small {
  color: var(--muted);
  font-size: .72rem
}

.product-info h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  margin-bottom: 13px
}

.product-model {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--blue-600);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .09em
}

.product-info .lead {
  margin-bottom: 22px
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 27px
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  gap: 42px
}

.content-section {
  margin-bottom: 58px
}

.content-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 20px
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: #fff
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px
}

.spec-table tr:nth-child(even) {
  background: #f7f9fb
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  font-size: .87rem;
  vertical-align: top
}

.spec-table th {
  width: 31%;
  color: #3d5063;
  font-weight: 820
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0
}

.standards-table td strong {
  display: block;
  color: var(--blue-700);
  margin-bottom: 4px
}

.standards-table td span {
  display: block;
  color: var(--muted);
  font-size: .8rem
}

.side-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  margin-bottom: 17px
}

.side-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-600);
  margin-bottom: 16px
}

.side-card h3 {
  margin-bottom: 14px
}

.side-card p {
  font-size: .88rem;
  color: var(--muted)
}

.side-card-accent {
  background: linear-gradient(150deg, var(--navy-900), #0b3155);
  color: #fff;
  border: 0
}

.side-card-accent p {
  color: #bdcbd7
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: .87rem;
  color: #405263
}

.check-list li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px
}

.check-list li:before {
  content: "";
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
  margin-top: 4px
}

.document-list {
  display: grid;
  gap: 9px
}

.document-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .18s, transform .18s
}

.document-row:hover {
  border-color: #a4c1df;
  transform: translateX(2px)
}

.document-row>span:first-child {
  min-width: 0
}

.document-title {
  display: block;
  font-size: .82rem
}

.document-meta {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  margin-top: 2px
}

.document-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-600);
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #e4cf86;
  border-radius: 10px;
  background: #fff9e4;
  color: #65531b;
  font-size: .81rem
}

.related-grid {
  grid-template-columns: repeat(3, 1fr)
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 34px;
  align-items: start
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm)
}

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

.form-field {
  display: grid;
  gap: 7px;
  min-width: 0
}

.form-field.full {
  grid-column: 1/-1
}

label {
  font-weight: 780;
  font-size: .82rem;
  color: #35485b
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd6e0;
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s, box-shadow .2s
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(43, 130, 255, .11)
}

textarea {
  min-height: 142px;
  resize: vertical
}

.file-input {
  padding: 17px;
  border-style: dashed;
  background: #f8fafc
}

.check-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.check-option,
.consent-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: .79rem;
  font-weight: 680;
  cursor: pointer
}

.check-option:hover,
.consent-option:hover {
  border-color: #abc2d9;
  background: #f8fbfe
}

.check-option input,
.consent-option input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 1.5px solid #9faebe;
  border-radius: 5px;
  padding: 0;
  display: grid;
  place-items: center
}

.check-option input:before,
.consent-option input:before {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  margin-top: -2px;
  transition: transform .15s
}

.check-option input:checked,
.consent-option input:checked {
  background: var(--blue-600);
  border-color: var(--blue-600)
}

.check-option input:checked:before,
.consent-option input:checked:before {
  transform: rotate(-45deg) scale(1)
}

.quote-items {
  display: grid;
  gap: 10px;
  margin-bottom: 25px
}

.quote-item {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px 36px;
  gap: 10px;
  align-items: center
}

.quote-item strong {
  font-size: .87rem;
  display: block
}

.quote-item span {
  font-size: .71rem;
  color: var(--muted)
}

.quote-item input {
  padding: 8px
}

.remove-button {
  border: 0;
  background: #f7eeee;
  color: #9d2e2e;
  border-radius: 8px;
  width: 35px;
  height: 35px;
  font-size: 1.2rem
}

.quote-empty {
  border: 1px dashed #aebdca;
  border-radius: 10px;
  padding: 20px;
  color: var(--muted);
  font-size: .87rem
}

.form-status {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 9px;
  display: none
}

.form-status.show {
  display: block
}

.form-status.success {
  background: #e9f8f1;
  color: #146345
}

.form-status.error {
  background: #fff0f0;
  color: #8c2e2e
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important
}

.contact-card {
  position: sticky;
  top: 108px;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: linear-gradient(155deg, var(--navy-900), #0a2d50);
  color: #fff;
  box-shadow: var(--shadow-dark)
}

.contact-card p {
  color: #bac9d6
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 25px 0
}

.contact-detail {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .13)
}

.contact-detail span {
  display: block;
  color: #8fa5b8;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em
}

.contact-detail strong {
  display: block;
  margin-top: 3px
}

.contact-icon-row {
  display: flex;
  align-items: center;
  gap: 10px
}

.contact-icon-row .side-card-icon {
  margin-bottom: 0
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden
}

.stat {
  background: #fff;
  padding: 28px;
  text-align: center
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--blue-600)
}

.stat span {
  font-size: .78rem;
  color: var(--muted)
}

.site-footer {
  background: var(--navy-1000);
  color: #c5d0da;
  padding: 62px 0 22px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 48px
}

.footer-logo {
  margin-bottom: 16px
}

.footer-logo .logo-image {
  width: 190px;
  height: auto;
  max-height: none
}

.footer-about p {
  max-width: 380px;
  color: #8fa1b1;
  font-size: .88rem
}

.footer-catalogue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce8f2;
  font-size: .82rem;
  font-weight: 750
}

.footer-col h4 {
  color: #fff;
  font-size: .88rem;
  margin-bottom: 17px
}

.footer-col a {
  display: block;
  color: #8fa1b1;
  padding: 4px 0;
  font-size: .83rem
}

.footer-col a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  font-size: .74rem;
  color: #738696
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 350px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 11px;
  background: #071522;
  color: #fff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .3);
  transform: translateY(120px);
  opacity: 0;
  transition: .27s
}

.toast.show {
  transform: translateY(0);
  opacity: 1
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease var(--reveal-delay, 0ms), transform .58s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media(max-width:1120px) {
  .main-nav {
    display: none
  }

  .mobile-menu-button {
    display: grid
  }

  .header-actions {
    margin-left: auto
  }

  .hero-main {
    grid-template-columns: 1fr;
    min-height: 600px
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 270px
  }

  .hero-visual {
    position: absolute;
    right: -80px;
    bottom: 70px;
    width: 65%;
    height: 400px;
    opacity: .72
  }

  .hero-product-image {
    width: 100%
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .trust-item:nth-child(n+4) {
    display: none
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .help-grid {
    grid-template-columns: 1fr 1fr
  }

  .help-intro {
    grid-column: 1/-1
  }

  .help-item {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px
  }

  .process-intro {
    grid-column: 1/-1;
    padding-right: 0;
    max-width: 760px
  }

  .process-step:nth-child(4):after {
    display: none
  }

  .catalogue-layout {
    grid-template-columns: 1fr
  }

  .filter-panel {
    position: static
  }

  .filter-header {
    margin: 0
  }

  .filter-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    color: var(--blue-600)
  }

  .filter-options,
  .filter-panel>.btn {
    display: none
  }

  .filter-panel.open .filter-options {
    display: grid;
    margin-top: 15px
  }

  .filter-panel.open>.btn {
    display: inline-flex
  }

  .product-layout {
    gap: 34px
  }

  .form-shell {
    grid-template-columns: 1fr
  }

  .contact-card {
    position: static
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr
  }

  .footer-col:last-child {
    grid-column: 2/4
  }
}

@media(max-width:800px) {
  :root {
    --container: min(100% - 32px, 1220px)
  }

  .section {
    padding: 72px 0
  }

  .section-sm {
    padding: 45px 0
  }

  .header-inner {
    height: 90px
  }

  .logo-image {
    width: 112px;
    height: auto;
    max-height: 82px
  }

  .header-actions .btn {
    display: none
  }

  .hero-inner {
    padding-top: 58px
  }

  .hero-main {
    min-height: auto;
    display: block
  }

  .hero-copy {
    padding-bottom: 285px
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.3rem)
  }

  .hero-visual {
    width: 95%;
    right: -24%;
    bottom: 98px;
    height: 280px
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    border-radius: 15px 15px 0 0
  }

  .trust-item {
    min-height: 78px
  }

  .trust-item:nth-child(3) {
    display: flex
  }

  .trust-item:nth-child(n+4) {
    display: none
  }

  .section-head {
    align-items: start;
    flex-direction: column
  }

  .category-grid,
  .featured-grid,
  .product-grid,
  .value-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr
  }

  .quality-band,
  .content-grid,
  .product-layout,
  .product-content-grid {
    grid-template-columns: 1fr
  }

  .quality-card-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-step:nth-child(3):after {
    display: none
  }

  .cta-panel {
    padding: 40px;
    align-items: flex-start;
    flex-direction: column
  }

  .catalogue-top {
    align-items: stretch;
    flex-direction: column
  }

  .search-box {
    max-width: none
  }

  .product-gallery {
    max-width: 650px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .form-field.full {
    grid-column: auto
  }

  .check-option-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-about {
    grid-column: 1/-1
  }

  .footer-col:last-child {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  :root {
    --container: calc(100% - 26px)
  }

  .section {
    padding: 62px 0
  }

  .hero-copy {
    padding-bottom: 240px
  }

  .hero-actions {
    display: grid
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-visual {
    width: 112%;
    right: -40%;
    bottom: 95px;
    height: 235px
  }

  .trust-strip {
    grid-template-columns: 1fr
  }

  .trust-item:nth-child(n+3) {
    display: none
  }

  .category-grid,
  .featured-grid,
  .product-grid,
  .value-grid,
  .quality-card-grid,
  .related-grid {
    grid-template-columns: 1fr
  }

  .category-image {
    height: 205px
  }

  .help-grid {
    grid-template-columns: 1fr
  }

  .help-intro {
    grid-column: auto
  }

  .help-item {
    border-top: 1px solid var(--line)
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .process-step:after {
    display: none !important
  }

  .process-number {
    margin-bottom: 16px
  }

  .cta-panel {
    padding: 32px 25px
  }

  .cta-panel-actions {
    display: grid;
    width: 100%
  }

  .cta-panel-actions .btn {
    width: 100%
  }

  .page-hero {
    padding: 60px 0 54px
  }

  .catalogue-summary {
    display: grid
  }

  .product-hero {
    padding: 36px 0 55px
  }

  .product-info h1 {
    font-size: 2.55rem
  }

  .product-actions {
    display: grid
  }

  .product-actions .btn {
    width: 100%
  }

  .form-card {
    padding: 24px 18px
  }

  .quote-item {
    grid-template-columns: 1fr 70px 35px
  }

  .spec-table {
    min-width: 520px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-about {
    grid-column: auto
  }

  .footer-col:last-child {
    grid-column: auto
  }

  .footer-logo .logo-image {
    width: 175px
  }

  .toast {
    left: 13px;
    right: 13px;
    bottom: 13px;
    max-width: none
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation: none !important;
    transition-duration: .01ms !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* Card rhythm safeguards: keep mixed catalogue copy aligned without clipping. */
.product-card-body h3 {
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

.product-card-body>p {
  min-height: 4.35em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden
}

.product-card .tag-row {
  min-height: 58px;
  align-content: flex-start
}

@media(max-width:560px) {

  .product-card-body h3,
  .product-card-body>p {
    min-height: 0
  }

  .product-card .tag-row {
    min-height: 0
  }
}

/* Gated catalogue download — v3.9.5 precision icon treatment */
.catalogue-download-hero .lead {
  max-width: 820px
}

.catalogue-request-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(38, 126, 231, .055), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #fbfcfe 100%)
}

.catalogue-download-layout {
  display: grid;
  grid-template-columns: minmax(580px, 1fr) minmax(540px, 1.03fr);
  gap: clamp(42px, 4.4vw, 72px);
  align-items: start
}

.catalogue-preview {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(315px, 1.22fr);
  gap: clamp(28px, 2.7vw, 42px);
  align-items: start;
  min-width: 0;
  padding: 14px 0 4px
}

.catalogue-cover-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(20, 49, 79, .16);
  border-radius: 20px;
  background: #061321;
  box-shadow:
    0 24px 50px rgba(5, 24, 41, .18),
    0 4px 12px rgba(5, 24, 41, .08)
}

.catalogue-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  pointer-events: none
}

.catalogue-cover-wrap img {
  display: block;
  width: 100%;
  height: auto
}

.catalogue-preview-copy {
  min-width: 0;
  padding-top: 4px
}

.catalogue-preview-copy .eyebrow,
.catalogue-form-header .eyebrow {
  margin-bottom: 15px;
  color: #0968df
}

.catalogue-preview-copy h2 {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -.04em
}

.catalogue-benefits {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 22px;
  list-style: none
}

.catalogue-benefits li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 10px 0 13px;
  border-bottom: 1px solid rgba(24, 59, 92, .11)
}

.catalogue-benefits li:first-child {
  padding-top: 0
}

.catalogue-benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  overflow: hidden;
  border: 1px solid rgba(98, 119, 143, .38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 25% 16%, rgba(255, 255, 255, .98), transparent 38%),
    linear-gradient(145deg, #fbfdff 0%, #edf2f7 45%, #d2dbe5 100%);
  box-shadow:
    0 10px 19px rgba(6, 31, 54, .13),
    inset 0 1px 0 #fff,
    inset 0 -7px 14px rgba(59, 80, 104, .08)
}

.catalogue-benefit-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 10px;
  pointer-events: none
}

.catalogue-benefit-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 72, 150, .24), transparent)
}

.catalogue-benefit-icon img {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .9))
}

.catalogue-benefit-copy {
  display: block;
  min-width: 0
}

.catalogue-benefit-copy strong,
.catalogue-benefit-copy small {
  display: block
}

.catalogue-benefit-copy strong {
  margin-bottom: 5px;
  color: #0b2035;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.015em
}

.catalogue-benefit-copy small {
  max-width: 390px;
  color: #536b81;
  font-size: .78rem;
  font-weight: 520;
  line-height: 1.55
}

.catalogue-technical-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(24, 59, 92, .13);
  color: #526b81;
  font-size: .74rem;
  line-height: 1.55
}

.catalogue-technical-note [data-icon] {
  color: #103f84
}

.catalogue-gate-form {
  padding: clamp(34px, 3.3vw, 48px);
  border: 1px solid rgba(111, 142, 174, .23);
  border-radius: 27px;
  background: rgba(255, 255, 255, .97);
  box-shadow:
    0 25px 60px rgba(5, 24, 41, .105),
    0 4px 12px rgba(5, 24, 41, .035)
}

.catalogue-form-header {
  max-width: 670px;
  margin-bottom: 27px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line)
}

.catalogue-form-header .eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: #1577f2
}

.catalogue-form-header h2 {
  max-width: 650px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.1vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -.04em
}

.catalogue-form-header .muted {
  max-width: 630px;
  margin-bottom: 0;
  color: #5e7388;
  font-size: .98rem;
  line-height: 1.65
}

.catalogue-gate-form .form-grid {
  gap: 16px 18px
}

.catalogue-gate-form input:not([type="checkbox"]):not([type="radio"]),
.catalogue-gate-form select {
  min-height: 52px;
  border-color: #cad7e4;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(6, 31, 54, .025)
}

.catalogue-gate-form input:not([type="checkbox"]):not([type="radio"]):focus,
.catalogue-gate-form select:focus {
  border-color: #2c83ec;
  box-shadow: 0 0 0 3px rgba(44, 131, 236, .13)
}

.catalogue-gate-form .consent-option {
  align-items: start;
  min-height: auto;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #586f84;
  font-size: .76rem;
  font-weight: 520;
  line-height: 1.55
}

.catalogue-gate-form .consent-option:hover {
  background: #f7faff
}

.catalogue-gate-form .consent-option input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px
}

.inline-link {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px
}

.consent-option-optional {
  background: transparent
}

.catalogue-submit-button {
  justify-content: center;
  min-height: 55px;
  margin-top: 4px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(17, 104, 224, .22)
}

@media(max-width:1240px) {
  .catalogue-download-layout {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .catalogue-preview,
  .catalogue-gate-form {
    width: 100%;
    max-width: 980px;
    margin-inline: auto
  }

  .catalogue-preview {
    position: static;
    grid-template-columns: minmax(250px, .68fr) minmax(360px, 1.32fr)
  }
}

@media(max-width:760px) {
  .catalogue-preview {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0
  }

  .catalogue-cover-wrap {
    width: min(100%, 310px);
    margin-inline: auto
  }

  .catalogue-preview-copy h2 {
    max-width: 600px
  }

  .catalogue-gate-form {
    padding: 31px 24px
  }
}

@media(max-width:560px) {
  .catalogue-benefits li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding-block: 10px 12px
  }

  .catalogue-benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 13px
  }

  .catalogue-benefit-icon img {
    width: 38px;
    height: 38px
  }

  .catalogue-benefit-copy strong {
    font-size: .91rem
  }

  .catalogue-benefit-copy small {
    font-size: .73rem
  }

  .catalogue-preview-copy h2,
  .catalogue-form-header h2 {
    font-size: 2rem
  }

  .catalogue-gate-form {
    padding: 27px 18px
  }
}

.legal-content {
  max-width: 850px
}

.legal-content h2 {
  font-size: 1.65rem;
  margin-top: 38px;
  margin-bottom: 10px
}

.legal-content p {
  color: var(--ink-2)
}

/* Product page mobile containment and responsive technical-data cards */
.product-layout,
.product-content-grid,
.product-layout>*,
.product-content-grid>*,
.content-section,
.product-info,
.product-gallery,
.table-wrap {
  min-width: 0;
  max-width: 100%;
}

@media(max-width:640px) {

  html,
  body {
    overflow-x: clip
  }

  .product-layout {
    gap: 26px
  }

  .product-gallery {
    padding: 10px;
    border-radius: 19px
  }

  .gallery-frame {
    border-radius: 13px
  }

  .gallery-caption {
    padding: 14px 5px 3px
  }

  .product-info h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.7rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .product-info .lead {
    font-size: .98rem;
    line-height: 1.62
  }

  .tag-row.large {
    gap: 6px
  }

  .tag-row.large .tag {
    font-size: .7rem;
    padding: 5px 8px
  }

  .product-actions {
    gap: 10px
  }

  .product-actions .btn {
    min-width: 0;
    white-space: normal;
    text-align: center
  }

  .content-section {
    margin-bottom: 46px
  }

  .content-section h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  /* On narrow screens, technical tables become readable stacked records.
     This removes the 520px min-width that previously widened the whole page. */
  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent
  }

  .spec-table {
    display: block;
    width: 100%;
    min-width: 0;
    border-collapse: separate
  }

  .spec-table tbody {
    display: grid;
    gap: 10px;
    width: 100%
  }

  .spec-table tr,
  .spec-table tr:nth-child(even) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(4, 18, 34, .035);
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .spec-table th {
    background: #f4f7fa;
    color: #43576b;
    font-size: .7rem;
    line-height: 1.35;
    letter-spacing: .055em;
    text-transform: uppercase;
  }

  .spec-table td {
    font-size: .86rem;
    line-height: 1.55
  }

  .standards-table td strong {
    font-size: .88rem;
    line-height: 1.4
  }

  .standards-table td span {
    font-size: .77rem;
    line-height: 1.5
  }

  .notice {
    padding: 13px 14px;
    overflow-wrap: anywhere
  }

  .side-card {
    padding: 20px
  }

  .document-row {
    align-items: flex-start;
    padding: 12px
  }

  .document-action {
    padding-top: 1px
  }
}

/* ================================================================
   Rasonyx v3.4 — premium responsive polish
   ================================================================ */
.header-quote .ui-icon {
  width: 16px;
  height: 16px;
  transition: transform .22s ease
}

.header-quote:hover .ui-icon {
  transform: translateX(3px)
}

.hero-product-image,
.category-image img,
.product-card-image img,
.gallery-frame img {
  image-rendering: auto;
  backface-visibility: hidden;
  filter: contrast(1.045) saturate(1.035);
}

.hero-product-image {
  width: min(112%, 980px);
  height: auto;
  object-fit: contain;
  filter: contrast(1.055) saturate(1.04) drop-shadow(0 38px 45px rgba(0, 0, 0, .46));
}

.trust-strip {
  box-shadow: 0 -16px 48px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.trust-item {
  position: relative;
  min-width: 0;
  transition: background .24s ease;
}

.trust-item:hover {
  background: rgba(47, 133, 255, .055)
}

.trust-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(116, 180, 255, .5);
  background: linear-gradient(145deg, rgba(44, 126, 233, .17), rgba(5, 21, 37, .62));
  color: #a8cfff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 10px 24px rgba(0, 0, 0, .16);
  overflow: hidden;
}

.trust-icon:after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(161, 205, 255, .12);
  border-radius: 10px;
  pointer-events: none;
}

.trust-icon .ui-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px
}

.trust-item strong {
  font-size: .86rem;
  letter-spacing: -.015em
}

.trust-item>div {
  min-width: 0
}

#industries {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7fb 0, #edf3f9 100%)
}

#industries:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image: linear-gradient(rgba(12, 47, 82, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 47, 82, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

#industries .container {
  position: relative;
  z-index: 1
}

.value-grid {
  gap: 20px
}

.value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(91, 145, 199, .25);
  background: linear-gradient(145deg, #071a2b 0, #0a2b49 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(8, 31, 51, .10), inset 0 1px 0 rgba(255, 255, 255, .055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -74px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 133, 255, .25), rgba(47, 133, 255, 0) 69%);
  transition: transform .4s ease;
}

.value-card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1e78f0, #65a9ff, transparent 78%);
  opacity: .88;
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(102, 173, 255, .46);
  box-shadow: 0 25px 60px rgba(8, 31, 51, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.value-card:hover:before {
  transform: scale(1.16)
}

.value-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  margin-bottom: 24px;
  color: #c2ddff;
  background: linear-gradient(145deg, rgba(42, 132, 255, .30), rgba(6, 33, 59, .7));
  border: 1px solid rgba(120, 184, 255, .46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 14px 30px rgba(0, 0, 0, .20);
}

.value-icon:after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 12px;
  border: 1px solid rgba(185, 218, 255, .13);
}

.value-icon .ui-icon {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px
}

.value-card h3 {
  font-size: 1.24rem;
  margin-bottom: 11px;
  color: #fff
}

.value-card p {
  color: #b9c9d8;
  line-height: 1.7
}

.value-card:nth-child(2n) .value-icon {
  color: #bce8ff;
  background: linear-gradient(145deg, rgba(25, 151, 210, .29), rgba(6, 33, 59, .7))
}

.value-card:nth-child(3n) .value-icon {
  color: #d4e2ff;
  background: linear-gradient(145deg, rgba(84, 112, 225, .28), rgba(6, 33, 59, .7))
}

@media(max-width:800px) {
  .hero-inner {
    padding-top: 44px
  }

  .hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
    align-items: start;
  }

  .hero-copy {
    padding-bottom: 0;
    max-width: 680px;
  }

  .hero-copy .lead {
    max-width: 610px
  }

  .hero-visual {
    position: relative;
    inset: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    display: block;
  }

  .hero-visual:before {
    width: 72%;
    height: 72%;
    left: 14%;
    top: 12%;
    filter: blur(52px);
  }

  .hero-product-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none !important;
    animation: none !important;
    border-radius: 22px;
    filter: contrast(1.055) saturate(1.04) drop-shadow(0 24px 34px rgba(0, 0, 0, .38));
  }

  .trust-strip {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px 18px 0 0;
    overflow: hidden;
  }

  .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(n+4) {
    display: flex !important
  }

  .trust-item {
    min-height: 94px;
    padding: 17px 16px;
    border-right: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .trust-item:nth-child(2n) {
    border-right: 0
  }

  .trust-item:nth-child(5) {
    grid-column: 1/-1;
    border-bottom: 0;
    border-right: 0
  }

  .value-card {
    min-height: 230px
  }
}

@media(max-width:560px) {
  .hero-inner {
    padding-top: 30px
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.45rem);
    line-height: 1.02;
    margin-bottom: 20px
  }

  .hero .lead {
    font-size: .98rem;
    line-height: 1.65;
    margin-bottom: 25px
  }

  .hero-actions {
    gap: 10px
  }

  .hero-visual {
    margin-top: 4px
  }

  .hero-product-image {
    border-radius: 17px
  }

  .trust-strip {
    margin-top: 18px
  }

  .trust-item {
    min-height: 94px;
    padding: 16px 13px;
    gap: 11px
  }

  .trust-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px
  }

  .trust-icon .ui-icon {
    width: 21px;
    height: 21px
  }

  .trust-item strong {
    font-size: .8rem
  }

  .trust-item span {
    font-size: .68rem;
    line-height: 1.38
  }

  .value-card {
    min-height: 0;
    padding: 26px 24px
  }

  .value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 20px
  }
}

@media(max-width:370px) {
  .trust-strip {
    grid-template-columns: 1fr
  }

  .trust-item,
  .trust-item:nth-child(2n),
  .trust-item:nth-child(5) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10)
  }

  .trust-item:last-child {
    border-bottom: 0
  }
}

@media(prefers-reduced-motion:reduce) {

  .trust-item,
  .value-card,
  .value-card:before,
  .header-quote .ui-icon {
    transition: none !important
  }
}
/* Text treatment for pump manufacturers without a supplied logo asset */



/* Rasonyx v3.7 — SEO, accessibility and lead-conversion additions */
.skip-link{position:fixed;left:16px;top:-80px;z-index:9999;background:#fff;color:#061426;padding:12px 18px;border-radius:8px;font-weight:800;box-shadow:0 10px 30px rgba(0,0,0,.28);transition:top .18s ease}.skip-link:focus{top:16px}.menu-open{overflow:hidden}.category-quick-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}.category-quick-links a,.seo-service-links a{display:inline-flex;align-items:center;min-height:42px;padding:9px 14px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--ink);font-weight:750;font-size:.86rem;transition:.2s ease}.category-quick-links a:hover,.seo-service-links a:hover{border-color:var(--blue-500);color:var(--blue-600);transform:translateY(-1px)}.seo-market-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:48px;align-items:center}.seo-service-links{display:grid;grid-template-columns:1fr;gap:10px}.seo-service-links a{border-radius:12px;justify-content:space-between}.seo-service-links a:after{content:'→';color:var(--blue-500)}.faq-shell{max-width:980px}.faq-list{display:grid;gap:12px}.faq-item{border:1px solid var(--line);border-radius:14px;background:#fff;overflow:hidden}.faq-item summary{cursor:pointer;padding:20px 54px 20px 22px;font-weight:800;color:var(--ink);position:relative}.faq-item summary:after{content:'+';position:absolute;right:22px;top:50%;transform:translateY(-50%);font-size:1.4rem;color:var(--blue-500)}.faq-item[open] summary:after{content:'–'}.faq-item p{padding:0 22px 22px;margin:0;color:var(--muted);max-width:850px}.contact-inline-link{display:block;margin-top:18px;text-align:center;font-weight:800;color:var(--blue-700)}.product-lead-strip{background:#071522;color:#fff;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}.product-lead-strip .container{min-height:84px;display:flex;align-items:center;justify-content:space-between;gap:24px}.product-lead-strip strong,.product-lead-strip span{display:block}.product-lead-strip span{color:#b9c9dc;margin-top:3px}.quote-guidance{margin:24px 0;padding:18px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:rgba(255,255,255,.045)}.quote-guidance strong{display:block;margin-bottom:10px}.quote-guidance .mini-list{margin:0}.product-card[hidden]{display:none!important}
@media(max-width:900px){.seo-market-grid{grid-template-columns:1fr}.product-lead-strip .container{padding-top:18px;padding-bottom:18px;align-items:flex-start}.product-lead-strip .btn{flex:none}}
@media(max-width:620px){.product-lead-strip .container{display:grid}.product-lead-strip .btn{width:100%}.category-quick-links a{flex:1 1 45%;justify-content:center;text-align:center}.faq-item summary{padding:18px 48px 18px 18px}.faq-item p{padding:0 18px 18px}}

/* Irish Steel membership trust presentation - v3.8.2 */
.membership-trust-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.membership-trust-card {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(190px, 230px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #d7e1e8;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 22px 58px rgba(6, 20, 38, .09);
}

.membership-trust-badge {
  display: grid;
  place-items: center;
}

.membership-trust-badge img {
  display: block;
  width: min(100%, 210px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(24, 81, 85, .16);
}

.membership-trust-copy h2,
.membership-about-copy h2 {
  margin-bottom: 14px;
  color: var(--ink);
}

.membership-trust-copy p:not(.eyebrow),
.membership-about-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.membership-trust-meta {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 22px 0 22px 30px;
  border-left: 1px solid var(--line);
}

.membership-trust-meta-icon,
.membership-about-meta-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--blue-700);
}

.membership-trust-meta-icon svg,
.membership-about-meta-icon svg {
  width: 24px;
  height: 24px;
}

.membership-trust-meta-label,
.membership-about-meta span:not(.membership-about-meta-icon) {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.membership-trust-meta strong,
.membership-about-meta strong {
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: .01em;
}

.membership-about-section {
  background: #fff;
}

.membership-about-panel {
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #d7e1e8;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f7fbfb 0%, #f4f7fb 100%);
  box-shadow: var(--shadow-sm);
}

.membership-about-badge {
  display: grid;
  place-items: center;
}

.membership-about-badge img {
  display: block;
  width: min(100%, 200px);
  height: auto;
  border-radius: 10px;
}

.membership-about-meta {
  display: grid;
  grid-template-columns: 38px auto 1fr;
  gap: 10px 12px;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #d7e1e8;
}

.membership-about-meta-icon {
  grid-row: auto;
  width: 38px;
  height: 38px;
}

@media (max-width: 980px) {
  .membership-trust-card {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  }

  .membership-trust-meta {
    grid-column: 2;
    width: fit-content;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .membership-trust-card,
  .membership-about-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .membership-trust-badge,
  .membership-about-badge {
    justify-content: start;
  }

  .membership-trust-badge img,
  .membership-about-badge img {
    width: min(100%, 190px);
  }

  .membership-trust-meta {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .membership-trust-card,
  .membership-about-panel {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .membership-trust-copy p:not(.eyebrow),
  .membership-about-copy p:not(.eyebrow) {
    font-size: .96rem;
  }
}

/* v3.8.3 — enquiry guidance contrast */
.contact-card .quote-guidance {
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .22);
}

.contact-card .quote-guidance strong {
  color: #ffffff;
}

.contact-card .quote-guidance .mini-list,
.contact-card .quote-guidance .mini-list li {
  color: #d8e4ef;
}

.contact-card .quote-guidance .mini-list {
  gap: 8px;
  font-size: .86rem;
  line-height: 1.5;
}

.contact-card .quote-guidance .mini-list li::before {
  background: #4b9fff;
  box-shadow: 0 0 0 3px rgba(75, 159, 255, .12);
}


/* Rasonyx v3.8.6 - readable brand lockup and responsive homepage hero */
.site-header .header-inner {
  width: min(1480px, calc(100vw - 48px));
  height: 104px;
  gap: 20px;
}

.site-header .logo-brand {
  width: 210px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 2px;
  line-height: 1;
}

.site-header .logo-image-header {
  display: block;
  width: 132px;
  height: auto;
  max-height: none;
  margin: 0 auto;
}

.site-header .logo-tagline {
  display: block;
  color: #8fb6e6;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .035em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .main-nav {
  gap: clamp(15px, 1.2vw, 25px);
  font-size: .84rem;
}

.hero-inner {
  width: min(1460px, calc(100vw - 64px));
  padding-top: clamp(46px, 5vh, 68px);
}

.hero-main {
  grid-template-columns: minmax(0, .47fr) minmax(0, .53fr);
  gap: clamp(44px, 4vw, 72px);
  min-height: clamp(610px, calc(100vh - 220px), 735px);
  align-items: center;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  padding-bottom: 18px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.65rem, 4.1vw, 4.8rem);
  line-height: .99;
  letter-spacing: -.052em;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  margin-top: 12px;
  white-space: nowrap;
}

.hero .lead {
  max-width: 625px;
  margin-bottom: 30px;
  font-size: clamp(1.02rem, 1.05vw, 1.16rem);
  line-height: 1.66;
}

.hero-actions {
  gap: 11px;
}

.hero-visual {
  position: relative;
  inset: auto;
  width: 100%;
  min-width: 0;
  height: auto;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.hero-visual:before {
  width: min(520px, 72%);
  height: min(520px, 72%);
}

.hero-product-image {
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  transform: none;
  animation: none;
  filter: contrast(1.045) saturate(1.035) drop-shadow(0 34px 42px rgba(0, 0, 0, .42));
}

.trust-strip {
  margin-top: 22px;
}

@media (max-width: 1320px) {
  .site-header .main-nav {
    display: none;
  }

  .site-header .mobile-menu-button {
    display: grid;
  }

  .site-header .header-actions {
    margin-left: auto;
  }

  .hero-inner {
    width: min(1220px, calc(100vw - 48px));
  }

  .hero-main {
    grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 5vw, 4.25rem);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    width: var(--container);
    padding-top: 48px;
  }

  .hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    min-height: 0;
    align-items: start;
  }

  .hero-copy {
    max-width: 780px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.15rem, 7.6vw, 4.45rem);
  }

  .hero-title-accent {
    white-space: normal;
  }

  .hero-visual {
    position: relative;
    inset: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .hero-product-image {
    max-width: 900px;
  }
}

@media (max-width: 800px) {
  .site-header .header-inner {
    width: min(100% - 28px, 1220px);
    height: 88px;
  }

  .site-header .logo-brand {
    width: 155px;
    gap: 1px;
  }

  .site-header .logo-image-header {
    width: 106px;
  }

  .site-header .logo-tagline {
    font-size: 6.7px;
    letter-spacing: .025em;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 9vw, 4rem);
  }

  .hero-product-image {
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .site-header .header-inner {
    height: 82px;
  }

  .site-header .logo-brand {
    width: 145px;
  }

  .site-header .logo-image-header {
    width: 99px;
  }

  .site-header .logo-tagline {
    font-size: 6.2px;
    letter-spacing: .015em;
  }

  .hero-inner {
    padding-top: 30px;
  }

  .hero-main {
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    margin-bottom: 20px;
  }

  .hero-title-accent {
    margin-top: 9px;
  }

  .hero .lead {
    font-size: .98rem;
    line-height: 1.62;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-product-image {
    border-radius: 17px;
  }
}


/* ================================================================
   Rasonyx v3.8.7 — static wide hero
   Full-width desktop composition, reduced side gutters and no motion.
   ================================================================ */
.hero {
  background:
    linear-gradient(90deg, rgba(1, 9, 17, .98) 0%, rgba(5, 24, 42, .96) 43%, rgba(9, 42, 70, .93) 100%);
}

.hero:before {
  opacity: .72;
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.78) 70%, transparent 100%);
}

.hero-inner {
  width: min(1720px, calc(100vw - 32px));
  padding-top: clamp(44px, 5vh, 68px);
}

.hero-main {
  grid-template-columns: minmax(500px, .43fr) minmax(0, .57fr);
  gap: clamp(20px, 2.2vw, 42px);
  min-height: clamp(630px, calc(100vh - 175px), 760px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 18px 0 42px clamp(18px, 2.6vw, 44px);
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.55rem, 4.25vw, 5rem);
  line-height: .98;
  letter-spacing: -.052em;
}

.hero-title-accent {
  margin-top: 10px;
}

.hero .lead {
  max-width: 630px;
  margin-bottom: 29px;
}

.hero-actions {
  gap: 14px;
}

.hero-actions .btn {
  min-width: 188px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  width: calc(100% + 16px);
  margin-right: -16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero-visual:before {
  display: none;
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-product-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 630px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
  animation: none !important;
  transform: none !important;
  filter: contrast(1.07) saturate(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 5%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 5%, #000 18%, #000 100%);
}

.trust-strip {
  width: calc(100% - clamp(36px, 5.2vw, 88px));
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
}

@media (max-width: 1320px) {
  .hero-inner {
    width: min(1260px, calc(100vw - 28px));
  }

  .hero-main {
    grid-template-columns: minmax(450px, .46fr) minmax(0, .54fr);
    gap: 18px;
  }

  .hero-copy {
    padding-left: 24px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 5.15vw, 4.45rem);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    width: min(100% - 28px, 920px);
    padding-top: 42px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

  .hero-copy {
    max-width: 800px;
    padding: 0 6px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual {
    width: calc(100% + 28px);
    height: auto;
    margin: 0 -14px;
    border-radius: 20px 20px 0 0;
  }

  .hero-product-image {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.76) 0%, #000 15%, #000 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.76) 0%, #000 15%, #000 100%);
  }

  .trust-strip {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(100% - 20px, 520px);
    padding-top: 28px;
  }

  .hero-copy {
    padding: 0 3px;
  }

  .hero h1 {
    font-size: clamp(2.32rem, 10.7vw, 3.15rem);
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .hero-visual {
    width: calc(100% + 20px);
    margin: 0 -10px;
    border-radius: 16px 16px 0 0;
  }

  .hero-product-image {
    aspect-ratio: 4 / 3;
    border-radius: 16px 16px 0 0;
    object-position: 55% bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .hero-product-image {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* Premium trust icons for homepage commitment strip */
.trust-strip {
  gap: 0;
}

.trust-item {
  gap: 16px;
}

.trust-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(122, 181, 255, .52);
  background:
    radial-gradient(circle at 30% 25%, rgba(104, 171, 255, .34), transparent 40%),
    linear-gradient(145deg, rgba(15, 54, 95, .98), rgba(7, 24, 43, .98));
  color: #f4f9ff;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .18),
    inset 0 -10px 18px rgba(0, 0, 0, .16);
  overflow: hidden;
  flex: none;
}

.trust-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 12px;
  border: 1px solid rgba(204, 229, 255, .12);
  pointer-events: none;
}

.trust-icon .ui-icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  color: #ffffff;
  stroke: currentColor;
  stroke-width: 2.05;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .28));
}

.trust-item:hover .trust-icon {
  border-color: rgba(153, 204, 255, .82);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .22),
    inset 0 -12px 20px rgba(0, 0, 0, .18);
}

.trust-item strong {
  color: #f7fbff;
  font-weight: 820;
}

.trust-item span {
  color: #b5c6d6;
}

@media(max-width:560px) {
  .trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
  .trust-icon .ui-icon {
    width: 24px;
    height: 24px;
  }
}


/* v3.8.9 — Global width, rhythm and premium icon visibility */
:root {
  --container: min(1680px, calc(100vw - 28px));
}

/* Use more of the screen across the full site, not just the homepage hero. */
.container,
.header-inner,
.hero-inner {
  width: var(--container);
}

/* Tighter section rhythm prevents doubled top/bottom padding between sections. */
.section {
  padding-block: 72px;
}

.section-sm {
  padding-block: 40px;
}

main > .section-sm + .section {
  padding-top: 48px;
}

main > .section + .section-sm {
  padding-top: 34px;
}

main > .section + .section {
  padding-top: 62px;
}

/* Wider, less boxed layouts on internal pages. */
.page-hero .container,
.product-hero .container,
.catalogue-download-layout,
.content-grid,
.product-content-grid,
.quality-band,
.help-grid,
.value-grid,
.stat-grid {
  max-width: none;
}

.page-hero {
  padding-block: 64px 58px;
}

.product-hero {
  padding-block: 44px 60px;
}

.content-section {
  margin-bottom: 44px;
}

/* Premium icon tiles used throughout homepage and internal pages. */
.trust-icon,
.help-item-icon,
.quality-card-icon,
.value-icon,
.side-card-icon,
.membership-about-meta-icon,
.membership-trust-meta-icon {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 178, 255, .55);
  background:
    radial-gradient(circle at 30% 22%, rgba(105, 176, 255, .34), transparent 42%),
    linear-gradient(145deg, #123e69 0%, #0a2745 52%, #071a2e 100%);
  color: #fff;
  box-shadow:
    0 13px 28px rgba(5, 23, 40, .2),
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 -12px 22px rgba(0, 0, 0, .16);
  overflow: hidden;
}

.trust-icon::before,
.help-item-icon::before,
.quality-card-icon::before,
.value-icon::before,
.side-card-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(211, 233, 255, .13);
  border-radius: inherit;
  pointer-events: none;
}

.trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.help-item-icon,
.quality-card-icon,
.side-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.trust-icon .ui-icon,
.help-item-icon .ui-icon,
.quality-card-icon .ui-icon,
.value-icon .ui-icon,
.side-card-icon .ui-icon,
.membership-about-meta-icon .ui-icon,
.membership-trust-meta-icon .ui-icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 25px !important;
  height: 25px !important;
  color: #fff !important;
  stroke: #fff !important;
  stroke-width: 2.05;
  opacity: 1 !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .32));
}

.trust-item {
  gap: 16px;
}

.trust-item strong {
  color: #fff;
}

.trust-item span {
  color: #b8c9d8;
}

.help-item-icon {
  margin-bottom: 18px;
}

/* Reduce oversized empty areas around the homepage help and catalogue blocks. */
.help-grid {
  margin-block: 0;
}

.section-sm.section-soft + .section .section-head {
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .section {
    padding-block: 60px;
  }

  .section-sm {
    padding-block: 34px;
  }

  main > .section-sm + .section {
    padding-top: 42px;
  }

  .page-hero {
    padding-block: 54px 50px;
  }

  .product-hero {
    padding-block: 38px 52px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: calc(100% - 22px);
  }

  .section {
    padding-block: 52px;
  }

  .section-sm {
    padding-block: 30px;
  }

  main > .section-sm + .section,
  main > .section + .section,
  main > .section + .section-sm {
    padding-top: 38px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 18px);
  }

  .section {
    padding-block: 44px;
  }

  .section-sm {
    padding-block: 26px;
  }

  main > .section-sm + .section,
  main > .section + .section,
  main > .section + .section-sm {
    padding-top: 32px;
  }

  .trust-icon,
  .value-icon {
    width: 48px;
    height: 48px;
  }

  .help-item-icon,
  .quality-card-icon,
  .side-card-icon {
    width: 44px;
    height: 44px;
  }
}


/* Server-rendered premium icon assets remain visible even before JavaScript hydration. */
.premium-static-icon {
  display: grid;
  place-items: center;
}
.premium-icon-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
@media(max-width:560px){.premium-icon-img{width:25px;height:25px}}

/* RFQ multiple-file summary */
.file-selection-summary {
  margin-top: .55rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.file-selection-summary strong {
  color: var(--ink, #0b1728);
}

/* ================================================================
   Rasonyx v3.9.1 — unified alignment grid
   Header, hero, trust strip and page sections share one desktop grid.
   ================================================================ */
:root {
  --container: min(1536px, calc(100vw - 48px));
}

.container,
.site-header .header-inner,
.hero-inner {
  width: var(--container);
  margin-inline: auto;
}

/* Align the visible brand mark with the shared left grid line. */
.site-header .logo-brand {
  align-items: flex-start;
}

.site-header .logo-image-header {
  margin-inline: 0;
}

.site-header .logo-tagline {
  text-align: left;
}

/* Remove the extra hero-only inset and right-side overflow. */
.hero-copy {
  max-width: none;
  padding: 18px 0 42px;
}

.hero-visual {
  width: 100%;
  margin-right: 0;
}

.trust-strip {
  width: 100%;
  margin-inline: 0;
}

@media (max-width: 1320px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 980px) {
  .hero-copy {
    padding-inline: 0;
  }

  .hero-visual {
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 800px) {
  :root {
    --container: calc(100% - 22px);
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 18px);
  }

  .hero-copy {
    padding-inline: 0;
  }

  .hero-visual {
    width: 100%;
    margin-inline: 0;
  }
}

/* Preserve the intended three-line desktop headline while retaining the grid. */
@media (min-width: 1321px) {
  .hero-main {
    grid-template-columns: minmax(0, .45fr) minmax(0, .55fr);
    gap: clamp(24px, 2vw, 36px);
  }
}

/* ================================================================
   Rasonyx v3.9.6 — catalogue desktop composition alignment
   Matches the approved reference proportions while preserving the
   existing responsive form, accessibility and catalogue workflow.
   ================================================================ */
@media (min-width: 1301px) {
  .catalogue-request-section {
    padding-block: 62px 72px;
  }

  .catalogue-download-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(620px, .96fr);
    gap: clamp(34px, 2.7vw, 46px);
    align-items: start;
  }

  .catalogue-preview {
    position: sticky;
    top: 108px;
    grid-template-columns: clamp(278px, 19vw, 320px) minmax(365px, 1fr);
    gap: clamp(28px, 2vw, 34px);
    padding: 17px 0 0;
    align-items: start;
  }

  .catalogue-cover-wrap {
    align-self: start;
    border-radius: 18px;
  }

  .catalogue-preview-copy {
    padding-top: 0;
  }

  .catalogue-preview-copy .eyebrow {
    margin-bottom: 13px;
  }

  .catalogue-preview-copy h2 {
    max-width: 430px;
    margin-bottom: 21px;
    font-size: clamp(2.25rem, 2.35vw, 2.45rem);
    line-height: 1.045;
    letter-spacing: -.042em;
  }

  .catalogue-benefits li {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    min-height: 79px;
    padding: 9px 0 11px;
  }

  .catalogue-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
  }

  .catalogue-benefit-icon img {
    width: 49px;
    height: 49px;
  }

  .catalogue-benefit-copy strong {
    margin-bottom: 4px;
    font-size: .98rem;
    line-height: 1.22;
  }

  .catalogue-benefit-copy small {
    max-width: 430px;
    font-size: .79rem;
    line-height: 1.48;
  }

  .catalogue-technical-note {
    margin-top: 17px;
    padding-top: 17px;
  }

  .catalogue-gate-form {
    padding: clamp(36px, 2.55vw, 43px);
    border-radius: 25px;
  }

  .catalogue-form-header {
    margin-bottom: 21px;
    padding-bottom: 18px;
  }

  .catalogue-form-header .eyebrow {
    margin-bottom: 12px;
  }

  .catalogue-form-header h2 {
    max-width: 620px;
    margin-bottom: 10px;
    font-size: clamp(2.25rem, 2.65vw, 2.78rem);
    line-height: 1.04;
  }

  .catalogue-form-header .muted {
    font-size: .94rem;
    line-height: 1.55;
  }

  .catalogue-gate-form .form-grid {
    gap: 13px 16px;
  }

  .catalogue-gate-form input:not([type="checkbox"]):not([type="radio"]),
  .catalogue-gate-form select {
    min-height: 50px;
  }

  .catalogue-gate-form .consent-option {
    padding: 6px 7px;
    font-size: .74rem;
    line-height: 1.48;
  }

  .catalogue-submit-button {
    min-height: 53px;
    margin-top: 2px;
  }
}

@media (min-width: 1301px) and (max-width: 1450px) {
  .catalogue-download-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(590px, .94fr);
    gap: 30px;
  }

  .catalogue-preview {
    grid-template-columns: 278px minmax(350px, 1fr);
    gap: 26px;
  }

  .catalogue-preview-copy h2 {
    font-size: 2.3rem;
  }
}

/* Use the established stacked catalogue composition once the desktop grid
   no longer has enough room for the approved cover and copy proportions. */
@media (min-width: 1241px) and (max-width: 1300px) {
  .catalogue-download-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .catalogue-preview,
  .catalogue-gate-form {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
  }

  .catalogue-preview {
    position: static;
    grid-template-columns: minmax(250px, .68fr) minmax(360px, 1.32fr);
  }
}

/* ================================================================
   Rasonyx v3.9.7 — catalogue cover/content visual balance
   Aligns the cover and copy to one top baseline and enlarges the cover
   so its visual height balances the five division rows and note.
   ================================================================ */
@media (min-width: 1301px) {
  .catalogue-download-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(580px, .8fr);
    gap: clamp(34px, 2.45vw, 42px);
    align-items: start;
  }

  .catalogue-preview {
    grid-template-columns: clamp(350px, 24.5vw, 420px) minmax(370px, 1fr);
    gap: clamp(30px, 2.1vw, 38px);
    align-items: start;
    padding-top: 0;
  }

  .catalogue-cover-wrap,
  .catalogue-preview-copy {
    align-self: start;
    margin-top: 0;
    padding-top: 0;
  }

  .catalogue-preview-copy .eyebrow {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .catalogue-preview-copy h2 {
    max-width: 480px;
    margin-bottom: 18px;
    font-size: clamp(2.18rem, 2.25vw, 2.42rem);
    line-height: 1.03;
  }

  .catalogue-benefits li {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    min-height: 74px;
    padding: 8px 0 10px;
  }

  .catalogue-benefit-icon {
    width: 68px;
    height: 68px;
  }

  .catalogue-benefit-copy strong {
    font-size: .97rem;
  }

  .catalogue-benefit-copy small {
    max-width: 450px;
    font-size: .78rem;
    line-height: 1.46;
  }

  .catalogue-technical-note {
    margin-top: 15px;
    padding-top: 16px;
  }
}

@media (min-width: 1301px) and (max-width: 1450px) {
  .catalogue-download-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(545px, .82fr);
    gap: 28px;
  }

  .catalogue-preview {
    grid-template-columns: clamp(335px, 24.5vw, 355px) minmax(350px, 1fr);
    gap: 26px;
  }

  .catalogue-preview-copy h2 {
    font-size: 2.18rem;
  }

  .catalogue-benefits li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 15px;
    min-height: 70px;
  }

  .catalogue-benefit-icon {
    width: 62px;
    height: 62px;
  }

  .catalogue-benefit-icon img {
    width: 44px;
    height: 44px;
  }

  .catalogue-benefit-copy strong {
    font-size: .93rem;
  }

  .catalogue-benefit-copy small {
    font-size: .74rem;
  }
}

/* ================================================================
   Rasonyx v3.9.8 — premium RFQ experience and removable file upload
   ================================================================ */
.quote-experience {
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at 9% 13%, rgba(43,130,255,.075), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #eef4fa 100%);
}
.quote-experience-grid {
  display: grid;
  grid-template-columns: minmax(520px, .92fr) minmax(620px, 1.08fr);
  gap: clamp(44px, 4vw, 76px);
  align-items: start;
}
.quote-intro {
  min-width: 0;
  padding-top: 18px;
}
.quote-intro-copy {
  max-width: 630px;
}
.quote-intro-copy h1 {
  max-width: 620px;
  margin: 12px 0 16px;
  font-size: clamp(3rem, 3.4vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.quote-intro-lead {
  max-width: 570px;
  color: #5c6f84;
  font-size: 1.08rem;
  line-height: 1.65;
}
.quote-intro-content {
  display: grid;
  grid-template-columns: minmax(270px, .95fr) minmax(230px, .72fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 32px;
}
.quote-visual-card {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(130,157,184,.28);
  border-radius: 20px;
  background: #071522;
  box-shadow: 0 26px 54px rgba(7,21,34,.19);
}
.quote-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2,12,24,.04), rgba(2,12,24,.26));
  pointer-events: none;
}
.quote-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
}
.quote-benefit-list {
  display: grid;
  align-content: center;
  gap: 0;
}
.quote-benefit {
  display: grid;
  grid-template-columns: 74px minmax(0,1fr);
  gap: 17px;
  align-items: center;
  min-height: 126px;
  padding: 18px 0;
  border-bottom: 1px solid #d9e2ec;
}
.quote-benefit:last-child { border-bottom: 0; }
.quote-benefit-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid #d3deea;
  border-radius: 16px;
  color: #075fd6;
  background: linear-gradient(145deg, #fff 0%, #edf3f9 74%, #dce7f2 100%);
  box-shadow: 0 9px 20px rgba(31,63,96,.11), inset 0 0 0 4px rgba(255,255,255,.55);
}
.quote-benefit h2 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.25;
}
.quote-benefit p {
  margin: 0;
  color: #5c6f84;
  font-size: .84rem;
  line-height: 1.55;
}
.quote-request-card {
  padding: clamp(30px, 3vw, 48px);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(21,51,82,.13);
}
.quote-form-heading {
  margin-bottom: 27px;
}
.quote-form-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(2.3rem, 3vw, 3.55rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.quote-form-heading p:last-child {
  max-width: 590px;
  color: #687b90;
}
.quote-items-panel {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid #dce5ee;
  border-radius: 13px;
  background: #f8fafc;
}
.quote-items-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #31465b;
  font-size: .78rem;
}
.quote-items-heading span {
  color: #8393a4;
  font-weight: 700;
}
.quote-items-panel.is-empty {
  padding: 13px 16px;
}
.quote-items-panel.is-empty .quote-items-heading { margin-bottom: 7px; }
.quote-items-panel .quote-items { margin: 0; }
.quote-items-panel .quote-empty {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: .78rem;
}
.quote-request-card .quote-item {
  background: #fff;
}
.quote-form-grid {
  gap: 17px 19px;
}
.quote-request-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.quote-request-card textarea,
.quote-request-card select {
  min-height: 49px;
  border-color: #cbd8e4;
  border-radius: 9px;
  background: #fff;
}

/* Keep checkbox/radio controls compact. The generic quote-field height must not
   stretch compliance, privacy or marketing selectors. */
.quote-request-card .check-option input[type="checkbox"],
.quote-request-card .consent-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex: 0 0 18px;
}
.quote-request-card textarea {
  min-height: 112px;
}
.quote-request-card .compact-textarea {
  min-height: 82px;
}
.quote-advanced {
  grid-column: 1 / -1;
  border: 1px solid #d7e1eb;
  border-radius: 12px;
  background: #fbfcfe;
  overflow: hidden;
}
.quote-advanced summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 16px 48px 16px 17px;
  color: #20364d;
  font-size: .85rem;
  font-weight: 800;
}
.quote-advanced summary::-webkit-details-marker { display: none; }
.quote-advanced summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #116ee9;
  font-size: 1.25rem;
}
.quote-advanced[open] summary::after { content: "–"; }
.quote-advanced summary span {
  margin-left: 8px;
  color: #8393a4;
  font-size: .72rem;
}
.quote-advanced-content {
  padding: 0 17px 18px;
  border-top: 1px solid #e0e7ef;
}
.quote-advanced-content > .form-grid { padding-top: 17px; }
.upload-field { gap: 8px; }
.upload-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.upload-label-row span {
  color: #607489;
  font-size: .74rem;
  font-weight: 750;
}
.rfq-upload {
  overflow: hidden;
  border: 1px dashed #b9c9da;
  border-radius: 12px;
  background: #fbfdff;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.rfq-upload.is-dragging {
  border-color: #1675f1;
  background: #f0f7ff;
  box-shadow: 0 0 0 4px rgba(22,117,241,.1);
}
.rfq-upload.has-error { border-color: #dc7777; }
.rfq-upload > input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
}
.rfq-upload-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  min-height: 104px;
  padding: 20px;
  border: 0;
  color: #24415f;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.rfq-upload-trigger:hover { background: #f5f9fd; }
.rfq-upload-trigger:focus-visible { outline: 3px solid rgba(30,126,247,.28); outline-offset: -3px; }
.rfq-upload-cloud {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #075fd6;
  background: #eaf3ff;
}
.rfq-upload-trigger strong,
.rfq-upload-trigger small { display: block; }
.rfq-upload-trigger strong { font-size: .9rem; }
.rfq-upload-trigger small {
  margin-top: 5px;
  color: #75879a;
  font-size: .75rem;
  line-height: 1.45;
}
.rfq-file-list {
  display: grid;
  gap: 7px;
  padding: 0 12px;
}
.rfq-file-list:empty { display: none; }
.rfq-file-row {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) 36px;
  gap: 11px;
  align-items: center;
  min-height: 48px;
  padding: 7px 8px;
  border: 1px solid #d9e3ed;
  border-radius: 9px;
  background: #fff;
}
.rfq-file-row.is-invalid {
  border-color: #e3a2a2;
  background: #fff9f9;
}
.rfq-file-type {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  color: #075fd6;
  background: #eaf3ff;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .03em;
}
.rfq-file-name {
  min-width: 0;
}
.rfq-file-name strong,
.rfq-file-name small { display: block; }
.rfq-file-name strong {
  overflow: hidden;
  color: #23384d;
  font-size: .78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rfq-file-name small {
  margin-top: 2px;
  color: #718398;
  font-size: .68rem;
}
.rfq-file-remove {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #d5e0ea;
  border-radius: 8px;
  color: #4b6075;
  background: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}
.rfq-file-remove:hover,
.rfq-file-remove:focus-visible {
  border-color: #e3a2a2;
  color: #a62d2d;
  background: #fff3f3;
}
.rfq-file-totals {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 17px;
  align-items: center;
  margin-top: 11px;
  padding: 11px 14px;
  border-top: 1px solid #e0e7ef;
  color: #607489;
  font-size: .72rem;
}
.rfq-file-totals strong { color: #52687d; }
.rfq-file-totals.is-valid strong { color: #178159; }
.rfq-file-totals.is-invalid strong { color: #b13434; }
.rfq-file-message {
  display: none;
  margin: 0 12px 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .75rem;
  line-height: 1.5;
}
.rfq-file-message.show { display: block; }
.rfq-file-message.info { color: #24568c; background: #edf6ff; }
.rfq-file-message.error { color: #8c2e2e; background: #fff0f0; }
.upload-technical-note {
  margin: 0;
  color: #718398;
  font-size: .7rem;
  line-height: 1.5;
}
.quote-consent {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 600;
}
.quote-consent:hover { border-color: transparent; background: transparent; }
.quote-submit-block { margin-top: 3px; }
.quote-submit {
  min-height: 53px;
  gap: 10px;
  font-size: .94rem;
}

@media (max-width: 1320px) {
  .quote-experience-grid {
    grid-template-columns: 1fr;
    max-width: 980px;
  }
  .quote-intro { padding-top: 0; }
  .quote-intro-copy { max-width: 760px; }
  .quote-intro-copy h1 { max-width: 760px; }
  .quote-intro-content { grid-template-columns: minmax(300px,.8fr) 1fr; }
  .quote-visual-card, .quote-visual-card img { min-height: 620px; }
  .quote-benefit { min-height: 112px; }
}

@media (max-width: 800px) {
  .quote-experience { padding: 38px 0 64px; }
  .quote-intro-copy h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .quote-intro-content { grid-template-columns: 1fr; }
  .quote-visual-card { min-height: 0; max-width: 620px; }
  .quote-visual-card img { min-height: 0; aspect-ratio: 16/10; }
  .quote-benefit-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quote-benefit {
    min-height: 0;
    padding: 15px;
    border: 1px solid #d9e2ec;
    border-radius: 13px;
    background: rgba(255,255,255,.68);
  }
  .quote-benefit-icon { width: 58px; height: 58px; }
  .quote-request-card { padding: 28px 20px; }
  .quote-form-heading h2 { font-size: 2.5rem; }
}

@media (max-width: 560px) {
  .quote-benefit-list { grid-template-columns: 1fr; }
  .quote-benefit { grid-template-columns: 58px 1fr; }
  .quote-form-grid, .quote-advanced-content .form-grid { grid-template-columns: 1fr; }
  .upload-label-row { display: grid; gap: 3px; }
  .rfq-upload-trigger { justify-content: flex-start; padding: 18px 14px; }
  .rfq-file-totals { grid-template-columns: 1fr auto; gap: 8px; }
  .rfq-file-totals strong { grid-column: 1 / -1; }
  .quote-item { grid-template-columns: 1fr 64px 34px; }
}

/* On stacked layouts, keep the RFQ form close to the introductory copy. */
@media (max-width: 1320px) {
  .quote-intro { display: contents; }
  .quote-intro-copy { order: 1; }
  .quote-request-card { order: 2; }
  .quote-intro-content { order: 3; }
}
