:root {
  --ink: #092233;
  --muted: #59717d;
  --blue: #006b9f;
  --teal: #00a4a6;
  --cyan: #28c6d7;
  --deep: #062838;
  --coral: #ff7d5c;
  --foam: #f1fbfa;
  --line: #d8e7e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 36, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.55;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(9, 34, 51, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 22, 34, 0.9) 0%, rgba(3, 22, 34, 0.58) 42%, rgba(3, 22, 34, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 22, 34, 0.44), rgba(3, 22, 34, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding-top: 88px;
  padding-bottom: 82px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff3e7;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.button.primary {
  color: #062231;
  background: #8ff3e7;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
}

.button.secondary {
  color: var(--blue);
  border-color: var(--line);
  background: var(--white);
}

.compact-actions {
  margin-bottom: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  width: min(650px, 100%);
}

.hero-metrics span {
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
}

.section,
.spec-band,
.contact,
.custom-band {
  padding: clamp(70px, 10vw, 118px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: var(--foam);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.about-strength {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.about-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8f1f1;
  box-shadow: var(--shadow);
}

.about-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 34, 51, 0) 52%, rgba(9, 34, 51, 0.38) 100%),
    linear-gradient(90deg, rgba(0, 164, 166, 0.18), rgba(255, 125, 92, 0.08));
  content: "";
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  min-width: 0;
}

.about-lead {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 760;
  line-height: 1.42;
}

.about-content > p:not(.eyebrow):not(.about-lead) {
  color: var(--muted);
  font-size: 17px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.strength-grid div {
  min-height: 154px;
  padding: 22px;
  background: #f8fbfb;
}

.strength-grid strong,
.strength-grid span {
  display: block;
}

.strength-grid strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 16px;
}

.strength-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.conversion-strip a {
  display: grid;
  min-height: 170px;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  background: #f8fbfb;
}

.conversion-strip strong {
  color: var(--blue);
  font-size: 18px;
}

.conversion-strip span {
  color: var(--muted);
  font-size: 14px;
}

.why-section {
  background: #f7faf9;
}

.why-grid,
.solution-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.compact-solution-links {
  margin-top: 18px;
}

/* Product detail visual refinement */
.product-detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(40, 198, 215, 0.28), transparent 28%),
    linear-gradient(118deg, rgba(4, 24, 36, 0.98), rgba(7, 68, 86, 0.92) 48%, rgba(6, 40, 56, 0.98)),
    #062838;
}

.product-detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 243, 231, 0.8), transparent);
  content: "";
}

.product-detail-hero h1 {
  letter-spacing: 0;
}

.product-detail-layout {
  background:
    radial-gradient(circle at 16% 0, rgba(40, 198, 215, 0.12), transparent 24%),
    linear-gradient(180deg, #f4faf9 0, #ffffff 34%, #f5faf9 100%);
}

.catalog-item.detail-summary {
  position: relative;
  grid-template-columns: minmax(360px, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 4.8vw, 62px);
  overflow: hidden;
  padding: clamp(20px, 3.2vw, 42px);
  border-color: rgba(177, 213, 218, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 252, 0.94)),
    var(--white);
  box-shadow: 0 34px 90px rgba(7, 36, 51, 0.14);
}

.catalog-item.detail-summary::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 3px solid rgba(40, 198, 215, 0.62);
  content: "";
}

.hero-product-gallery {
  min-height: clamp(500px, 48vw, 680px);
  border: 1px solid rgba(177, 213, 218, 0.86);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0 34%, rgba(235, 249, 249, 0.96) 35% 62%, rgba(226, 242, 244, 0.92) 63%),
    linear-gradient(135deg, #ffffff, #eef8f8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 22px 54px rgba(7, 36, 51, 0.1);
}

.hero-product-gallery::before {
  display: none;
}

.media-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 164, 166, 0.22);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-product-gallery .catalog-media-main {
  position: relative;
  z-index: 1;
  min-height: clamp(500px, 48vw, 680px);
  padding: clamp(34px, 5vw, 72px) clamp(28px, 4vw, 62px) 126px;
  filter: drop-shadow(0 28px 34px rgba(3, 22, 34, 0.18));
}

.hero-gallery-thumbs {
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-color: rgba(177, 213, 218, 0.76);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(7, 36, 51, 0.1);
}

.hero-gallery-thumbs button {
  border-color: rgba(216, 231, 232, 0.96);
  background: linear-gradient(180deg, #ffffff, #f5fbfb);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hero-gallery-thumbs button:hover,
.hero-gallery-thumbs button.is-active {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(40, 198, 215, 0.2);
}

.hero-gallery-thumbs img {
  aspect-ratio: 1.32;
  padding: 6px;
}

.catalog-content {
  justify-content: start;
  padding-block: clamp(4px, 1.5vw, 16px);
}

.catalog-content .eyebrow {
  color: var(--teal);
}

.catalog-content h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #082838;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
}

.catalog-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 18px;
  color: #4c6874;
  font-size: clamp(16px, 1.35vw, 19px);
}

.catalog-tags span {
  border-color: rgba(0, 107, 159, 0.14);
  color: #075d83;
  background: #eaf8f8;
}

.product-decision-grid {
  gap: 10px;
  background: transparent;
}

.product-decision-grid div {
  min-height: 104px;
  border: 1px solid rgba(216, 231, 232, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f1faf9);
  box-shadow: 0 12px 30px rgba(7, 36, 51, 0.05);
}

