:root {
  --ink: #101828;
  --ink-soft: #526071;
  --paper: #f5f7fa;
  --surface: #ffffff;
  --surface-alt: #edf2f7;
  --line: #d8e0e9;
  --brand: #1e477e;
  --brand-dark: #0b2347;
  --accent: #f58220;
  --accent-dark: #c95d00;
  --success: #237a57;
  --danger: #a43a32;
  --shadow: 0 20px 60px rgba(11, 35, 71, 0.12);
  --radius: 2px;
  --wrap: 1280px;
}

/* Buyer-facing model differentiation */
.model-fit-section {
  padding-top: 68px;
  padding-bottom: 68px;
  background: #ffffff;
}

.model-fit-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
}

.model-fit-grid article {
  min-width: 0;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-fit-grid h2 {
  margin-bottom: 15px;
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.model-fit-grid h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.model-fit-grid p,
.model-fit-grid li {
  color: var(--ink-soft);
}

.model-fit-grid ul {
  display: grid;
  margin: 0;
  padding-left: 20px;
  gap: 10px;
}

.model-fit-primary {
  background: #f7faff;
}

.product-grid.product-grid-neighbors {
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .model-fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .model-fit-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .model-fit-grid article {
    padding: 24px 20px;
  }

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

/* Quote preparation checklist */
.quote-checklist .checklist-item {
  display: grid;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  gap: 13px;
  align-items: center;
  color: var(--ink-soft);
}

.quote-checklist .checklist-item > span {
  display: grid;
  min-width: 0;
  overflow-wrap: anywhere;
}

.quote-checklist .checklist-item strong {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(243, 155, 33, 0.9);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 35, 71, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(11, 35, 71, 0.045);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.brand img {
  width: 106px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #26374c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 21px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: #241300;
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 7px 18px rgba(245, 130, 32, 0.15);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #ffb547;
  background: #ffb547;
  transform: translateY(-1px);
}

.button svg,
.text-link svg,
.category-tile > svg {
  flex: 0 0 auto;
  margin-left: 9px;
  stroke-width: 2;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: #ffffff;
  background: rgba(17, 22, 24, 0.18);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: #ffffff;
  color: var(--ink);
  background: #ffffff;
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  white-space: nowrap;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--surface);
  place-items: center;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-nav .wrap {
  display: grid;
  gap: 0;
  padding-block: 12px 20px;
}

.mobile-nav a:not(.button) {
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav .button {
  margin-top: 14px;
}

.home-hero {
  position: relative;
  display: flex;
  height: min(620px, calc(100svh - 200px));
  min-height: 480px;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #252a2c;
  background-image: url("../images/banner-01.jpg");
  background-position: center;
  background-size: cover;
}

.hero-overlay,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 19, 0.62);
}

.hero-overlay::after {
  position: absolute;
  inset: 0 44% 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 15, 17, 0.18);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 64px;
}

.hero-content > * {
  max-width: 720px;
}

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

.kicker-light {
  color: #ffc873;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-content h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 800;
}

.hero-lead {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.spec-strip {
  color: #ffffff;
  background: var(--brand-dark);
}

.spec-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spec-strip-grid > div {
  display: grid;
  min-height: 116px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  align-content: center;
}

.spec-strip-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.spec-strip strong {
  font-size: 25px;
}

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

.section {
  padding-block: 92px;
}

.section-muted {
  background: var(--surface-alt);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.two-column-copy h2,
.process-copy h2,
.factory-band h2,
.cta-inner h2,
.specs-layout h2,
.contact-copy h2,
.form-heading h2 {
  margin-bottom: 0;
  font-size: 40px;
}

.split-heading,
.two-column-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p,
.two-column-copy > div:last-child {
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.heading-row .button-secondary,
.selection-note .button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.heading-row .button-secondary:hover,
.selection-note .button-secondary:hover {
  color: #ffffff;
  background: var(--ink);
}

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

.category-tile {
  position: relative;
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-tile:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.category-number {
  display: block;
  margin-bottom: 48px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.category-tile h3 {
  max-width: 280px;
  margin-bottom: 14px;
  font-size: 24px;
}

.category-tile p {
  margin: 0;
  color: var(--ink-soft);
}

.category-tile > svg {
  position: absolute;
  top: 26px;
  right: 26px;
}

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

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  grid-template-rows: auto 1fr;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: #aab4ae;
  box-shadow: 0 14px 34px rgba(19, 25, 28, 0.1);
  transform: translateY(-2px);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  place-items: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform 220ms ease;
}

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

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

.product-meta {
  display: flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  gap: 14px;
  text-transform: uppercase;
}

.source-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.product-card-body > .source-badge {
  margin: -2px 0 13px;
}

.status-source {
  border-color: rgba(47, 115, 84, 0.24);
  color: #205c42;
  background: #edf8f1;
}

.status-warning {
  border-color: rgba(200, 110, 0, 0.28);
  color: #7d4500;
  background: #fff5e5;
}

.status-danger {
  border-color: rgba(164, 58, 50, 0.28);
  color: #7d2c26;
  background: #fff0ee;
}

.status-pending {
  border-color: var(--line);
  color: var(--ink-soft);
  background: var(--surface-alt);
}

.product-card h2 {
  margin-bottom: 11px;
  font-size: 21px;
  line-height: 1.25;
}

.product-card p {
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.process-band {
  color: #ffffff;
  background: var(--ink);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 90px;
}

.process-copy {
  align-self: center;
}

.process-copy p:not(.kicker) {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.process-steps span {
  color: #ffc873;
  font-size: 13px;
  font-weight: 900;
}

.process-steps h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.application-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 235px);
  gap: 18px;
}

.application-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.application-wide {
  grid-row: 1 / 3;
}

.application-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 240ms ease;
}

.application-item:hover img {
  opacity: 0.68;
  transform: scale(1.02);
}

.application-item span {
  position: absolute;
  right: 22px;
  bottom: 19px;
  left: 22px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.factory-band {
  padding-block: 86px;
  color: #ffffff;
  background: var(--brand-dark);
}

.factory-band-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.factory-band p:not(.kicker) {
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.74);
}

.factory-band img {
  width: 100%;
  height: 390px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cta-section {
  padding-block: 64px;
  background: var(--surface);
}

.cta-inner {
  display: flex;
  min-height: 150px;
  padding: 32px 38px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner .button {
  flex: 0 0 auto;
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: 350px;
  color: #ffffff;
  background-color: #242a2d;
  background-image: var(--inner-image);
  background-position: var(--inner-position, center);
  background-size: cover;
  align-items: center;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 60px;
}

.inner-hero h1 {
  max-width: 790px;
  margin-bottom: 17px;
  font-size: 48px;
}

.inner-hero-content > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.catalog-toolbar {
  display: flex;
  margin-bottom: 35px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.catalog-toolbar h2 {
  margin: 0;
  font-size: 38px;
}

.segmented {
  display: inline-flex;
  max-width: 100%;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow-x: auto;
  background: var(--surface);
}

.segmented button {
  min-height: 38px;
  padding: 7px 12px;
  border: 0;
  border-radius: 3px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.segmented button.is-active {
  color: #ffffff;
  background: var(--brand-dark);
}

.empty-state {
  margin-top: 25px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.selection-note {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.selection-note .button {
  margin-top: 12px;
}

.product-detail-section {
  padding: 34px 0 86px;
  background: var(--surface);
}

.breadcrumb {
  display: flex;
  margin-bottom: 28px;
  color: #6b7276;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 9px;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.product-detail-media {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  place-items: center;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  padding: 28px;
  object-fit: contain;
}

.product-detail-copy h1 {
  margin-bottom: 20px;
  font-size: 48px;
}

.product-title-status {
  margin-bottom: 12px;
}

.product-lead {
  color: var(--ink-soft);
  font-size: 18px;
}

.check-list {
  display: grid;
  margin: 25px 0 29px;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--success);
  stroke-width: 3;
}

.product-detail-copy .button-secondary {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}

.product-detail-copy .button-secondary:hover {
  color: #ffffff;
  background: var(--brand-dark);
}

.fine-print {
  margin: 18px 0 0;
  color: #747b7f;
  font-size: 12px;
}

.source-notice {
  display: grid;
  margin-top: 46px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left-width: 5px;
  border-radius: var(--radius);
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.source-notice > div:first-child {
  padding-top: 2px;
}

.source-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.source-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.source-notice.status-source {
  border-left-color: var(--success);
}

.source-notice.status-warning {
  border-left-color: var(--accent-dark);
}

.source-notice.status-danger {
  border-left-color: var(--danger);
}

.specs-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(480px, 1.28fr);
  gap: 80px;
  align-items: start;
}

.specs-layout > div:first-child > p:not(.kicker) {
  margin-top: 20px;
  color: var(--ink-soft);
}

.table-wrap {
  overflow-x: auto;
  border-top: 3px solid var(--brand);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 34%;
  color: var(--ink-soft);
  font-size: 13px;
}

td {
  font-size: 14px;
  font-weight: 700;
}

.product-spec-section td {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.spec-display {
  min-width: 0;
}

.product-spec-section td .source-badge {
  flex: 0 0 auto;
  max-width: 220px;
  text-align: center;
  justify-content: center;
}

.source-legend {
  display: flex;
  margin-top: 23px;
  flex-wrap: wrap;
  gap: 8px;
}

.application-callout {
  display: flex;
  margin-top: 54px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.application-callout h3 {
  margin-bottom: 9px;
}

.application-callout ul {
  display: flex;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  flex-wrap: wrap;
  gap: 7px 24px;
}

.application-callout li::before {
  margin-right: 8px;
  color: var(--accent-dark);
  content: "/";
  font-weight: 900;
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: start;
}

.product-gallery figure,
.factory-grid figure {
  margin: 0;
}

.gallery-main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.gallery-main > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  object-fit: contain;
}

.gallery-main figcaption {
  padding: 12px 15px;
  border-top: 1px solid var(--line);
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
}

.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--accent);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: contain;
}

figcaption {
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-grid article {
  min-height: 280px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.decision-grid article:first-child {
  border-left: 1px solid var(--line);
}

.decision-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.decision-grid h3 {
  margin-bottom: 13px;
  font-size: 20px;
}

.decision-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.application-rows {
  display: grid;
  gap: 70px;
}

.application-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.application-row:nth-child(even) img {
  order: 2;
}

.application-row img {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

.application-row h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.application-row p:not(.kicker) {
  color: var(--ink-soft);
}

.about-intro p {
  font-size: 18px;
}

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

.factory-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.factory-grid .factory-large {
  grid-row: 1 / 3;
}

.factory-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.factory-grid figcaption {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 15px;
  padding: 0;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.8);
}

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

.market-grid > div {
  padding: 28px;
  border-top: 4px solid var(--brand);
  background: var(--surface);
}

.market-grid span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-grid p {
  margin: 22px 0 0;
  font-weight: 700;
}

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

.insight-grid article {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.insight-grid h2 {
  margin-bottom: 17px;
  font-size: 26px;
}

.insight-grid p,
.insight-grid li {
  color: var(--ink-soft);
}

.insight-grid ul {
  margin: 20px 0 0;
  padding-left: 19px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(540px, 1.32fr);
  gap: 78px;
  align-items: start;
}

.contact-methods {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-methods a {
  display: grid;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  gap: 13px;
  align-items: center;
}

.contact-methods a:hover {
  color: var(--brand);
}

.contact-methods span {
  display: grid;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-methods strong {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.pending-note {
  margin-top: 24px;
  padding: 14px;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  background: var(--surface-alt);
  font-size: 13px;
}

.inquiry-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-heading {
  margin-bottom: 28px;
}

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

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

.form-grid label > span {
  font-size: 13px;
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bcc3be;
  border-radius: 4px;
  color: var(--ink);
  background: #ffffff;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 132px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(49, 93, 103, 0.15);
}

[aria-invalid="true"] {
  border-color: var(--danger);
}

.checkbox {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 10px !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox span {
  font-weight: 400 !important;
}

.form-submit {
  margin-top: 23px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--success);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--danger);
}

.simple-hero {
  padding-block: 84px;
  color: #ffffff;
  background: var(--brand-dark);
}

.simple-hero h1,
.not-found h1 {
  margin-bottom: 15px;
  font-size: 48px;
}

.simple-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.legal-copy {
  max-width: 760px;
}

.legal-copy h2 {
  margin: 42px 0 12px;
  font-size: 26px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--ink-soft);
}

.legal-copy a {
  color: var(--brand);
  text-decoration: underline;
}

.not-found {
  display: grid;
  min-height: 620px;
  align-items: center;
  text-align: center;
}

.data-review-hero {
  background: linear-gradient(135deg, #1e3f47 0%, #315d67 100%);
}

.review-summary-section {
  padding-block: 36px;
  background: var(--brand-dark);
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-metrics > div {
  min-width: 0;
  padding: 12px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.review-metrics > div:first-child {
  border-left: 0;
}

.review-metrics strong,
.review-metrics span {
  display: block;
}

.review-metrics strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
}

.review-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.review-alert {
  padding: 29px;
  border: 1px solid var(--line);
  border-left-width: 5px;
  border-radius: var(--radius);
  background: var(--surface);
}

.review-alert.status-danger {
  border-left-color: var(--danger);
}

.review-alert.status-warning {
  border-left-color: var(--accent-dark);
}

.review-alert h3 {
  margin-top: 18px;
  font-size: 24px;
}

.review-alert p {
  color: var(--ink-soft);
}

.review-alert .text-link {
  margin-top: 22px;
}

.review-table table {
  min-width: 980px;
}

.review-table th:first-child {
  width: 90px;
}

.review-table th:last-child {
  width: auto;
}

.review-table td {
  font-weight: 400;
}

.review-table td:nth-child(3),
.review-table td:nth-child(4) {
  font-weight: 800;
  text-align: center;
}

.review-table a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.missing-field-grid article {
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.missing-field-grid h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.missing-field-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.review-checklist {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: review-step;
  gap: 12px;
}

.review-checklist li {
  position: relative;
  padding: 17px 18px 17px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: review-step;
}

.review-checklist li::before {
  position: absolute;
  top: 14px;
  left: 17px;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  content: counter(review-step);
  font-size: 12px;
  font-weight: 900;
  place-items: center;
}

.site-footer {
  padding: 70px 0 24px;
  color: #ffffff;
  background: #07172f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  gap: 54px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer .footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer a {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: #ffc873;
}

.footer-bottom {
  display: flex;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
  justify-content: space-between;
  gap: 20px;
}

.whatsapp-chat {
  position: fixed;
  z-index: 150;
  right: max(22px, calc(env(safe-area-inset-right) + 16px));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
  display: grid;
  justify-items: end;
}

.whatsapp-float {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  background: #128c7e;
  box-shadow: 0 12px 30px rgba(7, 23, 47, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  place-items: center;
}

.whatsapp-float::before {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 11px;
  border-radius: var(--radius);
  color: #ffffff;
  background: #07172f;
  box-shadow: 0 8px 22px rgba(7, 23, 47, 0.2);
  content: attr(data-label);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #ffffff;
  background: #0f786c;
  box-shadow: 0 15px 34px rgba(7, 23, 47, 0.34);
  transform: translateY(-2px);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-chat.is-open .whatsapp-float::before {
  display: none;
}

.whatsapp-brand-icon {
  display: block;
  flex: 0 0 auto;
}

.whatsapp-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100vh - 112px);
  overflow: auto;
  border: 1px solid rgba(7, 23, 47, 0.12);
  border-radius: 8px;
  color: #162238;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(7, 23, 47, 0.24);
}

.whatsapp-chat-panel[hidden] {
  display: none;
}

.whatsapp-chat-header {
  display: grid;
  padding: 18px;
  color: #ffffff;
  background: #07172f;
  grid-template-columns: 42px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 12px;
}

.whatsapp-chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: #128c7e;
  place-items: center;
}

.whatsapp-chat-identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.whatsapp-chat-identity strong {
  font-size: 16px;
  line-height: 1.25;
}

.whatsapp-chat-identity span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.whatsapp-chat-close {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.whatsapp-chat-close:hover,
.whatsapp-chat-close:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.whatsapp-chat-body {
  padding: 20px;
}

.whatsapp-chat-description {
  margin: 0 0 16px;
  color: #4e5d73;
  font-size: 14px;
  line-height: 1.55;
}

.whatsapp-chat-product {
  display: grid;
  margin: 0 0 16px;
  padding: 11px 12px;
  border-left: 3px solid #128c7e;
  color: #162238;
  background: #f1f7f5;
  gap: 2px;
}

.whatsapp-chat-product span {
  color: #607083;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.whatsapp-chat-product strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.4;
}

.whatsapp-chat-label {
  display: block;
  margin-bottom: 7px;
  color: #162238;
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-chat-message {
  display: block;
  width: 100%;
  min-height: 104px;
  padding: 12px;
  resize: vertical;
  border: 1px solid #c8d0da;
  border-radius: 6px;
  color: #162238;
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.whatsapp-chat-message:focus {
  border-color: #128c7e;
  box-shadow: 0 0 0 3px rgba(18, 140, 126, 0.14);
  outline: 0;
}

.whatsapp-chat-send {
  display: flex;
  min-height: 48px;
  margin-top: 12px;
  padding: 12px 15px;
  border-radius: 6px;
  color: #ffffff;
  background: #128c7e;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.whatsapp-chat-send:hover,
.whatsapp-chat-send:focus-visible {
  color: #ffffff;
  background: #0f786c;
}

.whatsapp-chat-note {
  margin: 9px 0 0;
  color: #69778a;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 17px;
  }

  .brand {
    min-width: 150px;
  }

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

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

  .decision-grid article {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(130px, 0.7fr));
    gap: 30px;
  }
}

@media (max-width: 960px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 36px));
  }

  .desktop-nav,
  .header-quote {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .split-heading,
  .two-column-copy,
  .process-layout,
  .factory-band-grid,
  .specs-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .process-layout {
    gap: 54px;
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 40px;
  }

  .application-row {
    gap: 36px;
  }

  .contact-copy {
    max-width: 620px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 112px;
    height: 44px;
  }

  .home-hero {
    height: 480px;
    min-height: 480px;
    background-position: 58% center;
  }

  .hero-overlay::after {
    right: 16%;
  }

  .hero-content h1 {
    max-width: 540px;
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .spec-strip-grid > div,
  .spec-strip-grid > div:first-child {
    min-height: 100px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section {
    padding-block: 68px;
  }

  .section-heading h2,
  .two-column-copy h2,
  .process-copy h2,
  .factory-band h2,
  .cta-inner h2,
  .specs-layout h2,
  .contact-copy h2,
  .form-heading h2 {
    font-size: 34px;
  }

  .heading-row,
  .catalog-toolbar,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .product-grid,
  .product-grid-three,
  .market-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 240px 240px;
  }

  .application-wide {
    grid-row: auto;
  }

  .factory-band-grid img {
    height: 330px;
  }

  .inner-hero {
    min-height: 330px;
  }

  .inner-hero h1 {
    font-size: 40px;
  }

  .catalog-toolbar {
    align-items: stretch;
  }

  .segmented {
    width: 100%;
  }

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

  .product-detail-media {
    max-width: 620px;
    margin-inline: auto;
  }

  .product-detail-copy h1 {
    font-size: 40px;
  }

  .application-callout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .application-row {
    grid-template-columns: 1fr;
  }

  .application-row:nth-child(even) img {
    order: initial;
  }

  .application-row img {
    height: 340px;
  }

  .factory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 220px);
  }

  .factory-grid .factory-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .review-metrics > div,
  .review-metrics > div:first-child {
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .review-alert-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .home-hero {
    height: 460px;
    min-height: 460px;
  }

  .hero-content {
    padding-block: 45px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-lead {
    line-height: 1.48;
  }

  .button-row .button {
    width: 100%;
  }

  .spec-strip strong {
    font-size: 21px;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading h2,
  .two-column-copy h2,
  .process-copy h2,
  .factory-band h2,
  .cta-inner h2,
  .specs-layout h2,
  .contact-copy h2,
  .form-heading h2 {
    font-size: 31px;
  }

  .category-grid,
  .product-grid,
  .product-grid-three,
  .market-grid,
  .insight-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .missing-field-grid {
    grid-template-columns: 1fr;
  }

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

  .product-spec-section td {
    display: table-cell;
  }

  .product-spec-section td .source-badge {
    display: flex;
    margin-top: 8px;
  }

  .category-tile {
    min-height: 250px;
  }

  .process-steps li {
    grid-template-columns: 42px 1fr;
  }

  .inner-hero {
    min-height: 310px;
  }

  .inner-hero h1 {
    font-size: 35px;
  }

  .inner-hero-content > p:last-child {
    font-size: 16px;
  }

  .segmented button {
    flex: 0 0 auto;
  }

  .product-detail-section {
    padding-bottom: 64px;
  }

  .product-detail-copy h1 {
    font-size: 36px;
  }

  .specs-layout {
    gap: 28px;
  }

  th,
  td {
    padding: 14px 12px;
  }

  th {
    width: 40%;
  }

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

  .decision-grid article {
    min-height: 230px;
    border-left: 1px solid var(--line);
  }

  .application-row img {
    height: 270px;
  }

  .factory-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .factory-grid figure,
  .factory-grid .factory-large {
    height: 260px;
    grid-column: auto;
  }

  .inquiry-form {
    padding: 24px 18px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Product-led engineering system */
.home-hero-v2 {
  position: relative;
  display: block;
  height: auto;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: #0b2347;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(124, 169, 219, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 169, 219, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(245, 130, 32, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 130, 32, 0.07) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px, 280px 280px, 280px 280px;
  pointer-events: none;
}

.hero-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: stretch;
}

.hero-v2-copy {
  display: flex;
  max-width: 670px;
  padding: 86px 58px 82px 0;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  display: flex;
  margin-bottom: 25px;
  color: #bad1ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
  gap: 11px;
}

.hero-label span {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent);
}

.hero-v2-copy h1 {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-v2-copy .hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #d0dded;
  font-size: 18px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  margin-top: 43px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  gap: 30px;
}

.hero-proof span {
  display: grid;
  color: #9fb6d3;
  font-size: 12px;
  line-height: 1.35;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.hero-v2-visual {
  position: relative;
  min-height: 650px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.visual-index {
  position: absolute;
  z-index: 3;
  top: 48px;
  left: 42px;
  display: grid;
  color: #9fb6d3;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-index strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 14px;
}

.product-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(500px, 80%);
  aspect-ratio: 1;
  border: 1px solid rgba(152, 191, 234, 0.2);
  border-radius: 50%;
  transform: translate(-48%, -49%);
}

.product-halo::before,
.product-halo::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(245, 130, 32, 0.22);
  border-radius: inherit;
  content: "";
}

.product-halo::after {
  inset: 27%;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-product {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  width: min(620px, 94%);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.33));
  transform: translate(-49%, -50%);
}

.hero-spec-card {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 30px;
  width: min(350px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 21, 45, 0.86);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-spec-card > span {
  display: block;
  margin-bottom: 12px;
  color: #f9a75f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-spec-card dl,
.hero-spec-card div {
  margin: 0;
}

.hero-spec-card dl {
  display: grid;
  gap: 8px;
}

.hero-spec-card dl div {
  display: flex;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  justify-content: space-between;
  gap: 18px;
}

.hero-spec-card dt {
  color: #9fb6d3;
  font-size: 12px;
}

.hero-spec-card dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.visual-rail {
  position: absolute;
  right: 20px;
  top: 48px;
  display: flex;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  letter-spacing: 0.12em;
  gap: 12px;
}

.spec-strip-v2 {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(11, 35, 71, 0.06);
}

.spec-strip-v2 .spec-strip-grid > div,
.spec-strip-v2 .spec-strip-grid > div:first-child {
  min-height: 104px;
  border-color: var(--line);
}

.spec-strip-v2 .spec-strip-grid > div {
  gap: 4px;
}

.spec-strip-v2 .spec-strip-grid span {
  color: #66768a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-strip-v2 .spec-strip-grid strong {
  color: var(--brand-dark);
  font-size: 24px;
}

.selection-entry {
  background: #f8fafc;
}

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

.selection-card {
  display: flex;
  min-height: 340px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  flex-direction: column;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.selection-card:hover {
  color: #ffffff;
  background: var(--brand-dark);
  transform: translateY(-3px);
}

.selection-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  color: var(--accent-dark);
  background: #fff0e3;
  place-items: center;
}

.selection-card:hover .selection-icon {
  color: #ffffff;
  background: var(--accent);
}

.selection-card small {
  color: #738096;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.selection-card h3 {
  margin: 12px 0 14px;
  font-size: 23px;
  line-height: 1.16;
}

.selection-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.selection-card:hover p,
.selection-card:hover small {
  color: #b8c8dc;
}

.selection-card > strong {
  display: inline-flex;
  margin-top: auto;
  color: var(--brand);
  font-size: 12px;
  align-items: center;
}

.selection-card:hover > strong {
  color: #ffffff;
}

.selection-card > strong svg {
  margin-left: 7px;
}

.section-intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.selected-models .product-grid,
.catalog-section .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  border-color: #d3dce7;
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(11, 35, 71, 0.035);
}

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

.product-image {
  aspect-ratio: 4 / 3;
  border-bottom-color: #d9e3ee;
  background-color: #f7fafd;
  background-image:
    linear-gradient(rgba(30, 71, 126, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 126, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.product-image img {
  padding: 24px;
}

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

.product-meta {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-card h2 {
  font-size: 22px;
}

.product-card p {
  -webkit-line-clamp: 3;
}

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

.product-card-specs span {
  display: grid;
  padding: 12px 24px;
  color: #7b8796;
  font-size: 12px;
  text-transform: uppercase;
}

.product-card-specs span + span {
  border-left: 1px solid var(--line);
}

.product-card-specs strong {
  overflow: hidden;
  color: #1b2b40;
  font-size: 12px;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.model-ladder-section {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.model-ladder-header {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 50px;
  align-items: end;
}

.model-ladder-header h2 {
  margin: 0;
  font-size: 38px;
}

.model-ladder-header > p {
  margin: 0;
  color: var(--ink-soft);
}

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

.model-ladder a {
  position: relative;
  display: grid;
  min-height: 155px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-content: space-between;
}

.model-ladder a:hover {
  color: #ffffff;
  background: var(--brand);
}

.model-ladder small {
  color: #718096;
  font-size: 12px;
  font-weight: 800;
}

.model-ladder a:hover small {
  color: #cbd9e9;
}

.model-ladder strong {
  font-size: 22px;
}

.model-ladder span {
  position: absolute;
  top: 18px;
  right: 18px;
}

.process-band-v2 {
  background: #091a35;
}

.process-band-v2 .process-steps li span {
  color: #ff9c48;
}

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

.application-signal-grid > a {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.application-signal-grid > a > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 55px;
  color: #ffffff;
  background: var(--brand);
  place-items: center;
}

.application-signal-grid small {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.application-signal-grid h3 {
  max-width: 330px;
  margin: 14px 0;
  font-size: 25px;
}

.application-signal-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.proof-section {
  background: #eaf0f7;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 85px;
  align-items: center;
}

.proof-layout > div:first-child h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

.proof-layout > div:first-child > p:not(.kicker) {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.proof-section .button-secondary {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}

.proof-board {
  display: grid;
  border-top: 1px solid #c9d5e3;
  border-left: 1px solid #c9d5e3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-board article {
  display: grid;
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid #c9d5e3;
  border-bottom: 1px solid #c9d5e3;
  background: rgba(255, 255, 255, 0.55);
  grid-template-columns: 38px 1fr;
  gap: 15px;
}

.proof-board article > span {
  color: var(--accent-dark);
}

.proof-board strong {
  font-size: 16px;
}

.proof-board p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.blueprint-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #0b2347;
}

.inner-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.inner-hero-content {
  padding-block: 64px;
}

.inner-hero h1 {
  margin-bottom: 19px;
  font-size: 52px;
  letter-spacing: -0.025em;
}

.inner-hero-system {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inner-hero-system span {
  display: flex;
  min-height: 90px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #d6e4f3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
}

.inner-hero-system svg {
  color: #ff9c48;
}

.catalog-toolbar {
  align-items: center;
}

.catalog-toolbar > div:first-child {
  max-width: 650px;
}

.segmented {
  border-radius: 2px;
}

.product-detail-section {
  padding-top: 30px;
  background: #f8fafc;
}

.product-detail-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  gap: 70px;
}

.product-detail-media {
  position: relative;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border: 0;
  background-color: #eaf0f7;
  background-image:
    linear-gradient(rgba(30, 71, 126, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 126, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
}

.product-detail-media img {
  position: relative;
  z-index: 2;
  padding: 60px 34px 36px;
  filter: drop-shadow(0 24px 20px rgba(11, 35, 71, 0.2));
}

.media-model {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 22px;
  color: rgba(30, 71, 126, 0.11);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.media-axis {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  color: #5e7085;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  justify-content: space-between;
}

.product-detail-copy h1 {
  font-size: 50px;
  letter-spacing: -0.03em;
}

.product-lead {
  line-height: 1.7;
}

.product-snapshot {
  display: grid;
  margin: 27px 0 29px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-snapshot div {
  display: grid;
  min-height: 95px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-content: center;
}

.product-snapshot span {
  color: #7b8796;
  font-size: 12px;
  text-transform: uppercase;
}

.product-snapshot strong {
  margin-top: 5px;
  color: var(--brand-dark);
  font-size: 15px;
}

.selection-decision {
  display: grid;
  margin-top: 54px;
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  color: #ffffff;
  background: var(--brand-dark);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 55px;
  align-items: center;
}

.selection-decision > div > span {
  float: left;
  margin: 2px 15px 20px 0;
  color: #ff9c48;
}

.selection-decision .kicker {
  color: #9eb8d8;
}

.selection-decision h2 {
  margin: 0;
  font-size: 29px;
}

.selection-decision > p {
  margin: 0;
  color: #c6d5e6;
}

.product-spec-section {
  background: #ffffff;
}

.table-wrap {
  border-top-color: var(--accent);
}

.spec-policy {
  display: grid;
  margin-top: 25px;
  padding: 17px;
  border: 1px solid #ccd8e5;
  color: var(--brand-dark);
  background: #f4f8fc;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.spec-policy p {
  margin: 0 !important;
  font-size: 13px;
}

.application-row-v2 {
  align-items: stretch;
}

.application-row-v2 .application-signal {
  display: flex;
  min-height: 330px;
  padding: 35px;
  color: #ffffff;
  background-color: var(--brand-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  flex-direction: column;
  justify-content: space-between;
}

.application-row-v2 .application-signal > span {
  color: #ff9c48;
}

.application-row-v2 .application-signal small {
  color: #a7bdd8;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-row-v2 .application-signal strong {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.factory-grid-v2 {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  grid-template-rows: 520px;
}

.factory-grid-v2 .factory-large {
  grid-column: auto;
  grid-row: auto;
}

.factory-grid-v2 figure {
  height: 520px;
}

.factory-grid-v2 img {
  object-fit: cover;
}

.contact-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 85px;
  align-items: start;
}

.contact-intro h2 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 42px;
}

.contact-intro > p:not(.kicker) {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.contact-methods-card {
  margin-top: 0;
  padding: 12px 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.contact-pending {
  margin-top: 45px;
}

.inquiry-form {
  border: 0;
  border-top: 4px solid var(--accent);
  box-shadow: 0 24px 70px rgba(11, 35, 71, 0.1);
}

@media (max-width: 1120px) {
  .hero-v2-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .hero-v2-copy h1 {
    font-size: 58px;
  }

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

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

  .proof-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

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

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .product-detail-media,
  .product-detail-copy {
    min-width: 0;
  }

  .hero-v2-copy {
    max-width: 760px;
    padding: 72px 0 48px;
  }

  .hero-v2-visual {
    min-height: 520px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .inner-hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .inner-hero-system {
    margin-bottom: 52px;
  }

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

  .application-signal-grid {
    grid-template-columns: 1fr;
  }

  .application-signal-grid > a {
    min-height: 270px;
  }

  .application-signal-grid > a > span {
    margin-bottom: 38px;
  }

  .selection-decision,
  .contact-overview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .home-hero-v2,
  .hero-v2-grid {
    min-height: 0;
  }

  .hero-v2-copy h1 {
    font-size: 49px;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-v2-visual {
    min-height: 455px;
  }

  .hero-product {
    width: min(580px, 96%);
  }

  .model-ladder-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof-board {
    grid-template-columns: 1fr;
  }

  .factory-grid-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .factory-grid-v2 figure,
  .factory-grid-v2 .factory-large {
    height: 340px;
  }
}

@media (max-width: 540px) {
  .hero-v2-copy {
    padding-top: 54px;
  }

  .hero-v2-copy h1 {
    font-size: 41px;
  }

  .hero-v2-copy .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-v2-visual {
    min-height: 400px;
  }

  .visual-index {
    top: 28px;
    left: 20px;
  }

  .visual-rail {
    display: none;
  }

  .hero-spec-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .selection-grid,
  .selected-models .product-grid,
  .catalog-section .product-grid,
  .model-ladder {
    grid-template-columns: 1fr;
  }

  .selection-card {
    min-height: 290px;
  }

  .inner-hero h1 {
    font-size: 37px;
  }

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

  .inner-hero-system span {
    min-height: 78px;
    padding: 14px;
  }

  .product-detail-media {
    aspect-ratio: 1 / 1;
  }

  .product-detail-copy h1 {
    font-size: 38px;
  }

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

  .selection-decision {
    padding: 24px 20px;
  }

  .selection-decision h2 {
    font-size: 25px;
  }

  .application-signal-grid > a {
    min-height: 250px;
    padding: 24px;
  }
}

/* Verified company identity, direct contact and compact inline icons. */
.icon {
  display: block;
  flex: 0 0 auto;
}

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

.identity-grid article,
.inquiry-path-grid > a {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.identity-grid article {
  border-top: 4px solid var(--brand);
}

.identity-grid span,
.identity-grid strong,
.identity-grid p {
  display: block;
  overflow-wrap: anywhere;
}

.identity-grid span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.identity-grid strong {
  margin-top: 18px;
  color: var(--brand-dark);
  font-size: 19px;
}

.identity-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.inquiry-path-grid > a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  gap: 15px;
  align-items: start;
  transition: border-color 160ms ease, transform 160ms ease;
}

.inquiry-path-grid > a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.inquiry-path-grid span,
.inquiry-path-grid strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.inquiry-path-grid strong {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 18px;
}

.quote-direct-contact {
  display: grid;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  gap: 12px;
}

.quote-direct-contact .kicker {
  margin-bottom: 2px;
}

.quote-direct-contact a {
  display: flex;
  min-width: 0;
  color: var(--brand-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
  align-items: flex-start;
  gap: 10px;
}

.quote-direct-contact a:hover {
  color: var(--accent-dark);
}

@media (max-width: 960px) {
  .identity-grid,
  .inquiry-path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .identity-grid article,
  .inquiry-path-grid > a {
    padding: 22px 20px;
  }

  .quote-direct-contact {
    padding: 20px;
  }
}

/* Product-family architecture and aerial-platform review pages. */
.product-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-family-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: #ffffff;
  grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-family-grid-hub .product-family-card {
  grid-template-columns: 1fr;
}

.product-family-card:hover {
  border-color: #8fa7c2;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-family-media {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background-color: #eef3f8;
  background-image:
    linear-gradient(rgba(30, 71, 126, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 126, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  place-items: center;
}

.product-family-grid-hub .product-family-media {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.product-family-media img {
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
}

.product-family-media small,
.media-disclosure {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(9, 26, 53, 0.9);
}

.product-family-card > div:last-child {
  display: flex;
  min-width: 0;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
}

.product-family-card h2,
.product-family-card h3 {
  margin: 8px 0 14px;
  font-size: 28px;
  line-height: 1.18;
}

.product-family-card p:not(.kicker) {
  margin: 0;
  color: var(--ink-soft);
}

.product-family-card > div:last-child > span {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  align-items: center;
  gap: 8px;
}

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

.product-family-card dl div {
  padding: 14px 10px 0 0;
}

.product-family-card dt {
  color: var(--ink-soft);
  font-size: 12px;
}

.product-family-card dd {
  margin: 5px 0 0;
  font-weight: 800;
}

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

.range-fact-grid article {
  min-width: 0;
  min-height: 155px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.range-fact-grid span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.range-fact-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--brand-dark);
  font-size: 25px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.aerial-product-grid {
  grid-template-columns: minmax(0, 410px);
}

.aerial-product-card .product-image {
  position: relative;
}

.aerial-product-card .product-image img,
.aerial-product-media img {
  padding: 20px;
  filter: none;
  object-fit: contain;
}

.aerial-product-media {
  padding-bottom: 44px;
}

.product-media-status {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 11px 16px;
  color: #ffffff;
  font-size: 12px;
  background: #18365e;
}

.media-review-label {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(9, 26, 53, 0.92);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.aerial-media-showcase-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f7fa;
}

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

.aerial-media-figure {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: #ffffff;
  grid-template-rows: auto 1fr;
}

.aerial-media-figure.is-featured {
  grid-column: span 2;
}

.aerial-media-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  padding: 10px;
  background-color: #f7f9fb;
  object-fit: contain;
}

.aerial-media-figure figcaption {
  min-height: 72px;
  padding: 13px 15px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: #ffffff;
  font-size: 12px;
  line-height: 1.5;
}

.media-verification-bar {
  display: grid;
  margin-top: 18px;
  padding: 17px 19px;
  border-left: 4px solid var(--accent);
  color: var(--ink-soft);
  background: #ffffff;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
}

.media-verification-bar span {
  color: var(--accent-dark);
}

.media-verification-bar p {
  margin: 0;
}

.aerial-review-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
  align-items: start;
}

.aerial-gallery-main {
  position: relative;
  min-width: 0;
  border-radius: 2px;
  background-color: #eaf0f7;
  background-image:
    linear-gradient(rgba(30, 71, 126, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 71, 126, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.aerial-gallery-main > img {
  height: auto;
  aspect-ratio: 3 / 2;
  padding: 18px;
  object-fit: contain;
}

.aerial-gallery-main figcaption {
  min-height: 74px;
  color: var(--ink-soft);
  background: #ffffff;
  font-size: 12px;
  line-height: 1.5;
}

.aerial-gallery-thumbs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.aerial-gallery-thumbs .gallery-thumb {
  border-radius: 2px;
}

.aerial-gallery-thumbs .gallery-thumb img {
  height: auto;
  aspect-ratio: 3 / 2;
  padding: 3px;
  background: #ffffff;
}

.aerial-gallery-disclosure {
  margin: 0;
  padding: 13px 15px;
  border-left: 4px solid var(--accent);
  color: var(--ink-soft);
  background: #ffffff;
  font-size: 12px;
  line-height: 1.55;
  grid-column: 1 / -1;
}

.media-source-note {
  display: grid;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: #ffffff;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
}

.media-source-note > span {
  color: var(--accent-dark);
}

.media-source-note h2 {
  margin: 5px 0 10px;
  font-size: 27px;
}

.media-source-note p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 15px 12px 15px 28px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  position: absolute;
  top: 21px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  content: "";
}

@media (max-width: 1050px) {
  .product-family-card {
    grid-template-columns: 1fr;
  }

  .product-family-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .aerial-review-gallery {
    grid-template-columns: minmax(0, 1fr) 170px;
  }
}

@media (max-width: 760px) {
  .whatsapp-chat {
    right: max(14px, calc(env(safe-area-inset-right) + 10px));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 10px));
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float::before {
    display: none;
  }

  .whatsapp-chat-panel {
    width: min(352px, calc(100vw - 28px));
    max-height: calc(100vh - 92px);
  }

  .whatsapp-chat-header {
    padding: 15px;
  }

  .whatsapp-chat-body {
    padding: 17px;
  }

  .product-family-grid,
  .range-fact-grid {
    grid-template-columns: 1fr;
  }

  .product-family-card > div:last-child,
  .media-source-note {
    padding: 22px 20px;
  }

  .product-family-card h2,
  .product-family-card h3 {
    font-size: 24px;
  }

  .range-fact-grid article {
    min-height: 120px;
  }

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

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

  .aerial-media-figure.is-featured {
    grid-column: 1 / -1;
  }

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

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

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

  .aerial-media-figure.is-featured {
    grid-column: auto;
  }

  .aerial-media-figure figcaption {
    min-height: 0;
  }
}

@media print {
  .whatsapp-chat {
    display: none;
  }
}
