@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #003a9b;
  --blue-dark: #002867;
  --blue-light: #eef5ff;
  --text: #172033;
  --muted: #667085;
  --line: #e5eaf2;
  --surface: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  --page-container: 1400px;
  --page-pad: 40px;
  --page-shell: 1480px;
  --page-gutter: max(var(--page-pad), calc((100vw - var(--page-container)) / 2));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

.header-shell {
  width: 100%;
  max-width: none;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 44px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 58px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  white-space: nowrap;
}

.region-picker,
.icon-btn {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
}

.region-picker {
  min-width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.region-picker strong {
  color: #101828;
  font-size: 15px;
  font-weight: 900;
}

.social-links {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
}

.social-links a {
  min-width: 26px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a:hover {
  background: var(--blue-light);
}

.icon-btn {
  width: 44px;
}

.search-btn {
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.primary-nav {
  min-width: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.1vw, 20px);
  color: #273142;
  font-size: 12.5px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .header-shell {
    padding: 0 28px;
    gap: 18px;
  }

  .brand {
    width: 148px;
  }

  .primary-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }
}

.primary-nav > a,
.nav-mega-item > a {
  height: 78px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.primary-nav > a:hover,
.nav-mega-item > a:hover,
.nav-mega-item:hover > a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.primary-nav > a.active,
.nav-mega-item > a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-mega-item {
  height: 78px;
  display: inline-flex;
  align-items: center;
}

.products-mega {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 28px;
  padding: 28px 38px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-mega-item:hover .products-mega,
.nav-mega-item:focus-within .products-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mega-item.mega-closed .products-mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

.mega-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
}

.mega-product-column {
  min-height: 165px;
  padding: 0 26px 20px;
  border-left: 1px solid #d8dee8;
}

.mega-product-column:nth-child(4n + 1) {
  border-left: 0;
  padding-left: 0;
}

.mega-product-column img {
  width: 94px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.mega-product-column h3 {
  color: #20242b;
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.mega-product-column a {
  display: block;
  height: auto;
  border: 0;
  color: #20242b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
}

.mega-product-column a:hover {
  color: var(--blue);
}

.mega-side-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.mega-promo {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
}

.mega-promo img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  display: block;
}

.mega-promo strong {
  display: block;
  padding: 14px 18px 10px;
  font-size: 16px;
  line-height: 1.2;
}

.mega-promo span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin: 4px 18px 16px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.mega-quick-link {
  min-height: 60px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #eef4ff;
}

.mega-quick-link span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
}

.mega-quick-link strong {
  color: #20242b;
  font-size: 14px;
}

main {
  overflow: hidden;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
  animation: fadePage 0.28s ease;
}

@keyframes fadePage {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.95fr);
  gap: 0;
}

.hero-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--soft);
  box-shadow: none;
}

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

.hero-card:hover img {
  transform: scale(1.04);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.18) 100%);
}

.hero-card-small::after {
  background: linear-gradient(180deg, rgba(0, 40, 103, 0.12), rgba(0, 40, 103, 0.72));
}

.hero-card-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 76px 72px;
}

.hero-card-content span,
.solution-grid span,
.highlight-grid span {
  display: inline-flex;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-card-content h1 {
  color: #101828;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.hero-card-content p {
  color: var(--muted);
  max-width: 430px;
  margin-bottom: 26px;
}

.hero-card-content strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  background: var(--blue);
  color: #ffffff;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
}

.hero-slide-controls {
  position: absolute;
  left: 56px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slide-controls button {
  width: 36px;
  height: 5px;
  border: 0;
  background: rgba(0, 58, 155, 0.22);
}

.hero-slide-controls button.active {
  background: var(--blue);
}

.hero-card-small {
  display: flex;
  align-items: end;
}

.hero-card-small .hero-card-content {
  align-self: end;
  padding: 48px;
}

.hero-card-small .hero-card-content span,
.hero-card-small .hero-card-content h2 {
  color: #ffffff;
}

.hero-card-small .hero-card-content h2 {
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.hero-card-small .hero-card-content strong {
  background: #ffffff;
  color: var(--blue);
}

.statement-band {
  margin: 34px 0;
  background: var(--blue);
  color: #ffffff;
  padding: 44px 28px;
  text-align: center;
}

.statement-band h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.solution-ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--blue);
  padding: 22px 0;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 38px;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  position: relative;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: -24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%);
}

.solution-ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-marquee-section {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 54px 0 42px;
  overflow: hidden;
}

.partner-marquee-heading {
  width: 100%;
  max-width: var(--page-container);
  margin: 0 auto 26px;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
}

.partner-marquee-heading span {
  color: var(--blue);
  display: inline-flex;
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: -12px;
}

.partner-marquee-heading h2 {
  color: #101828;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  max-width: 620px;
}

.partner-marquee-heading a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--blue);
  background: #ffffff;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(130px, 14vw);
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.partner-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 18px;
  animation: partnerMarquee 42s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
  animation-play-state: paused;
}

.partner-logo-card {
  width: 210px;
  height: 112px;
  display: block;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.partner-logo-card:hover {
  border-color: rgba(0, 58, 155, 0.3);
  background: #f8fbff;
}

.partner-logo-panel {
  width: 100%;
  height: 100%;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #f6f9fd);
}

.partner-logo-panel img {
  max-width: 86%;
  max-height: 70%;
  object-fit: contain;
}

.partner-logo-panel strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

@keyframes partnerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .partner-marquee-track {
    animation: none;
  }
}

.need-finder-section,
.applications-section,
.workflow-band {
  max-width: var(--page-container);
  margin: 0 auto;
  padding: 54px var(--page-pad);
}