.mini-specs {
  gap: 10px;
  background: transparent;
}

.mini-specs div {
  border: 1px solid rgba(216, 231, 232, 0.9);
  border-radius: 8px;
  background: #ffffff;
}

.quote-snapshot {
  margin-top: 2px;
  border-color: rgba(255, 125, 92, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 125, 92, 0.12), rgba(40, 198, 215, 0.08)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(7, 36, 51, 0.08);
}

.quote-snapshot strong {
  color: #082838;
}

.quote-snapshot .button {
  box-shadow: 0 14px 28px rgba(255, 125, 92, 0.22);
}

.detail-block {
  border-color: rgba(190, 219, 223, 0.88);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(7, 36, 51, 0.07);
}

.detail-block .section-heading h2 {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

.product-rfq-builder {
  border-color: rgba(40, 198, 215, 0.24);
  background:
    linear-gradient(135deg, rgba(241, 251, 250, 0.92), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.rfq-prep-grid article,
.feature-grid article,
.faq-grid article,
.fit-check-grid article,
.light-specs div,
.rfq-checklist-grid span {
  background: linear-gradient(180deg, #ffffff, #f7fbfb);
}

.detail-nav {
  box-shadow: 0 14px 34px rgba(7, 36, 51, 0.06);
}

.detail-nav a {
  background: #ffffff;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.detail-nav a:hover {
  transform: translateY(-1px);
}

.why-grid article,
.solution-links a {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
}

.why-grid strong,
.solution-links strong {
  display: block;
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.2;
}

.why-grid span,
.solution-links span {
  display: block;
  color: var(--muted);
  font-size: 15px;
}

.intent-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.intent-strip a {
  min-height: 150px;
  padding: 24px;
  background: #f8fbfb;
}

.intent-strip strong,
.intent-strip span {
  display: block;
}

.intent-strip strong {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 18px;
}

.intent-strip span {
  color: var(--muted);
  font-size: 14px;
}

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

.product-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(8, 50, 68, 0.06);
}

.product-card.featured {
  color: var(--white);
  background: #07374d;
  box-shadow: var(--shadow);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1.35;
  background: #e8f1f1;
  object-fit: cover;
}

.product-card-image.product-fit {
  padding: 22px;
  background: var(--white);
  object-fit: contain;
}

.product-card h3,
.product-card p,
.product-card ul,
.product-card .card-link,
.product-top {
  margin-right: 28px;
  margin-left: 28px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card.featured .product-top {
  color: #8ff3e7;
}

.product-card p,
.application-list p,
.process-steps span,
.contact p {
  color: var(--muted);
}

.product-card.featured p,
.product-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.product-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding: 12px 0 0 22px;
  color: var(--muted);
  position: relative;
}

.product-card li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--coral);
  font-weight: 900;
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.product-card.featured .card-link {
  color: #8ff3e7;
}

.products-page {
  background: #f7faf9;
}

.products-page .site-header {
  position: sticky;
}

.products-hero {
  padding: clamp(84px, 12vw, 140px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 78px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 32, 47, 0.95), rgba(0, 107, 159, 0.84)),
    #082838;
}

.products-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 78px);
}

.products-hero > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.products-hero .button {
  margin-top: 12px;
}

.product-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: var(--line);
}

.product-filter div {
  min-height: 126px;
  padding: 22px;
  background: var(--white);
}

.product-filter strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
}

.product-filter span {
  display: inline-flex;
  margin: 0 6px 8px 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  background: var(--foam);
  font-size: 12px;
  font-weight: 850;
}

.product-directory {
  position: sticky;
  z-index: 10;
  top: 76px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.product-directory a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  background: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.comparison-section {
  padding-bottom: clamp(24px, 4vw, 54px);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th,
.comparison-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.comparison-table a {
  color: var(--blue);
}

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

.compact-table .comparison-table {
  min-width: 0;
}

.product-list {
  display: grid;
  gap: 22px;
  padding: clamp(32px, 5vw, 72px) clamp(18px, 5vw, 72px) clamp(70px, 10vw, 118px);
}

.catalog-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(18px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(8, 50, 68, 0.07);
}

.catalog-media {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 38%, #ffffff 0, #f0f7f7 70%);
}

.catalog-media > img,
.catalog-media-main {
  width: 100%;
  height: 100%;
  min-height: 440px;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 3vw, 34px) 96px;
  object-fit: contain;
}

.hero-gallery-thumbs {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(220, 231, 231, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.hero-gallery-thumbs button {
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbfb;
  cursor: pointer;
}

.hero-gallery-thumbs button.is-active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(25, 157, 183, 0.14);
}

.hero-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.25;
  padding: 5px;
  object-fit: contain;
}

.catalog-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.catalog-content h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.catalog-content p {
  color: var(--muted);
  font-size: 17px;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}

.catalog-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  background: var(--foam);
  font-size: 12px;
  font-weight: 850;
}

.product-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 18px;
  background: var(--line);
}

.product-decision-grid div {
  min-height: 86px;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbfb, #eef7f6);
}

.product-decision-grid strong,
.product-decision-grid span {
  display: block;
}

.product-decision-grid strong {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-decision-grid span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.quote-snapshot {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(25, 157, 183, 0.28);
  border-radius: 8px;
  background: #f4fbfb;
}

.quote-snapshot strong,
.quote-snapshot span {
  display: block;
}

.quote-snapshot strong {
  color: var(--blue);
  font-size: 18px;
}

.quote-snapshot span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.quote-snapshot .button {
  width: fit-content;
}

.catalog-points {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.catalog-points li {
  position: relative;
  padding-left: 21px;
}

.catalog-points li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 900;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 22px;
  background: var(--line);
}

.mini-specs div {
  min-height: 82px;
  padding: 13px;
  background: #f8fbfb;
}

.mini-specs dt {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.mini-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f1f5f5;
  object-fit: cover;
}

.applications {
  background: #f7faf9;
}

.solution-list article {
  display: flex;
  flex-direction: column;
}

.solution-list a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.custom-band {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 32, 47, 0.96), rgba(0, 107, 159, 0.88)),
    #082838;
}

.custom-band .eyebrow {
  color: #8ff3e7;
}

.custom-band .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.custom-grid article {
  min-height: 174px;
  padding: 26px;
  background: rgba(12, 53, 72, 0.92);
}

.custom-grid strong,
.custom-grid span {
  display: block;
}

.custom-grid strong {
  margin-bottom: 14px;
  color: #8ff3e7;
  font-size: 17px;
}

.custom-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.application-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.application-list article {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.application-list span {
  display: block;
  margin-bottom: 70px;
  color: var(--coral);
  font-weight: 900;
}

.spec-band {
  color: var(--white);
  background: #082838;
}

.spec-band .eyebrow {
  color: #8ff3e7;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.spec-grid div {
  min-height: 142px;
  padding: 26px;
  background: #0c3548;
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid strong {
  margin-bottom: 16px;
  color: #8ff3e7;
}

.spec-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.light-specs {
  background: var(--line);
}

.light-specs div {
  background: #f8fbfb;
}

.light-specs strong {
  color: var(--blue);
}

.light-specs span {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.breadcrumb a,
.breadcrumb strong {
  color: var(--blue);
}

.detail-nav {
  position: sticky;
  top: 76px;
  z-index: 6;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.detail-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.detail-nav a:hover {
  border-color: rgba(25, 157, 183, 0.42);
  color: var(--cyan);
}

.product-detail-layout {
  gap: 0;
}

.detail-summary {
  margin-bottom: 22px;
}

.detail-block {
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(8, 50, 68, 0.05);
}

.rich-content {
  max-width: 920px;
  color: var(--muted);
  font-size: 18px;
}

.rich-content p:last-child {
  margin-bottom: 0;
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-grid article,
.faq-grid article {
  min-height: 180px;
  padding: 24px;
  background: #f8fbfb;
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 17px;
}

.feature-grid span,
.faq-grid p {
  color: var(--muted);
}

.custom-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.custom-addon-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
}

.custom-addon-card img {
  width: 100%;
  aspect-ratio: 1.35;
  background: var(--white);
  object-fit: cover;
}

.custom-addon-card div {
  padding: 18px;
}

.custom-addon-card strong,
.custom-addon-card span {
  display: block;
}

.custom-addon-card strong {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 17px;
}

.custom-addon-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-section {
  background: var(--white);
}

.faq-grid h3 {
  font-size: 19px;
}

.product-faq {
  padding-top: clamp(32px, 5vw, 72px);
}

.detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.28fr);
  gap: 16px;
}

.gallery-main {
  display: grid;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 35%, #ffffff 0, #f0f7f7 68%);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding: clamp(18px, 4vw, 52px);
  object-fit: contain;
}

.gallery-main figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 3px;
}

.gallery-thumbs button {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(25, 157, 183, 0.14);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.2;
  padding: 8px;
  object-fit: contain;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.fit-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.fit-check-grid article {
  padding: clamp(20px, 3vw, 30px);
  background: #f8fbfb;
}

.fit-check-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 20px;
}

.fit-check-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.fit-check-grid li {
  position: relative;
  padding-left: 22px;
  line-height: 1.62;
}

.fit-check-grid li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 900;
}

.rfq-checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  gap: 18px;
}

.rfq-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.rfq-checklist-grid span {
  min-height: 92px;
  padding: 18px;
  color: var(--blue);
  background: #f8fbfb;
  font-size: 15px;
  font-weight: 900;
}

.rfq-checklist-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #0a3143, #0d5667);
}

.rfq-checklist-action strong {
  font-size: 20px;
}

.rfq-checklist-action p {
  color: rgba(255, 255, 255, 0.78);
}

.rfq-checklist-action .button {
  width: fit-content;
  margin-top: 8px;
}

.application-index {
  background: #f7faf9;
}

.solution-cards {
  display: grid;
  gap: 18px;
}

.solution-cards article {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(8, 50, 68, 0.06);
}

.solution-cards img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 8px;
  object-fit: cover;
}

.solution-cards h2 {
  font-size: clamp(27px, 4vw, 46px);
}

.solution-cards p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 52px);
}

.pagination-wrap .pages,
.pagination-wrap {
  gap: 8px;
}

.pagination-wrap a,
.pagination-wrap span,
.pagination-wrap .page-num,
.pagination-wrap .page-link,
.pagination-wrap .page-num-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.pagination-wrap a:hover,
.pagination-wrap .page-num-current {
  border-color: rgba(25, 157, 183, 0.48);
  color: var(--white);
  background: var(--blue);
}

.application-detail {
  background: #f7faf9;
}

.application-hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(18px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(8, 50, 68, 0.06);
}