.need-finder-section {
  max-width: none;
  padding: 76px var(--page-gutter);
  background:
    linear-gradient(135deg, rgba(238, 245, 255, 0.95), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 20% 10%, rgba(0, 58, 155, 0.12), transparent 34%);
}

.need-finder-section .section-heading {
  margin-bottom: 34px;
}

.need-experience-board {
  max-width: var(--page-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.need-tabs {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  position: sticky;
  top: 102px;
  align-self: stretch;
  height: 100%;
}

.need-tabs button {
  min-height: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #344054;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.need-tabs button span,
.need-tabs button em {
  display: block;
}

.need-tabs button span {
  color: #101828;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.need-tabs button em {
  color: var(--muted);
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.need-tabs button:hover {
  transform: translateX(4px);
  border-color: rgba(0, 58, 155, 0.35);
}

.need-tabs button.active {
  background: var(--blue);
  border-color: var(--blue);
}

.need-tabs button.active span,
.need-tabs button.active em {
  color: #ffffff;
}

.need-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}

.need-advisor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  min-height: 520px;
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
}

.need-advisor-copy {
  padding: clamp(28px, 4vw, 42px);
}

.need-advisor-copy > span,
.need-card div > span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.need-advisor-copy h3 {
  color: #101828;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 12px 0 14px;
}

.need-advisor-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
}

.need-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.need-flow strong {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: #f8fbff;
  padding: 0 13px;
  color: #101828;
  font-size: 14px;
}

.need-flow em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.need-advisor-copy a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #ffffff;
  border-radius: 4px;
  padding: 0 18px;
  font-weight: 900;
}

.need-advisor-route {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  border-left: 1px solid var(--line);
  background: #ffffff;
}

.need-advisor-route > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.need-route-links {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.need-route-links > span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.need-route-links h4 {
  color: #101828;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.need-route-links .need-card-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.need-route-links .need-card {
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 118px;
}

.need-route-links .need-card img {
  min-height: 118px;
}

.need-route-links .need-card div {
  padding: 14px;
}

.need-route-links .need-card h3 {
  font-size: 16px;
}

.need-route-links .need-card p {
  display: none;
}

.need-recommendation-block {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 22px;
}

.need-recommendation-block > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.need-recommendation-block > div:first-child span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.need-recommendation-block > div:first-child h3 {
  color: #101828;
  max-width: 520px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.need-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 150px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.need-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 58, 155, 0.35);
}

.need-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  background: var(--soft);
}

.need-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.need-card h3 {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 8px 0;
}

.need-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.need-card strong {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.need-card:hover strong {
  background: var(--blue);
  color: #ffffff;
}

.section-block {
  width: 100%;
  max-width: var(--page-shell);
  margin: 0 auto;
  padding: 42px var(--page-pad);
}

#home-page .section-block:first-of-type,
#products-page .section-block {
  max-width: none;
  margin: 0;
  padding: 54px var(--page-pad) 60px;
  background: #f4f4f4;
}

.featured-products-section {
  background: #ffffff;
}

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

.featured-product-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: block;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 58, 155, 0.32);
}

.featured-product-media {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.featured-product-media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.featured-product-card:hover .featured-product-media > img {
  transform: scale(1.035);
}

.featured-product-media .product-logo-panel {
  width: 112px;
  height: 56px;
  min-height: 0;
  position: absolute;
  left: 16px;
  bottom: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  padding: 10px;
}

.featured-product-media .product-logo-panel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-product-card > div:not(.featured-product-media) {
  padding: 20px;
}

.featured-product-card span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.featured-product-card h3 {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.featured-product-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.featured-product-card strong {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
}

.sustainability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  max-width: var(--page-container);
  margin: 0 auto;
  padding: 72px var(--page-pad);
}

.sustainability-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #101828;
}

.sustainability-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  opacity: 0.82;
}

.sustainability-visual div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: #ffffff;
  padding: 24px;
}

.sustainability-visual span,
.sustainability-copy > span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sustainability-visual strong {
  color: #101828;
  display: block;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.sustainability-copy {
  border: 1px solid var(--line);
  border-left: 0;
  background: #ffffff;
  padding: clamp(34px, 5vw, 58px);
  align-self: stretch;
}

.sustainability-copy h2 {
  color: #101828;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.sustainability-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.sustainability-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.sustainability-grid article {
  border: 1px solid var(--line);
  background: #f8fbff;
  padding: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sustainability-grid article:hover {
  transform: translateX(4px);
  border-color: rgba(0, 58, 155, 0.35);
}

.sustainability-grid strong {
  color: #101828;
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.sustainability-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.sustainability-copy a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #ffffff;
  border-radius: 4px;
  padding: 0 18px;
  font-weight: 900;
}

.applications-section {
  max-width: none;
  background: #f4f4f4;
}

.applications-section .section-heading,
.application-grid {
  max-width: var(--page-container);
  margin-left: auto;
  margin-right: auto;
}

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

.application-tile {
  min-height: 180px;
  position: relative;
  overflow: hidden;
  background: #101828;
}

.application-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.application-tile:hover img {
  transform: scale(1.06);
  opacity: 0.62;
}

.application-tile strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
}

.workflow-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
  padding-top: 76px;
  padding-bottom: 76px;
}

.workflow-copy span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.workflow-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.workflow-copy p {
  color: var(--muted);
}

.workflow-steps {
  display: grid;
  gap: 18px;
}