.application-hero-card img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.application-article-body {
  background: var(--white);
}

.application-article-body .rich-content {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
}

.application-article-body .rich-content h2 {
  margin-top: 34px;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 44px);
}

.application-article-body .rich-content h3 {
  margin-top: 28px;
  color: var(--blue);
  font-size: clamp(22px, 3vw, 30px);
}

.application-article-body .rich-content p,
.application-article-body .rich-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.application-article-body .rich-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.content-figure {
  margin: clamp(28px, 5vw, 46px) 0;
}

.content-figure img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
}

.content-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.compact-product-grid .product-card {
  min-height: 420px;
}

.slim-contact {
  align-items: center;
}

.slim-contact .button {
  width: fit-content;
  align-self: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-steps li {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: steps;
}

.process-steps li::before {
  display: block;
  margin-bottom: 48px;
  color: var(--coral);
  content: "0" counter(steps);
  font-weight: 900;
}

.process-steps strong,
.process-steps span {
  display: block;
}

.process-steps strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 84px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 43, 60, 0.96), rgba(0, 104, 143, 0.88)),
    #07374d;
}

.contact .eyebrow {
  color: #8ff3e7;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.contact-details a,
.contact-details span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.quote-form label,
.quote-form span {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--white);
  background: rgba(2, 20, 30, 0.28);
  font: inherit;
  padding: 11px 12px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form option {
  color: var(--ink);
}

.quote-form .form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form ::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(260px, 1fr) minmax(260px, 0.9fr);
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #051923;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer address {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.quick-contact {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px;
}

.quick-contact a {
  display: inline-flex;
  min-width: 58px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 6px;
  color: #062231;
  background: #8ff3e7;
  box-shadow: 0 14px 32px rgba(5, 31, 44, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.quick-contact a:last-child {
  color: var(--white);
  background: #07374d;
}

.thankyou-panel {
  background: #f7faf9;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .product-grid,
  .application-list,
  .spec-grid,
  .custom-grid,
  .why-grid,
  .solution-links,
  .intent-strip,
  .process-steps,
  .catalog-item,
  .conversion-strip,
  .product-filter,
  .feature-grid,
  .faq-grid,
  .custom-addon-grid,
  .gallery-grid,
  .fit-check-grid,
  .rfq-checklist-layout,
  .site-footer,
  .solution-cards article,
  .application-hero-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .about-strength,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .catalog-item {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .catalog-media {
    min-height: 360px;
  }

  .product-directory {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 22, 34, 0.92), rgba(3, 22, 34, 0.48)),
      linear-gradient(0deg, rgba(3, 22, 34, 0.58), rgba(3, 22, 34, 0.06));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero-metrics,
  .product-grid,
  .application-list,
  .spec-grid,
  .custom-grid,
  .why-grid,
  .solution-links,
  .intent-strip,
  .process-steps,
  .thumb-row,
  .conversion-strip,
  .product-filter,
  .feature-grid,
  .faq-grid,
  .custom-addon-grid,
  .gallery-grid,
  .fit-check-grid,
  .rfq-checklist-layout,
  .rfq-checklist-grid,
  .site-footer,
  .solution-cards article,
  .application-hero-card {
    grid-template-columns: 1fr;
  }

  .solution-cards img,
  .application-hero-card img {
    min-height: 240px;
  }

  .catalog-media {
    min-height: 280px;
  }

  .catalog-media > img,
  .catalog-media-main {
    min-height: 280px;
    padding: 18px 18px 84px;
  }

  .hero-gallery-thumbs {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .mini-specs,
  .product-decision-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    min-height: 360px;
  }

  .gallery-main img {
    min-height: 300px;
  }

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

  .quote-snapshot .button,
  .rfq-checklist-action .button {
    width: 100%;
  }

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

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

  .hero-metrics span {
    min-height: 74px;
  }

  .product-card,
  .application-list article,
  .custom-grid article,
  .process-steps li {
    min-height: auto;
  }

  .product-card h3,
  .product-card p,
  .product-card ul,
  .product-card .card-link,
  .product-top {
    margin-right: 22px;
    margin-left: 22px;
  }

  .product-top,
  .application-list span,
  .process-steps li::before {
    margin-bottom: 30px;
  }

  .quick-contact {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(9, 34, 51, 0.16);
  }

  .quick-contact a {
    width: auto;
    height: 54px;
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

/* RFQ-focused homepage upgrade */
.quote-hero {
  min-height: 96vh;
}

.quote-hero .hero-content {
  width: min(760px, calc(100% - 36px));
}

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

.hero-rfq-card {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 6vw, 86px);
  display: grid;
  width: min(430px, calc(100% - 36px));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(143, 243, 231, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(3, 22, 34, 0.72);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-rfq-card strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.hero-rfq-card label {
  display: grid;
  gap: 7px;
}

.hero-rfq-card span,
.hero-recommendation span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-rfq-card input,
.hero-rfq-card select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(143, 243, 231, 0.25);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 750;
  outline: 0;
}

.hero-rfq-card input {
  padding: 10px 12px;
}

.hero-rfq-card select {
  padding: 10px 36px 10px 12px;
}

.hero-rfq-card option {
  color: var(--ink);
}

.hero-rfq-card input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.hero-recommendation {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(143, 243, 231, 0.22);
  border-radius: 6px;
  background: rgba(143, 243, 231, 0.1);
}

.hero-recommendation strong {
  color: #8ff3e7;
  font-size: 22px;
}

.hero-recommendation small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.38;
}

.hero-rfq-card a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 6px;
  color: #062231;
  background: #8ff3e7;
  text-align: center;
  font-weight: 900;
}

.parameter-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: rgba(143, 243, 231, 0.2);
  background-color: #062231;
}

.parameter-band div {
  min-height: 104px;
  padding: 22px 18px;
  color: var(--white);
  background: rgba(3, 22, 34, 0.88);
}

.parameter-band strong,
.parameter-band span {
  display: block;
}

.parameter-band strong {
  margin-bottom: 8px;
  color: #8ff3e7;
  font-size: 17px;
}

.parameter-band span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.decision-rail {
  position: sticky;
  z-index: 12;
  top: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: rgba(0, 164, 166, 0.22);
  background-color: rgba(3, 22, 34, 0.94);
  backdrop-filter: blur(14px);
}

.decision-rail a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.decision-rail span {
  color: #8ff3e7;
  font-size: 12px;
}

.decision-rail strong {
  font-size: 14px;
}

.center-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.application-navigator,
.rfq-readiness,
.recommendation-matrix,
.product-showcase,
.trust-section,
.faq-section {
  background: var(--white);
}

.rfq-readiness {
  background:
    linear-gradient(180deg, #ffffff, #f6faf9);
}

.manufacturer-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--line);
}

.manufacturer-proof div {
  min-height: 150px;
  padding: 26px;
  background: #f8fbfb;
}

.manufacturer-proof strong,
.manufacturer-proof span {
  display: block;
}

.manufacturer-proof strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 20px;
}

.manufacturer-proof span {
  color: var(--muted);
  font-size: 14px;
}

.application-paths,
.configuration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.application-paths a,
.configuration-grid article {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  background: #f8fbfb;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.application-paths a:hover,
.configuration-grid article:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(7, 36, 51, 0.14);
}

.application-paths span {
  color: var(--teal);
  font-weight: 900;
}

.application-paths strong,
.configuration-grid strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.14;
}

.application-paths small,
.configuration-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.application-paths em {
  display: block;
  width: fit-content;
  margin-top: auto;
  padding: 8px 10px;
  border: 1px solid rgba(0, 164, 166, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: var(--foam);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.model-matrix {
  display: grid;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.05fr 1.35fr 0.65fr;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.matrix-head {
  min-height: 46px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-row span:first-child {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
}

.matrix-head span:first-child {
  display: block;
}

.matrix-row img {
  width: 88px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.matrix-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 112, 88, 0.28);
  border-radius: 6px;
  color: #8c2e1f;
  background: #fff3ee;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.matrix-row a:hover {
  color: #ffffff;
  background: var(--coral);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.uncertain-rfq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(3, 22, 34, 0.96), rgba(0, 107, 159, 0.82)),
    #082838;
}

.uncertain-rfq h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(27px, 3.6vw, 46px);
}

.uncertain-rfq p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.package-presets {
  background: #f7faf9;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.preset-grid article {
  display: grid;
  min-height: 270px;
  align-content: start;
  gap: 13px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}

.preset-grid span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(0, 164, 166, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: var(--foam);
  font-size: 12px;
  font-weight: 900;
}

.preset-grid strong {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.preset-grid p {
  color: var(--muted);
  font-size: 15px;
}

.preset-grid a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.package-presets-dark {
  margin-bottom: clamp(28px, 5vw, 48px);
  background: rgba(143, 243, 231, 0.2);
  box-shadow: none;
}

.package-presets-dark article {
  border: 1px solid rgba(143, 243, 231, 0.18);
  color: var(--white);
  background: rgba(3, 22, 34, 0.42);
}

.package-presets-dark span {
  border-color: rgba(143, 243, 231, 0.26);
  color: #8ff3e7;
  background: rgba(143, 243, 231, 0.1);
}

.package-presets-dark strong {
  color: #ffffff;
}

.package-presets-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.package-presets-dark a {
  color: #8ff3e7;
}

.custom-config {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 22, 34, 0.98), rgba(0, 84, 104, 0.86)),
    #062231;
}

.custom-config .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.module-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.module-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 42px);
}

.module-heading .eyebrow {
  margin: 0;
  color: #8ff3e7;
}

.configuration-grid {
  background: rgba(143, 243, 231, 0.2);
}

.configuration-grid article {
  min-height: 310px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.configuration-grid img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #e8f1f1;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

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

.quote-form.is-highlighted {
  animation: quotePulse 900ms ease 2;
}

@keyframes quotePulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(143, 243, 231, 0.26), var(--shadow);
  }
}

.quote-builder .wide-field,
.quote-builder .form-note,
.quote-builder .form-completeness,
.quote-builder button {
  grid-column: 1 / -1;
}

.quote-builder button {
  width: 100%;
}

.form-completeness {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 164, 166, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: var(--foam);
  font-size: 14px;
  font-weight: 850;
}

.product-showcase .product-card {
  min-height: 430px;
}

.product-showcase .product-card p {
  display: none;
}