.workflow-step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.workflow-step-card {
  min-height: 180px;
  padding: 20px;
  border: 0;
  background: var(--blue-light);
  border-top: 4px solid var(--blue);
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.workflow-step-card:hover,
.workflow-step-card.active {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.workflow-step-card.active {
  outline: 2px solid rgba(0, 58, 155, 0.22);
}

.workflow-step-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.workflow-step-card h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin: 20px 0 8px;
}

.workflow-step-card p {
  color: var(--muted);
  font-size: 13px;
}

.workflow-detail-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #101828;
  color: #ffffff;
}

.workflow-detail-panel > span {
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
}

.workflow-detail-panel h3 {
  max-width: 760px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.workflow-brand-pills,
.workflow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workflow-brand-pills strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.workflow-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--blue);
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

#home-page .section-block:first-of-type .section-heading,
#products-page .section-block .section-heading,
#home-page .section-block:first-of-type .product-category-grid,
#products-page .section-block .product-category-grid {
  max-width: var(--page-container);
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  width: 100%;
  max-width: none;
  min-height: 360px;
  margin: 0;
  padding: 86px var(--page-gutter);
  background: linear-gradient(90deg, #f5f8ff, #ffffff);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero + .section-block,
.page-hero + .about-story {
  margin-top: 0;
}

.page-hero span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero h1 {
  max-width: 860px;
  color: #101828;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.image-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.92), rgba(0, 58, 155, 0.58)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1400&auto=format&fit=crop&q=82") center / cover;
}

.products-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.52)),
    url("assets/page-heroes/products-hero.png") center / cover;
}

.solutions-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.48)),
    url("assets/page-heroes/solutions-hero.png") center / cover;
}

.applications-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.92), rgba(0, 58, 155, 0.5)),
    url("assets/page-heroes/applications-hero.png") center / cover;
}

.industry-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.92), rgba(0, 58, 155, 0.5)),
    url("assets/industries/corporate-offices-print-workflow.png") center / cover;
}

.brands-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.5)),
    url("assets/page-heroes/brands-hero.png") center / cover;
}

.resources-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.5)),
    url("assets/page-heroes/resources-hero.png") center / cover;
}

.support-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.5)),
    url("assets/page-heroes/support-hero.png") center / cover;
}

.buy-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.5)),
    url("assets/page-heroes/where-to-buy-hero.png") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.5)),
    url("assets/page-heroes/contact-hero.png") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(0, 40, 103, 0.94), rgba(0, 58, 155, 0.52)),
    url("assets/page-heroes/about-hero.png") center / cover;
}