.product-showcase .product-card ul {
  min-height: 92px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.product-card-actions .card-link {
  margin: 0;
  padding: 16px;
  text-align: center;
}

.product-card-actions .quote-link {
  color: #062231;
  background: #8ff3e7;
}

.best-for {
  grid-column: 1 / -1;
  width: fit-content;
  border-color: rgba(255, 125, 92, 0.28) !important;
  color: #b64a2d !important;
  background: #fff4ef !important;
}

.rfq-prep {
  background: #f7faf9;
}

.rfq-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.rfq-prep-grid article {
  min-height: 154px;
  padding: 24px;
  background: var(--white);
}

.rfq-prep-grid strong,
.rfq-prep-grid span {
  display: block;
}

.rfq-prep-grid strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 17px;
}

.rfq-prep-grid span {
  color: var(--muted);
  font-size: 14px;
}

.product-rfq-builder {
  background: #f7faf9;
}

.compact-rfq-grid article {
  min-height: 128px;
}

@media (max-width: 1120px) {
  .hero-rfq-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(760px, calc(100% - 36px));
    margin: -56px auto 34px clamp(18px, 7vw, 104px);
  }

  .parameter-band,
  .decision-rail,
  .application-paths,
  .configuration-grid,
  .rfq-prep-grid,
  .manufacturer-proof,
  .preset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .matrix-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .matrix-head {
    display: none;
  }

  .trust-section,
  .uncertain-rfq,
  .quote-builder .quote-form {
    grid-template-columns: 1fr;
  }

  .uncertain-rfq .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .quote-hero {
    min-height: 820px;
  }

  .hero-rfq-card {
    width: calc(100% - 36px);
    margin: -34px auto 28px;
  }

  .parameter-band,
  .decision-rail,
  .application-paths,
  .configuration-grid,
  .rfq-prep-grid,
  .manufacturer-proof,
  .product-card-actions,
  .preset-grid {
    grid-template-columns: 1fr;
  }

  .decision-rail {
    position: static;
  }

  .application-paths a,
  .configuration-grid article,
  .rfq-prep-grid article,
  .preset-grid article {
    min-height: auto;
  }
}

/* Homepage layout refinement */
.quote-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 110px clamp(18px, 5vw, 72px) clamp(54px, 7vw, 86px);
}

.quote-hero .hero-content {
  align-self: center;
  width: min(780px, 100%);
  margin-left: 0;
}

.quote-hero .hero-rfq-card {
  position: relative;
  right: auto;
  bottom: auto;
  align-self: center;
  width: 100%;
}

.quote-hero .hero-image,
.quote-hero .hero-shade {
  z-index: 0;
}

.quote-hero .hero-content,
.quote-hero .hero-rfq-card {
  z-index: 1;
}

.application-paths {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.application-paths .app-featured {
  grid-column: span 2;
  min-height: 300px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 22, 34, 0.94), rgba(0, 107, 159, 0.78)),
    #082838;
}

.application-paths .app-featured span,
.application-paths .app-featured strong {
  color: var(--white);
}

.application-paths .app-featured small {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.application-paths .app-featured em {
  color: #062231;
  border-color: transparent;
  background: #8ff3e7;
}

.recommendation-matrix {
  padding-top: clamp(54px, 7vw, 86px);
}

.rfq-readiness + .recommendation-matrix {
  padding-top: clamp(42px, 6vw, 72px);
}

.featured-products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faf9 100%);
}

.featured-products::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 164, 166, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 164, 166, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 76%, transparent);
}

.featured-products > * {
  position: relative;
  z-index: 1;
}

.platform-compare-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1080px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  padding: 1px;
  border: 1px solid rgba(190, 219, 223, 0.78);
  border-radius: 8px;
  background: rgba(190, 219, 223, 0.72);
  box-shadow: 0 18px 50px rgba(7, 36, 51, 0.07);
}

.platform-compare-strip span {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #21475a;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.platform-compare-strip span:first-child {
  border-radius: 7px 0 0 7px;
}

.platform-compare-strip span:last-child {
  border-radius: 0 7px 7px 0;
}

.platform-compare-strip b {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 164, 166, 0.25);
  border-radius: 50%;
  color: var(--teal);
  background: #effafa;
  font-size: 11px;
}

.featured-products .product-card {
  position: relative;
  min-height: 590px;
  border-color: rgba(190, 219, 223, 0.86);
  background:
    linear-gradient(180deg, #ffffff, #f7fbfb);
  box-shadow: 0 22px 58px rgba(7, 36, 51, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.featured-products .product-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  content: "";
  background: linear-gradient(90deg, var(--teal), #8ff3e7, var(--coral));
}

.featured-products .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 164, 166, 0.34);
  box-shadow: 0 30px 72px rgba(7, 36, 51, 0.14);
}

.product-media {
  position: relative;
  display: block;
  margin: 16px 16px 0;
  overflow: hidden;
  border: 1px solid rgba(216, 231, 232, 0.95);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(143, 243, 231, 0.18), transparent 42%),
    linear-gradient(180deg, #ffffff, #eef7f7);
}

.product-media::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 64px;
  height: 64px;
  border-right: 1px solid rgba(0, 164, 166, 0.22);
  border-bottom: 1px solid rgba(0, 164, 166, 0.22);
  content: "";
}

.product-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(0, 164, 166, 0.22);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-products .product-card-image.product-fit {
  aspect-ratio: 1.42;
  padding: 30px 24px 24px;
  background: transparent;
  transition: transform 180ms ease;
}

.featured-products .product-card:hover .product-card-image {
  transform: scale(1.035);
}

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

.featured-products .product-card h3,
.featured-products .product-card ul,
.featured-products .product-card .card-link,
.featured-products .product-top {
  margin-right: 0;
  margin-left: 0;
}