.image-page-hero span,
.image-page-hero h1,
.image-page-hero p {
  color: #ffffff;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

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

.category-card {
  min-height: 268px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-image {
  height: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 22px 8px;
  background: #ffffff;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92);
}

.category-footer {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.category-footer h3 {
  color: #20242b;
  font-size: 17px;
  line-height: 1.25;
  text-align: left;
}

.category-footer span {
  color: #20242b;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.category-card:hover .category-footer span {
  transform: translateX(4px);
}

.catalog-layout {
  max-width: var(--page-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 150px;
}

.filter-panel {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0 0 22px;
  box-shadow: none;
}

.filter-panel h2 {
  background: #f1f3f5;
  color: #333333;
  font-size: 22px;
  letter-spacing: 0;
  margin-bottom: 18px;
  padding: 18px 20px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.filter-panel > label {
  padding: 0 20px 18px;
}

.filter-panel input[type="search"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 0 12px;
  font: inherit;
  background: #ffffff;
  color: #101828;
  font-weight: 700;
}

.accordion-filters {
  border-top: 1px solid var(--line);
}

.filter-accordion {
  border-top: 1px solid var(--line);
}

.filter-accordion:first-child {
  border-top: 0;
}

.filter-accordion summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  color: #333333;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.filter-accordion summary::-webkit-details-marker {
  display: none;
}

.filter-accordion summary::after {
  content: "⌄";
  color: #333333;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.filter-accordion[open] summary::after {
  transform: rotate(180deg);
}

.filter-options {
  display: grid;
  gap: 14px;
  padding: 0 20px 20px;
}

.filter-check-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px !important;
  color: #101828 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.filter-check-row input {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
}

.filter-check-row em {
  color: var(--muted);
  font-style: normal;
}

#clearFilters {
  width: calc(100% - 40px);
  min-height: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
  margin: 20px 20px 0;
}

.catalog-main {
  min-width: 0;
}

.catalog-toolbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.catalog-toolbar h2 {
  font-size: 32px;
  letter-spacing: -0.05em;
}

.catalog-toolbar select {
  min-width: 160px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0 12px;
  font: inherit;
  font-weight: 700;
}

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

.catalog-card {
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.catalog-card:hover {
  border-color: rgba(0, 58, 155, 0.35);
  transform: translateY(-3px);
}

.catalog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
}

.catalog-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 20px;
}

.catalog-card-body span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.catalog-card-body h3 {
  color: #101828;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

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

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

.catalog-product-visual {
  height: 190px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
  padding: 0;
}

.catalog-logo-panel.catalog-product-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.catalog-feature-list {
  display: grid;
  gap: 6px;
  margin: 0 0 16px 18px;
}

.catalog-feature-list li {
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.catalog-meta {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.catalog-meta strong {
  color: #344054;
  font-size: 12px;
}

.catalog-meta em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.catalog-learn-more {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: #17229b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.catalog-load-more {
  min-height: 96px;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 0;
  padding: 34px 28px 28px;
  background: #ffffff;
  position: relative;
}

.catalog-load-more.has-more-products {
  margin-top: -54px;
  padding-top: 92px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.94) 44%,
    #ffffff 100%
  );
}

.catalog-load-more[hidden] {
  display: none;
}

.catalog-load-more p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.catalog-load-more button {
  min-height: 46px;
  border: 0;
  background: var(--blue);
  color: #ffffff;
  padding: 0 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-load-more button:hover,
.catalog-load-more button:focus-visible {
  background: #17229b;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5e1;
  background: #ffffff;
  padding: 48px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.solution-intro-band {
  width: 100%;
  max-width: var(--page-container);
  margin: 0 auto;
  padding: 54px var(--page-pad) 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: end;
}

.solution-intro-band span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.solution-intro-band h2 {
  color: #101828;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  max-width: 680px;
}

.solution-intro-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-intro-band a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: #ffffff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
}

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

.solution-grid a {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-grid a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.solution-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.solution-grid div {
  padding: 24px;
}

.solution-grid h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

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

.mini-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.mini-list li {
  list-style: none;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

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

.directory-card,
.brand-card,
.resource-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.directory-card:hover,
.brand-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.directory-card img,
.brand-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  display: block;
}

.directory-card div,
.brand-card div {
  padding: 24px;
}

.directory-card span,
.brand-card span,
.resource-card span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.directory-card h3,
.brand-card h3,
.resource-card h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.directory-card p,
.brand-card p,
.resource-card p {
  color: var(--muted);
  font-size: 14px;
}

.brand-card a {
  min-height: 40px;
  color: #ffffff;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  margin-top: 18px;
}

.brand-card strong {
  width: max-content;
  min-height: 40px;
  color: #ffffff;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  margin-top: 18px;
}

.brand-logo-panel,
.product-logo-panel,
.catalog-logo-panel,
.detail-logo-panel,
.brand-detail-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #f2f6fc);
  border-bottom: 1px solid var(--line);
}

.brand-logo-panel {
  height: 178px;
  padding: 34px;
}

.brand-logo-panel img,
.product-logo-panel img,
.catalog-logo-panel img,
.detail-logo-panel img,
.brand-detail-logo img {
  max-width: 82%;
  max-height: 72%;
  object-fit: contain;
}

.brand-logo-epson img {
  max-width: 96%;
  max-height: 96%;
}

.brand-logo-zeutschel img {
  max-width: 92%;
  max-height: 78%;
}

.brand-logo-zund img {
  max-width: 88%;
  max-height: 66%;
}

.brand-logo-onyx img,
.brand-logo-papercut img,
.brand-logo-caldera img,
.brand-logo-roland img,
.brand-logo-hid img,
.brand-logo-gmg img {
  max-width: 78%;
  max-height: 82%;
}

.catalog-logo-panel.brand-logo-onyx img,
.catalog-logo-panel.brand-logo-papercut img,
.catalog-logo-panel.brand-logo-caldera img,
.catalog-logo-panel.brand-logo-roland img,
.catalog-logo-panel.brand-logo-hid img,
.catalog-logo-panel.brand-logo-gmg img {
  max-width: 68%;
}

.brand-logo-panel strong,
.product-logo-panel strong,
.catalog-logo-panel strong,
.detail-logo-panel strong,
.brand-detail-logo strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
}

.product-logo-panel {
  height: 210px;
}

.catalog-logo-panel {
  height: 190px;
}

.detail-logo-panel {
  min-height: 520px;
  padding: 54px;
}

.detail-logo-panel strong,
.brand-detail-logo strong {
  font-size: clamp(42px, 5vw, 76px);
}

.brand-detail {
  display: grid;
  gap: 52px;
}

.brand-detail-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-detail-logo {
  min-height: 360px;
  padding: 52px;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.brand-detail-hero > div:last-child {
  padding: 46px 46px 46px 0;
}

.brand-detail-hero span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.brand-detail-hero h1 {
  color: #101828;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.brand-detail-hero p {
  color: var(--muted);
  max-width: 620px;
}

.brand-product-section .section-heading {
  text-align: left;
}

.product-detail-card {
  grid-template-columns: 0.9fr 1.1fr;
}

#brands-page .brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#brands-page .brand-card {
  display: flex;
  flex-direction: column;
}

#brands-page .brand-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

#brands-page .brand-card p {
  margin-bottom: auto;
}

.resource-card {
  min-height: 238px;
  padding: 28px;
  border-top: 4px solid var(--blue);
}

.resource-intro-band {
  max-width: var(--page-container);
  margin: 0 auto;
  padding: 52px var(--page-pad) 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: end;
}

.resource-intro-band span,
.resource-featured-copy span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.resource-intro-band h2 {
  color: #101828;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.resource-intro-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.resource-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.resource-featured-copy {
  padding: clamp(32px, 5vw, 58px);
}

.resource-featured-copy h2 {
  color: #101828;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.resource-featured-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.resource-featured-copy a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #ffffff;
  border-radius: 4px;
  padding: 0 18px;
  font-weight: 900;
}

.resource-decision-map {
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 58, 155, 0.92), rgba(0, 40, 103, 0.96)),
    url("assets/home/home-hero-production.png") center / cover;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.resource-decision-map article {
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.resource-decision-map span,
.resource-decision-map strong {
  color: #ffffff;
  display: block;
}

.resource-decision-map span {
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 24px;
}

.resource-decision-map strong {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

#resources-page .resource-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#resources-page .resource-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

#resources-page .resource-card em {
  color: #52627a;
  display: inline-flex;
  margin-top: 18px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

#resources-page .resource-card strong {
  width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

#resources-page .resource-card:hover strong {
  background: var(--blue);
  color: #ffffff;
}

.info-detail .detail-content h2 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 22px 0 12px;
}

.split-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
  padding: 82px var(--page-gutter);
}