.featured-products .product-top {
  align-items: center;
  margin-top: 0;
  margin-bottom: 18px;
}

.featured-products .best-for {
  max-width: 78%;
  color: var(--teal);
}

.featured-products .product-code {
  padding: 6px 8px;
  border: 1px solid rgba(255, 125, 92, 0.24);
  border-radius: 6px;
  color: #b45138;
  background: rgba(255, 125, 92, 0.08);
}

.featured-products .product-card h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.12;
}

.featured-products .product-card h3 a {
  color: var(--ink);
}

.product-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-spec-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(0, 164, 166, 0.18);
  border-radius: 999px;
  color: #21475a;
  background: rgba(239, 250, 250, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.featured-products .product-card ul {
  margin-top: auto;
  padding-top: 4px;
}

.featured-products .product-card li {
  padding-top: 10px;
  color: #5d7480;
  font-size: 14px;
}

.featured-products .product-card-actions {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 231, 232, 0.92);
}

.featured-products .product-card-actions .card-link {
  min-height: 42px;
  margin: 0;
  padding: 0 14px;
  border-color: rgba(0, 107, 159, 0.18);
  background: #ffffff;
}

.featured-products .product-card-actions .quote-link {
  color: #062231;
  border-color: transparent;
  background: linear-gradient(135deg, #8ff3e7, #56d8d0);
}

.module-config .configuration-grid {
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  overflow-x: auto;
  padding-bottom: 4px;
  box-shadow: none;
}

.module-config .configuration-grid article {
  min-width: 190px;
  min-height: 340px;
}

.module-config .configuration-grid img {
  aspect-ratio: 1.18 / 1;
}

.module-config .configuration-grid b {
  display: block;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(0, 164, 166, 0.24);
  border-radius: 6px;
  color: var(--blue);
  background: var(--foam);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom-module-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-top: clamp(24px, 5vw, 46px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(143, 243, 231, 0.28);
  border-radius: 8px;
  background: rgba(3, 22, 34, 0.42);
}

.custom-module-cta strong,
.custom-module-cta span {
  display: block;
}

.custom-module-cta strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 32px);
}

.custom-module-cta span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.custom-module-cta .button {
  white-space: nowrap;
}

.quote-builder {
  align-items: start;
}

.quote-builder > div:first-child {
  position: sticky;
  top: 104px;
}

@media (max-width: 1120px) {
  .platform-compare-strip,
  .featured-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-compare-strip span:first-child,
  .platform-compare-strip span:last-child {
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .platform-compare-strip,
  .featured-products .product-grid,
  .featured-products .product-card-actions {
    grid-template-columns: 1fr;
  }

  .platform-compare-strip span {
    min-height: auto;
  }

  .featured-products .product-card {
    min-height: auto;
  }

  .product-media {
    margin: 12px 12px 0;
  }

  .product-card-body {
    padding: 22px;
  }
}

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

  .quote-hero .hero-rfq-card {
    width: min(760px, 100%);
    margin: 0;
  }

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

  .application-paths .app-featured {
    grid-column: span 1;
  }

  .quote-builder > div:first-child {
    position: static;
  }
}

@media (max-width: 640px) {
  .quote-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .application-paths,
  .featured-products .product-grid {
    grid-template-columns: 1fr;
  }

  .custom-module-cta {
    grid-template-columns: 1fr;
  }

  .module-heading {
    display: block;
  }

  .module-heading .eyebrow {
    margin-bottom: 8px;
  }
}

/* Final product detail polish overrides */
.product-detail-layout {
  background:
    radial-gradient(circle at 16% 0, rgba(40, 198, 215, 0.12), transparent 24%),
    linear-gradient(180deg, #f4faf9 0, #ffffff 34%, #f5faf9 100%);
}

.catalog-item.detail-summary {
  position: relative;
  grid-template-columns: minmax(360px, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 4.8vw, 62px);
  overflow: hidden;
  padding: clamp(20px, 3.2vw, 42px);
  border-color: rgba(177, 213, 218, 0.86);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 252, 0.94));
  box-shadow: 0 34px 90px rgba(7, 36, 51, 0.14);
}

.hero-product-gallery {
  min-height: clamp(500px, 48vw, 680px);
  border: 1px solid rgba(177, 213, 218, 0.86);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.98) 0 34%, rgba(235, 249, 249, 0.96) 35% 62%, rgba(226, 242, 244, 0.92) 63%),
    linear-gradient(135deg, #ffffff, #eef8f8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 22px 54px rgba(7, 36, 51, 0.1);
}

.hero-product-gallery .catalog-media-main {
  position: relative;
  z-index: 1;
  min-height: clamp(500px, 48vw, 680px);
  padding: clamp(34px, 5vw, 72px) clamp(28px, 4vw, 62px) 126px;
  filter: drop-shadow(0 28px 34px rgba(3, 22, 34, 0.18));
}

.hero-gallery-thumbs {
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  gap: 10px;
  padding: 10px;
  border-color: rgba(177, 213, 218, 0.76);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(7, 36, 51, 0.1);
}

.hero-gallery-thumbs button {
  border-color: rgba(216, 231, 232, 0.96);
  background: linear-gradient(180deg, #ffffff, #f5fbfb);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hero-gallery-thumbs button:hover,
.hero-gallery-thumbs button.is-active {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(40, 198, 215, 0.16), 0 10px 22px rgba(7, 36, 51, 0.08);
}

.catalog-content h2 {
  color: #082838;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
}

.product-decision-grid,
.mini-specs {
  gap: 10px;
  background: transparent;
}

.product-decision-grid div,
.mini-specs div {
  border: 1px solid rgba(216, 231, 232, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfb);
  box-shadow: 0 12px 30px rgba(7, 36, 51, 0.05);
}

.quote-snapshot {
  border-color: rgba(255, 125, 92, 0.24);
  background: linear-gradient(135deg, rgba(255, 125, 92, 0.12), rgba(40, 198, 215, 0.08)), #ffffff;
  box-shadow: 0 18px 44px rgba(7, 36, 51, 0.08);
}

@media (max-width: 1120px) {
  .catalog-item.detail-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-product-gallery,
  .hero-product-gallery .catalog-media-main {
    min-height: 360px;
  }

  .hero-product-gallery .catalog-media-main {
    padding: 24px 18px 104px;
  }

  .hero-gallery-thumbs {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .catalog-content h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}

/* Gallery harmony refinement */
.hero-product-gallery {
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: clamp(500px, 46vw, 640px);
  border-color: rgba(174, 211, 217, 0.9);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 36, 51, 0.1);
}

.hero-product-gallery::before,
.hero-product-gallery::after {
  display: none;
}

.hero-product-gallery .catalog-media-main {
  min-height: clamp(500px, 46vw, 640px);
  padding: clamp(34px, 4.8vw, 68px) clamp(28px, 4vw, 62px) 20px;
}

.media-badge {
  top: 18px;
  left: 18px;
  border-color: rgba(40, 198, 215, 0.28);
  color: #075d83;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(7, 36, 51, 0.08);
}

.hero-gallery-thumbs {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: stretch;
  overflow-y: visible;
  gap: 8px;
  margin: 0;
  padding: 10px 12px 12px;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: rgba(216, 231, 232, 0.96);
  background: #f8fbfb;
  box-shadow: none;
}

.hero-gallery-thumbs button {
  border-radius: 8px;
  background: #ffffff;
}

.hero-gallery-thumbs img {
  aspect-ratio: 1.65;
  padding: 4px;
}

.catalog-media-main {
  transition: opacity 160ms ease, transform 220ms ease;
}

.hero-product-gallery:hover .catalog-media-main {
  transform: scale(1.012);
}

.detail-summary .quote-snapshot {
  position: relative;
  overflow: hidden;
}

.detail-summary .quote-snapshot::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), var(--cyan));
  content: "";
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.custom-addon-card,
.feature-grid article,
.faq-grid article,
.fit-check-grid article,
.light-specs div {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.custom-addon-card:hover,
.feature-grid article:hover,
.fit-check-grid article:hover,
.light-specs div:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(7, 36, 51, 0.08);
}

.comparison-table th {
  width: 260px;
}

/* Product list procurement refinement */
.product-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(216, 231, 232, 0.95);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.product-filter a:hover {
  border-color: rgba(25, 157, 183, 0.42);
  color: #06384f;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 36, 51, 0.06);
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  width: 150px;
  text-align: center;
}

.table-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 112, 88, 0.32);
  border-radius: 6px;
  color: #8c2e1f;
  background: #fff3ee;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.table-quote-link:hover {
  color: #ffffff;
  background: var(--coral);
}

.product-list {
  background:
    linear-gradient(180deg, rgba(247, 250, 249, 0.58), rgba(255, 255, 255, 0.98) 26%),
    #ffffff;
}

.product-list .catalog-item {
  position: relative;
  align-items: stretch;
}

.product-list .catalog-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), rgba(255, 112, 88, 0.78));
  content: "";
}

.product-list .catalog-media {
  min-height: 420px;
  background: linear-gradient(180deg, #ffffff, #eef7f7);
}

.product-list .catalog-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  padding: clamp(24px, 4vw, 52px);
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-list .catalog-item:hover .catalog-media img {
  transform: scale(1.025);
}

.product-list .catalog-content {
  padding: clamp(2px, 1vw, 10px) 0;
}

.product-list .catalog-content > p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.product-list .product-decision-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-list .mini-specs {
  display: none;
}

.catalog-quote-snapshot {
  margin: 0 0 18px;
  padding: 16px 18px;
}

.catalog-quote-snapshot strong {
  font-size: 17px;
}

.list-choice-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: clamp(36px, 6vw, 70px) auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(25, 157, 183, 0.24);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 42, 58, 0.96), rgba(12, 86, 103, 0.9)),
    #082838;
  box-shadow: 0 24px 60px rgba(7, 36, 51, 0.16);
}

.list-choice-cta .eyebrow {
  color: #8ff3e7;
}

.list-choice-cta h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
}

.list-choice-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.list-choice-cta .button {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .hero-product-gallery .catalog-media-main {
    padding-right: clamp(28px, 4vw, 62px);
  }

  .list-choice-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-product-gallery {
    min-height: 390px;
  }

  .hero-product-gallery .catalog-media-main {
    min-height: 390px;
    padding: 34px 18px 16px;
  }

  .hero-gallery-thumbs {
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-y: visible;
    gap: 6px;
    padding: 8px;
  }

  .product-list .catalog-media,
  .product-list .catalog-media img {
    min-height: 300px;
  }

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

  .list-choice-cta {
    width: min(100% - 28px, 1180px);
    padding: 24px;
  }
}