.about-story-copy span,
.about-founder-band span,
.about-brand-heading span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.about-story-copy h2,
.about-founder-band h2,
.about-cta h2 {
  color: #101828;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.about-story-copy p,
.about-founder-band p,
.about-cta p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-actions a,
.about-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #ffffff;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 900;
}

.about-actions a.secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid var(--line);
}

.about-story-media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.experience-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(280px, calc(100% - 56px));
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.experience-card strong {
  color: var(--blue);
  display: block;
  font-size: 58px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.experience-card span {
  color: #20242b;
  display: block;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 10px;
}

.about-data-voice {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 42px;
  align-items: center;
  padding: 64px var(--page-gutter);
  background: #f4f7fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-data-logo {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.about-data-logo span,
.about-data-copy span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-data-logo img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.about-data-copy h2 {
  max-width: 760px;
  color: #101828;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 12px 0 20px;
}

.about-data-copy p {
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.about-data-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-data-points strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.about-brand-strip {
  padding: 46px 0 42px;
  background: #f4f7fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.about-brand-heading {
  max-width: var(--page-container);
  margin: 0 auto 24px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
}

.about-brand-heading span {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.about-brand-heading h2 {
  color: #101828;
  max-width: 680px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.about-brand-heading a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue);
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.about-partner-marquee::before {
  background: linear-gradient(90deg, #f4f7fb, rgba(244, 247, 251, 0));
}

.about-partner-marquee::after {
  background: linear-gradient(270deg, #f4f7fb, rgba(244, 247, 251, 0));
}

.about-brand-strip .partner-logo-card {
  background: #ffffff;
}

/* Legacy fallback if static partner text is ever restored. */
.about-brand-strip > div:not(.about-brand-heading):not(.partner-marquee) {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.about-brand-strip > div:not(.about-brand-heading):not(.partner-marquee) strong {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #20242b;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.about-pillars-section {
  background: #ffffff;
}

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

.about-pillar-grid article {
  min-height: 270px;
  padding: 28px;
  background: var(--blue-light);
  border-top: 4px solid var(--blue);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.about-pillar-grid article:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-pillar-grid span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 28px;
}

.about-pillar-grid h3 {
  color: #101828;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.about-pillar-grid p {
  color: var(--muted);
  font-size: 14px;
}

.about-founder-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 74px var(--page-gutter);
  background: #101828;
}

.about-founder-band span,
.about-founder-band h2,
.about-founder-band p {
  color: #ffffff;
}

.about-founder-band p {
  color: rgba(255, 255, 255, 0.78);
}

.about-founder-band img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-cta {
  text-align: center;
  padding: 76px 28px 86px;
  background: #ffffff;
}

.about-cta h2,
.about-cta p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.highlights {
  padding-bottom: 72px;
}

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

.highlight-grid a {
  min-height: 260px;
  padding: 28px;
  background: var(--blue-light);
  border-top: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.highlight-grid a:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.highlight-grid h3 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.highlight-grid p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.highlight-grid strong {
  width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 14px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.detail-wrap {
  width: 100%;
  max-width: var(--page-shell);
  margin: 26px auto 0;
  padding: 0 var(--page-pad) 64px;
}

.detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-card img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
}

.structured-detail {
  display: grid;
  gap: 34px;
}

.structured-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: 520px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.structured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
}

.detail-kicker {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.structured-copy h1 {
  color: #101828;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  margin-bottom: 20px;
}

.structured-copy p {
  color: var(--muted);
  max-width: 650px;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.structured-visual {
  min-height: 520px;
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, #f8fbff, #eef4fc);
}

.detail-image-panel,
.structured-logo-panel {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.structured-logo-panel {
  padding: clamp(42px, 6vw, 82px);
  border: 0;
}

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

.detail-stat-grid article,
.detail-panel,
.detail-feature-card,
.detail-related-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.detail-stat-grid article {
  min-height: 112px;
  padding: 22px;
}

.detail-stat-grid span,
.detail-panel span,
.detail-section-heading span,
.detail-related-card span,
.detail-feature-card span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.detail-stat-grid strong {
  display: block;
  color: #101828;
  font-size: 22px;
  line-height: 1.15;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
}

.detail-panel {
  padding: 30px;
}

.detail-panel-main p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-chip-list li {
  list-style: none;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: #1d3f78;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.detail-section {
  display: grid;
  gap: 18px;
}

.detail-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.detail-section-heading h2 {
  color: #101828;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

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

.detail-feature-card {
  min-height: 150px;
  padding: 24px;
  border-top: 4px solid var(--blue);
}

.detail-feature-card strong {
  display: block;
  color: #101828;
  font-size: 22px;
  line-height: 1.2;
}

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

.detail-related-card {
  display: grid;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.detail-related-logo {
  height: 138px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f2f6fc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-related-logo img {
  max-width: 84%;
  max-height: 70%;
  object-fit: contain;
}

.detail-related-card > div:last-child {
  padding: 20px;
}

.detail-related-card h3 {
  color: #101828;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.detail-related-card p {
  color: var(--muted);
  font-size: 13px;
}

.detail-empty {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5e1;
  background: #ffffff;
  color: var(--muted);
  padding: 34px;
  font-weight: 800;
}

.detail-content {
  padding: 56px;
}

.back-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 800;
  margin-bottom: 28px;
}

.detail-content span,
.support-card span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.detail-content h1 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.detail-content p {
  color: var(--muted);
  margin-bottom: 24px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.detail-list li {
  list-style: none;
  padding: 13px 16px;
  background: var(--blue-light);
  font-weight: 700;
}

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

.detail-actions a,
.contact-panel button,
.locator-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: #ffffff;
  border: 0;
  padding: 0 22px;
  font-weight: 800;
}

.detail-actions a.secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid var(--line);
}

.detail-share-box {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.detail-share-box > span {
  color: #475467;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

.detail-share-actions a,
.detail-share-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  color: #101828;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.detail-share-actions a:hover,
.detail-share-actions button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 58, 155, 0.34);
  color: var(--blue);
}

.detail-share-actions a:first-child {
  background: #0f9f5f;
  border-color: #0f9f5f;
  color: #ffffff;
}

.detail-share-actions a:first-child:hover {
  color: #ffffff;
}

.product-downloads {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.product-downloads > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-downloads > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-downloads a {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 16px;
}

.product-downloads a:hover,
.product-downloads a:focus-visible {
  border-color: var(--blue);
}

.product-downloads strong {
  color: #101828;
  font-size: 15px;
}

.product-downloads em {
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.product-model-detail {
  display: grid;
  gap: 28px;
}

.product-insight-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: 560px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.product-insight-copy {
  align-self: center;
  padding: clamp(38px, 5vw, 68px);
}

.product-insight-copy > span,
.product-insight-text span,
.product-insight-stats span {
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.product-insight-copy h1 {
  color: #101828;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.98;
  max-width: 820px;
  margin-bottom: 18px;
}

.product-insight-copy p {
  color: var(--muted);
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.product-insight-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: #eef4fc;
}

.product-insight-media > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.product-insight-logo {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.product-insight-logo-panel {
  height: 120px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-insight-logo-panel img {
  max-width: 82%;
  max-height: 72%;
  object-fit: contain;
}

.product-insight-logo-panel strong {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.product-insight-logo > strong {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #101828;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.product-insight-stats {
  margin-top: -2px;
}

.product-insight-tabs {
  border: 1px solid var(--line);
  background: #ffffff;
}

.product-insight-tablist {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.product-insight-tablist button {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #344054;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.product-insight-tablist button:hover {
  color: var(--blue);
  background: #ffffff;
}

.product-insight-tablist button.active {
  background: var(--blue);
  color: #ffffff;
}

.product-insight-panel {
  display: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 42px);
}

.product-insight-panel.active {
  display: grid;
}

.product-insight-text h2 {
  color: #101828;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.product-insight-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.product-insight-feature-list,
.product-workflow-steps,
.product-spec-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.product-workflow-steps article,
.product-spec-grid article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: #f8fbff;
  padding: 22px;
}

.product-spec-grid article {
  min-height: 116px;
  background: #ffffff;
}

.product-workflow-steps span,
.product-spec-grid span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-workflow-steps strong,
.product-spec-grid strong {
  color: #101828;
  display: block;
  font-size: 20px;
  line-height: 1.18;
}

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

.product-insight-panel .detail-share-box {
  margin-top: 0;
}

.product-media-section {
  display: grid;
  gap: 18px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 18px;
}

.product-media-grid figure {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef4fc;
}

.product-media-grid figure:first-child {
  min-height: 410px;
}

.product-media-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-media-grid figure:hover img {
  transform: scale(1.035);
}

.product-media-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #101828;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 900;
}

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

.product-model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid var(--line);
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-model-card:hover {
  border-color: rgba(0, 58, 155, 0.35);
  transform: translateY(-3px);
}

.product-model-logo {
  height: 250px;
  padding: 44px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.product-model-logo img {
  max-width: 86%;
  max-height: 76%;
  object-fit: contain;
}

.product-model-photo {
  padding: 0;
  background: #f7f9fc;
  overflow: hidden;
}

.product-model-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.product-model-logo strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  text-align: center;
}

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

.product-model-body > span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.product-model-body h3 {
  color: #05070b;
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.product-model-body ul {
  display: grid;
  gap: 5px;
  margin: 0 0 26px 18px;
}

.product-model-body li {
  color: #111111;
  font-size: 16px;
  line-height: 1.35;
}

.product-model-body a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: #17229b;
  color: #ffffff;
  border-radius: 0;
  font-weight: 900;
}

.product-detail-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.family-detail-clean {
  display: grid;
  gap: 28px;
}

.family-clean-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 0;
  border: 1px solid var(--line);
  background: #ffffff;
}

.family-clean-copy {
  padding: clamp(36px, 5vw, 58px);
  align-self: center;
}

.family-clean-copy > span,
.family-clean-overview span,
.family-section-heading span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.family-clean-copy h1 {
  color: #101828;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.02;
  max-width: 650px;
  margin-bottom: 18px;
}

.family-clean-copy p {
  color: var(--muted);
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.family-clean-side {
  border-left: 1px solid var(--line);
  background: #f8fbff;
  display: grid;
  align-content: start;
}

.family-clean-side img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.family-clean-side .detail-share-box {
  margin: 0;
  border-width: 1px 0 0;
  background: #ffffff;
}

.family-clean-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.family-clean-overview article {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 28px;
}

.family-clean-overview article > ul:not(.detail-chip-list) {
  display: grid;
  gap: 12px;
  margin: 0;
}

.family-clean-overview article > ul:not(.detail-chip-list) li {
  list-style: none;
  color: #101828;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  padding-left: 18px;
  position: relative;
}

.family-clean-overview article > ul:not(.detail-chip-list) li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 10px;
  background: var(--blue);
}

.family-products-section {
  display: grid;
  gap: 18px;
  padding-top: 12px;
}

.family-section-heading {
  display: grid;
  gap: 4px;
}

.family-section-heading h2 {
  color: #101828;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

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

.support-card {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 28px;
  min-height: 220px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.support-card h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.support-card p {
  color: var(--muted);
  font-size: 14px;
}

.buy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.contact-quick-grid a {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-quick-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 58, 155, 0.35);
  background: #f8fbff;
}

.contact-quick-grid span,
.contact-panel-heading span,
.contact-location-card > span,
.contact-map-copy span {
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-quick-grid strong {
  color: #101828;
  font-size: 22px;
  line-height: 1.15;
}

.contact-quick-grid em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.contact-layout {
  align-items: start;
}

.contact-panel,
.locator-panel {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.contact-panel h2,
.locator-panel h2 {
  font-size: 32px;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.contact-panel label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font: inherit;
}

.contact-panel textarea {
  min-height: 130px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.contact-form-panel h2,
.contact-form-panel label:nth-of-type(7),
.contact-form-panel button {
  grid-column: 1 / -1;
}

.contact-form-panel button {
  width: max-content;
}

.contact-location-panel {
  display: grid;
  gap: 18px;
  box-shadow: none;
}

.contact-panel-heading h2 {
  color: #101828;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  margin: 8px 0 12px;
}

.contact-panel-heading p {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

.contact-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-region-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #344054;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.contact-region-tabs button:hover,
.contact-region-tabs button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.contact-location-card {
  display: none;
  border: 1px solid var(--line);
  background: #f8fbff;
  padding: 24px;
}

.contact-location-card.active {
  display: grid;
  gap: 16px;
}

.contact-location-card strong {
  color: #101828;
  font-size: 26px;
  line-height: 1.08;
}

.contact-location-card address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.contact-location-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-location-card dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.contact-location-card dt {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.contact-location-card dd {
  color: #101828;
  margin: 0;
  font-weight: 700;
}

.contact-location-card dd a {
  color: var(--blue);
}

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

.location-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--blue);
  color: #ffffff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 900;
}

.location-actions a.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue);
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 26px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.contact-map-copy {
  align-self: center;
  padding: clamp(28px, 4vw, 44px);
}

.contact-map-copy h2 {
  color: #101828;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  margin: 10px 0 14px;
}

.contact-map-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-map-visual {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 58, 155, 0.92), rgba(11, 38, 83, 0.9)),
    url("assets/page-heroes/contact-hero.png") center / cover;
}

.contact-map-visual::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.map-card {
  position: absolute;
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  transform: scale(0.96);
  opacity: 0.72;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.map-card:first-child {
  top: 86px;
  right: 18%;
}

.map-card:last-child {
  left: 16%;
  bottom: 72px;
}

.map-card.active {
  transform: scale(1);
  opacity: 1;
  background: #ffffff;
}

.map-card::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 16px;
  top: -7px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--blue);
}

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

.map-card strong {
  color: #101828;
  font-size: 18px;
}

.map-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  margin-top: 4px;
}

.locator-panel > p {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 12px;
}

.locator-panel > strong {
  display: block;
  max-width: 460px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.compact-band {
  margin-top: 0;
}

.site-footer {
  background: #f3f5f8;
  border-top: 1px solid var(--line);
  padding: 52px var(--page-pad) 26px;
}

.footer-grid {
  max-width: var(--page-container);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.footer-grid h3 {
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #475467;
  font-size: 14px;
  margin-bottom: 9px;
}

.footer-parent-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 9px 12px;
  background: #ffffff;
  border: 1px solid #d8dee8;
  text-decoration: none;
}

.footer-parent-brand span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-parent-brand img {
  display: block;
  width: 112px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}

.footer-parent-brand:hover,
.footer-parent-brand:focus-visible {
  border-color: var(--blue);
}

.footer-bottom {
  max-width: var(--page-container);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid #d8dee8;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #667085;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .header-shell,
  .primary-nav,
  .section-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .primary-nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 22px;
  }

  .products-mega {
    display: none;
  }

  .hero-grid,
  .detail-card,
  .structured-hero,
  .detail-info-grid,
  .product-insight-hero,
  .product-insight-panel,
  .product-detail-panels,
  .family-clean-hero,
  .family-clean-overview,
  .brand-detail-hero,
  .product-detail-card,
  .solution-intro-band,
  .buy-layout,
  .contact-map-section,
  .sustainability-section,
  .need-experience-board,
  .need-advisor-panel,
  .catalog-layout,
  .workflow-band,
  .about-story,
  .about-data-voice,
  .about-founder-band,
  .solution-grid,
  .directory-grid,
  .brand-grid,
  .resource-grid,
  .split-lists,
  .highlight-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

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

  .directory-grid,
  .brand-grid,
  .resource-grid,
  #brands-page .brand-grid,
  .about-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-brand-strip > div:not(.about-brand-heading):not(.partner-marquee) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-brand-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-data-logo {
    min-height: 180px;
  }

  .brand-detail-hero > div:last-child {
    padding: 0 34px 38px;
  }

  .brand-detail-logo {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .structured-visual {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-insight-media {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-insight-media > img {
    min-height: 360px;
  }

  .detail-image-panel,
  .detail-image-panel img,
  .structured-logo-panel {
    min-height: 360px;
  }

  .family-clean-side {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .detail-stat-grid,
  .detail-feature-grid,
  .detail-related-grid,
  .product-model-grid,
  .product-insight-feature-list,
  .product-workflow-steps,
  .product-spec-grid,
  .product-media-grid,
  .need-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .need-tabs {
    position: static;
  }

  .need-results,
  .need-card-grid {
    grid-template-columns: 1fr;
  }

  .need-advisor-panel > img {
    min-height: 320px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .need-advisor-route {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .need-advisor-route > img {
    min-height: 260px;
  }

  .featured-product-grid,
  .contact-quick-grid,
  #resources-page .resource-grid,
  .resource-decision-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map-visual {
    min-height: 300px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .resource-intro-band,
  .resource-featured {
    grid-template-columns: 1fr;
  }

  .resource-decision-map {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .application-grid,
  .workflow-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-card {
    min-height: 440px;
  }

  .hero-card-content {
    padding: 48px 34px;
  }
}

@media (max-width: 620px) {
  .header-shell {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand small {
    display: none;
  }

  .header-tools {
    width: 100%;
    flex-wrap: wrap;
  }

  .region-picker {
    min-width: 142px;
  }

  .primary-nav {
    height: 48px;
    width: 100%;
  }

  .primary-nav > a,
  .nav-mega-item,
  .nav-mega-item > a {
    height: 48px;
  }

  .hero-card-content {
    padding: 34px 24px;
  }

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

  .partner-marquee-section {
    padding-top: 42px;
  }

  .partner-marquee-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .partner-logo-card {
    width: 178px;
    height: 96px;
  }

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

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

  .contact-quick-grid,
  .contact-form-panel,
  #resources-page .resource-grid,
  .resource-decision-map {
    grid-template-columns: 1fr;
  }

  .resource-intro-band,
  .resource-featured-copy,
  .resource-decision-map {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-location-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .contact-map-visual {
    min-height: 280px;
  }

  .sustainability-section {
    padding: 48px 20px;
  }

  .sustainability-visual,
  .sustainability-visual img {
    min-height: 320px;
  }

  .sustainability-visual div {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .sustainability-copy {
    padding: 28px 22px;
  }

  .map-card:first-child {
    top: 58px;
    right: 24px;
  }

  .map-card:last-child {
    left: 24px;
    bottom: 44px;
  }

  .directory-grid,
  .brand-grid,
  .resource-grid,
  #brands-page .brand-grid,
  .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .about-brand-strip > div:not(.about-brand-heading):not(.partner-marquee) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story,
  .about-founder-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .detail-logo-panel {
    min-height: 260px;
  }

  .structured-copy {
    padding: 34px 24px;
  }

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

  .structured-copy p,
  .detail-panel-main p {
    font-size: 16px;
  }

  .detail-stat-grid,
  .detail-feature-grid,
  .detail-related-grid,
  .product-model-grid,
  .product-insight-feature-list,
  .product-workflow-steps,
  .product-spec-grid,
  .product-media-grid {
    grid-template-columns: 1fr;
  }

  .product-insight-copy {
    padding: 34px 24px;
  }

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

  .product-insight-copy p,
  .product-insight-text p {
    font-size: 16px;
  }

  .product-insight-media,
  .product-insight-media > img {
    min-height: 310px;
  }

  .product-insight-logo {
    position: static;
    width: auto;
    margin: 0;
    border-width: 1px 0 0;
  }

  .product-insight-tablist {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .product-insight-tablist button {
    flex: 0 0 auto;
  }

  .product-insight-panel {
    padding: 24px;
  }

  .product-media-grid figure,
  .product-media-grid figure:first-child {
    min-height: 260px;
  }

  .detail-section-heading {
    display: grid;
  }

  .detail-panel {
    padding: 24px;
  }

  .structured-visual,
  .detail-image-panel,
  .detail-image-panel img,
  .structured-logo-panel {
    min-height: 280px;
  }

  .family-clean-copy {
    padding: 34px 24px;
  }

  .family-clean-copy h1 {
    font-size: 38px;
  }

  .family-clean-copy p {
    font-size: 16px;
  }

  .family-clean-side img {
    height: 250px;
  }

  .family-clean-overview article {
    padding: 24px;
  }

  .need-tabs,
  .need-results,
  .need-experience-board,
  .need-advisor-panel,
  .need-card-grid,
  .featured-product-grid,
  .application-grid,
  .workflow-step-list {
    grid-template-columns: 1fr;
  }

  .need-card {
    min-height: auto;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .need-card img {
    height: 100%;
    min-height: 150px;
  }

  .need-advisor-panel > img {
    min-height: 260px;
  }

  .need-advisor-route {
    min-height: auto;
  }

  .need-route-links {
    padding: 22px;
  }

  .need-route-links .need-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .catalog-toolbar {
    display: grid;
    align-items: start;
    padding-bottom: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media print {
  @page {
    margin: 16mm;
  }

  body {
    background: #ffffff;
    color: #101828;
  }

  .site-header,
  .site-footer,
  .back-link,
  .detail-actions,
  .detail-share-box,
  .hero-slide-controls {
    display: none !important;
  }

  .page-view {
    display: none !important;
  }

  .page-view.active {
    display: block !important;
  }

  .detail-wrap {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .structured-detail {
    gap: 18px;
  }

  .structured-hero,
  .detail-info-grid,
  .detail-stat-grid,
  .detail-feature-grid,
  .detail-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    box-shadow: none;
  }

  .structured-hero,
  .detail-stat-grid article,
  .detail-panel,
  .detail-feature-card,
  .detail-related-card {
    border: 1px solid #d8dee8;
    box-shadow: none;
    break-inside: avoid;
  }

  .structured-copy {
    padding: 24px;
  }

  .structured-copy h1 {
    font-size: 34px;
  }

  .structured-copy p,
  .detail-panel-main p {
    font-size: 13px;
  }

  .structured-visual,
  .detail-image-panel,
  .detail-image-panel img,
  .structured-logo-panel {
    min-height: 230px;
  }

  .detail-section-heading h2 {
    font-size: 24px;
  }

  .detail-feature-card {
    min-height: 100px;
  }

  .detail-feature-card strong,
  .detail-related-card h3 {
    font-size: 16px;
  }
}
