:root {
  --navy: #062f4a;
  --deep-navy: #032337;
  --teal: #078e8c;
  --teal-dark: #056b6a;
  --mist: #e7f1f0;
  --paper: #f7f8f6;
  --ink: #102e3e;
  --muted: #687881;
  --line: #dfe5e4;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 52px rgba(4, 44, 66, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
}

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

.section {
  padding-block: 104px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.page-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--deep-navy);
  color: var(--white);
}

.page-hero > img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,35,55,0.92), rgba(3,35,55,0.7) 48%, rgba(3,35,55,0.22)),
    linear-gradient(0deg, rgba(3,35,55,0.45), transparent 56%);
}

.page-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  min-height: 660px;
  padding: 150px 0 70px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #b8e5e2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.page-hero h1 {
  max-width: 830px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.page-hero-copy > p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
}

.hero-glass-summary {
  padding: 27px;
  border-radius: 26px;
  background: rgba(255,255,255,0.17);
  box-shadow: 0 24px 60px rgba(2,27,43,0.25);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.hero-glass-summary span {
  color: #a9dfdc;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-glass-summary strong {
  display: block;
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.hero-glass-summary p {
  margin: 0 0 21px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.hero-glass-summary a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.solutions-page .page-hero,
.solutions-page .page-hero-layout {
  min-height: 780px;
}

.solutions-page .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,35,55,0.95), rgba(3,35,55,0.78) 49%, rgba(3,35,55,0.38)),
    linear-gradient(0deg, rgba(3,35,55,0.52), transparent 58%);
}

.solutions-page .page-hero-layout {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 72px;
  padding-block: 140px 70px;
}

.solutions-page .page-hero h1 {
  max-width: 867px;
  font-size: clamp(54px, 5.6vw, 82px);
}

.solutions-page .page-hero-copy {
  max-width: 867px;
}

.solutions-page .page-hero-copy > p {
  width: min(715px, 100%);
  max-width: 715px;
  font-size: 16px;
}

.solution-hero-pills {
  position: absolute;
  right: clamp(-300px, calc((1240px - 100vw) / 2 + 20px), 0px);
  bottom: 52px;
  display: grid;
  width: 540px;
  gap: 10px;
}

.solution-hero-pills article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 22px 10px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  box-shadow: 0 18px 48px rgba(2,27,43,0.22);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.solution-pill-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.solution-pill-icon svg {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none;
  stroke: #b8e5e2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.solution-pill-icon svg text {
  fill: #b8e5e2;
  stroke: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
}

.solution-hero-pills strong {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.solution-capabilities {
  background:
    radial-gradient(circle at 8% 8%, rgba(7,142,140,0.09), transparent 28%),
    var(--paper);
}

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

.capability-card {
  padding: 24px 0;
  margin-bottom: 54px;
  background: transparent;
  transition: transform 180ms ease;
}

.capability-card:hover {
  transform: translateY(-4px);
}

.capability-card > img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 15px 42px rgba(3,35,55,0.09);
}

.capability-card > div {
  padding: 20px 4px 0;
}

.capability-card div > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
}

.capability-card h3 {
  min-height: 0;
  margin: 17px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.capability-card p {
  min-height: 92px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.solution-capabilities .capability-card {
  margin-bottom: 111px;
}

.solution-capabilities .capability-card h3 {
  margin-top: 3px;
  margin-bottom: 0;
  font-size: 20px;
}

@media (min-width: 981px) {
  .solution-capabilities {
    padding-top: 60px;
    padding-bottom: 0;
    margin-bottom: -188px;
  }

  .solution-capabilities .capability-card:nth-child(n + 5) {
    margin-top: -90px;
    margin-bottom: 225px;
  }
}

.solution-scenarios {
  background: var(--deep-navy);
  color: var(--white);
}

.solution-scenarios .kicker {
  color: #8fd5d0;
}

.solution-scenarios .section-head h2 {
  color: var(--white);
}

.solution-scenarios .section-head > p {
  color: rgba(255,255,255,0.62);
}

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

.scenario-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  outline: 0;
  background: var(--navy);
  box-shadow: 0 24px 58px rgba(0,0,0,0.2);
}

.scenario-card > img,
.scenario-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scenario-card > img {
  left: -5%;
  right: auto;
  width: 110%;
  object-fit: cover;
  transform: translateX(4%) scale(1.04);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scenario-shade {
  background: linear-gradient(0deg, rgba(3,35,55,0.97), rgba(3,35,55,0.12) 72%);
}

.scenario-title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px;
  transition: opacity 200ms ease, transform 260ms ease;
}

.scenario-title span {
  color: #8fd5d0;
  font-size: 10px;
  font-weight: 600;
}

.scenario-title h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}

.scenario-title p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.5;
}

.scenario-title p strong {
  display: block;
  margin-bottom: 5px;
  color: #8fd5d0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-details {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(3,35,55,0.94), rgba(3,35,55,0.76)),
    transparent;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 240ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scenario-details div {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.scenario-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scenario-details strong {
  color: #8fd5d0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-details p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.82);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.42;
}

.scenario-card:hover > img,
.scenario-card:focus > img {
  transform: translateX(-4%) scale(1.04);
}

.scenario-card:hover .scenario-title,
.scenario-card:focus .scenario-title {
  opacity: 0;
  transform: translateY(12px);
}

.scenario-card:hover .scenario-details,
.scenario-card:focus .scenario-details {
  opacity: 1;
  transform: translateX(0);
}

.solution-audiences {
  background:
    linear-gradient(135deg, rgba(231,241,240,0.92), rgba(247,248,246,0.96)),
    var(--paper);
}

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

.audience-grid article {
  display: flex;
  min-height: 340px;
  overflow: hidden;
  flex-direction: column;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(3,35,55,0.1);
}

.audience-grid article > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.audience-grid article:hover > img {
  transform: scale(1.04);
}

.audience-grid article > div {
  display: flex;
  min-height: 100px;
  align-items: center;
  padding: 20px 22px;
}

.audience-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
}

.audience-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  padding: 25px 28px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
}

.audience-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}

.audience-cta .button {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--navy);
}

.breadcrumb-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
}

.breadcrumbs {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumbs a {
  color: var(--teal-dark);
  text-decoration: none;
}

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

.kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.split-copy h2,
.cta-copy h2,
.content-heading {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-head > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(3,35,55,0.06);
}

.content-card > img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

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

.content-card-body > span {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 9px 0 13px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.content-card p {
  min-height: 66px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.content-card a {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}


.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.split-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
}

.split-copy > p {
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 29px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  content: "✓";
  font-size: 10px;
}

.tinted-section {
  background: #edf2f1;
}

.dark-section {
  background: var(--deep-navy);
  color: var(--white);
}

.dark-section .section-head h2,
.dark-section .content-heading {
  color: var(--white);
}

.dark-section .section-head > p {
  color: #afc0c7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.14);
}

.process-grid article {
  min-height: 220px;
  padding: 28px;
  background: rgba(255,255,255,0.08);
}

.process-grid span {
  color: #8fd5d0;
  font-size: 10px;
  font-weight: 600;
}

.process-grid h3 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.process-grid p {
  margin: 0;
  color: #aec0c8;
  font-size: 12px;
}

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

.chip-row a,
.chip-row span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

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

.info-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.info-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.info-panel p,
.info-panel li {
  color: var(--muted);
  font-size: 13px;
}

.info-panel ul {
  margin: 14px 0 0;
  padding-left: 19px;
}

.faq-page .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 35, 55, 0.94) 0%, rgba(3, 35, 55, 0.72) 48%, rgba(3, 35, 55, 0.38) 100%);
}

.faq-library {
  background:
    radial-gradient(circle at 7% 8%, rgba(25, 126, 125, 0.09), transparent 25%),
    var(--paper);
}

.faq-library-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.faq-library-head h2 {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 500;
  line-height: 0.98;
}

.faq-library-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-library > .wrap > .faq-library-head {
  grid-template-columns: 1fr;
}

.faq-library > .wrap > .faq-library-head h2 {
  max-width: none;
  white-space: nowrap;
}

.faq-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 54px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 42px rgba(4,35,53,0.08);
}

.faq-search label {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-left: 20px;
}

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

.faq-search input {
  width: 100%;
  overflow: hidden;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-search input::placeholder {
  color: #87969d;
}

.faq-search button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-search button:hover,
.faq-search button:focus-visible {
  background: var(--teal);
}

.faq-search p {
  position: absolute;
  right: 24px;
  bottom: -28px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.faq-content-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.faq-category-nav {
  position: sticky;
  z-index: 20;
  top: 92px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(4, 35, 53, 0.1);
  backdrop-filter: blur(20px);
}

.faq-category-nav a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.faq-category-nav a:hover,
.faq-category-nav a:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.faq-category-nav a span {
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.faq-category-nav a:hover span,
.faq-category-nav a:focus-visible span {
  color: var(--aqua);
}

.faq-category-nav a b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
}

.faq-group {
  scroll-margin-top: 110px;
  margin-bottom: 92px;
}

.faq-group > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-bottom: 28px;
}

.faq-group > header > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(0, 126, 126, 0.28);
  border-radius: 50%;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.faq-group > header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.faq-group > header p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.faq-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 34px rgba(4, 35, 53, 0.035);
}

.faq-entry[open] {
  border-color: rgba(0, 126, 126, 0.3);
  box-shadow: 0 22px 50px rgba(4, 35, 53, 0.08);
}

.faq-entry summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 22px 26px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-entry summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.faq-entry summary strong {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.faq-entry summary small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.faq-entry summary i {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-entry summary i::before,
.faq-entry summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-entry summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-entry[open] summary i {
  border-color: var(--teal);
  background: var(--teal);
}

.faq-entry[open] summary i::before,
.faq-entry[open] summary i::after {
  background: var(--white);
}

.faq-entry[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: 44px;
  padding: 0 26px 28px 90px;
}

.faq-answer-copy {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.faq-answer-copy p,
.faq-answer-copy li {
  color: #465c68;
  font-size: 14px;
  line-height: 1.76;
}

.faq-answer-copy p {
  max-width: 850px;
  margin: 0 0 15px;
}

.faq-answer-copy p:last-child {
  margin-bottom: 0;
}

.faq-answer-copy strong {
  color: var(--navy);
}

.faq-answer-copy ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.faq-meta {
  display: grid;
  align-self: start;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(237, 244, 243, 0.75);
}

.faq-meta > div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.faq-meta > div:last-child {
  border-bottom: 0;
}

.faq-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq-meta p {
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  line-height: 1.55;
}

.faq-related {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.faq-related span {
  flex-basis: 100%;
}

.faq-related a {
  padding: 7px 10px;
  border: 1px solid rgba(0, 126, 126, 0.22);
  border-radius: 999px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
}

.faq-related a:hover,
.faq-related a:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

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

.faq-reference-section .faq-library-head h2 {
  color: var(--white);
}

.faq-reference-section .faq-library-head > p {
  color: rgba(255,255,255,0.64);
}

.faq-reference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
}

.faq-reference-grid a {
  min-height: 180px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
}

.faq-reference-grid a:last-child {
  border-right: 0;
}

.faq-reference-grid a:hover,
.faq-reference-grid a:focus-visible {
  background: rgba(255,255,255,0.08);
}

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

.faq-reference-grid strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.faq-reference-grid span {
  margin-top: 13px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.contact-panel,
.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.contact-panel h2,
.contact-form h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.contact-panel a {
  display: block;
  margin: 12px 0;
  color: var(--teal-dark);
  text-decoration: none;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcfb;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 15px 0 20px;
  color: var(--muted);
  font-size: 11px;
}

.contact-page .page-hero,
.contact-page .page-hero-layout,
.public-cases-page .page-hero,
.public-cases-page .page-hero-layout,
.equipment-line-page .page-hero,
.equipment-line-page .page-hero-layout {
  min-height: 390px;
}

.contact-page .page-hero-overlay,
.public-cases-page .page-hero-overlay,
.equipment-line-page .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,35,55,0.66), rgba(3,35,55,0.34), rgba(3,35,55,0.62)),
    linear-gradient(0deg, rgba(3,35,55,0.42), rgba(3,35,55,0.04));
}

.contact-page .page-hero-layout,
.public-cases-page .page-hero-layout,
.equipment-line-page .page-hero-layout {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 120px 0 52px;
}

.contact-page .page-hero-copy,
.public-cases-page .page-hero-copy,
.equipment-line-page .page-hero-copy {
  text-align: center;
}

.contact-page .page-hero .eyebrow,
.public-cases-page .page-hero .eyebrow,
.equipment-line-page .page-hero .eyebrow {
  display: none;
}

.contact-page .page-hero h1,
.public-cases-page .page-hero h1,
.equipment-line-page .page-hero h1 {
  max-width: none;
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(54px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-align: center;
}

.contact-page .page-hero-copy > p,
.public-cases-page .page-hero-copy > p,
.equipment-line-page .page-hero-copy > p {
  max-width: none;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  text-align: center;
}

/* Public Cases — contact-style hero with editorial case rows */
.public-cases-page {
  background: #f5f7f7;
}

.public-cases-heading h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.public-cases-list {
  background:
    radial-gradient(circle at 8% 4%, rgba(12, 143, 138, 0.08), transparent 30%),
    #f3f6f6;
}

.public-cases-heading {
  margin-bottom: 42px;
}

.public-cases-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.public-case-stack {
  display: grid;
  gap: 34px;
}

.public-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(6, 47, 74, 0.14);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(6, 47, 74, 0.09);
}

.public-case-image {
  min-height: 430px;
  overflow: hidden;
  background: var(--mist);
}

.public-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.public-case-copy {
  display: flex;
  min-width: 0;
  padding: clamp(38px, 4.5vw, 72px);
  flex-direction: column;
  justify-content: center;
}

.public-case-copy > span {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.public-case-copy h3 {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.public-case-copy p {
  max-width: 540px;
  margin: 0 0 44px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.public-case-copy a {
  align-self: flex-start;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.public-case-copy a:hover {
  color: var(--navy);
}

.public-case-card--featured {
  min-height: 445px;
}

.public-case-card--featured .public-case-image {
  min-height: 445px;
  height: 445px;
}

.public-case-card--featured .public-case-copy h3 {
  width: 100%;
  max-width: 409px;
  padding-top: 3px;
  padding-bottom: 4px;
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 28.2px;
}

.public-case-card--featured:nth-child(3) .public-case-copy p {
  max-width: 410px;
}

@media (max-width: 980px) {
  .public-cases-heading h2 { white-space: normal; }
  .public-case-card {
    grid-template-columns: 1fr;
  }

  .public-case-image {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .public-case-card--featured,
  .public-case-card--featured .public-case-image {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 720px) {
  .public-case-stack {
    gap: 24px;
  }

  .public-case-card,
  .public-case-image {
    min-height: 0;
  }

  .public-case-image {
    aspect-ratio: 4 / 3;
  }

  .public-case-copy {
    padding: 30px 24px 34px;
  }

  .public-case-copy h3 {
    font-size: 34px;
  }

  .public-case-copy p {
    margin-bottom: 28px;
  }
}

/* Technical application case */
.case-detail-page{background:#f7f8f6;color:#123343}
.case-detail-hero{position:relative;min-height:760px;display:flex;align-items:flex-end;overflow:hidden;background:#082b43}
.case-detail-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.case-detail-hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,35,55,.93) 0%,rgba(3,35,55,.7) 48%,rgba(3,35,55,.24) 100%),linear-gradient(0deg,rgba(3,35,55,.72),transparent 55%)}
.case-detail-hero-copy{position:relative;z-index:1;padding-top:170px;padding-bottom:70px;color:#fff}
.case-detail-hero-copy>span{display:block;margin-bottom:22px;color:#8edbd7;font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase}
.case-detail-hero h1{max-width:1020px;margin:0;font-family:"Inter Variable",Arial,sans-serif;font-size:clamp(48px,5.4vw,78px);font-weight:600;line-height:.98;letter-spacing:-.04em}
.case-detail-hero-copy>p{max-width:760px;margin:28px 0 42px;color:rgba(255,255,255,.8);font-size:19px;line-height:1.65}
.case-detail-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));max-width:980px;border-top:1px solid rgba(255,255,255,.25);border-bottom:1px solid rgba(255,255,255,.25)}
.case-detail-meta span{padding:20px 28px 20px 0;color:#8edbd7;font-size:11px;letter-spacing:.12em;text-transform:uppercase}
.case-detail-meta b{display:block;margin-top:8px;color:#fff;font-size:14px;letter-spacing:0;line-height:1.4;text-transform:none}
.case-detail-breadcrumb{display:flex;gap:10px;align-items:center;flex-wrap:wrap;padding-top:24px;padding-bottom:24px;color:#6f8189;font-size:12px}
.case-detail-breadcrumb a{color:inherit;text-decoration:none}
.case-editorial-section,.case-soft-section,.case-dark-section,.case-reality-section,.case-result-section,.case-learning-section,.case-cta-section{padding:100px 0}
.case-narrow{max-width:960px}
.case-narrow h2,.case-two-column h2,.case-section-head h2,.case-configuration-layout h2,.case-result-layout h2,.case-learning-card h2,.case-cta-card h2{margin:12px 0 28px;color:#082b43;font:500 clamp(38px,4vw,58px)/1.04 var(--serif);letter-spacing:-.035em}
.case-narrow p,.case-two-column p,.case-section-head p,.case-configuration-layout p,.case-result-layout p,.case-learning-card p,.case-cta-card p{color:#607681;font-size:16px;line-height:1.85}
.case-soft-section{background:#eaf1ef}
.case-two-column{display:grid;grid-template-columns:.9fr 1.1fr;gap:100px;align-items:start}
.case-two-column p:first-child{margin-top:0}
.case-section-head{max-width:900px;margin-bottom:48px}
.case-challenge-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.case-challenge-grid article{min-height:300px;padding:30px;border:1px solid rgba(6,47,74,.12);border-radius:22px;background:#fff}
.case-challenge-grid b{color:#078e8c;font-size:13px}
.case-challenge-grid h3{margin:50px 0 14px;color:#082b43;font:500 25px/1.15 var(--serif)}
.case-challenge-grid p{margin:0;color:#687b84;font-size:14px;line-height:1.7}
.case-dark-section{background:#062f4a;color:#fff}
.case-section-head.light h2{color:#fff}.case-section-head.light p{color:rgba(255,255,255,.7)}
.case-engineering-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:20px}
.case-engineering-grid figure{margin:0;overflow:hidden;border-radius:22px;background:#fff}
.case-engineering-main{grid-row:span 2}
.case-engineering-grid img{display:block;width:100%;height:300px;object-fit:contain;background:#f5f7f7}
.case-engineering-main img{height:680px}
.case-engineering-grid figcaption{display:flex;padding:22px;flex-direction:column;gap:7px;color:#082b43}
.case-engineering-grid figcaption span{color:#667a83;font-size:13px;line-height:1.55}
.case-configuration-layout{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}
.case-configuration-layout dl{margin:0;overflow:hidden;border:1px solid #d8e1de;border-radius:22px;background:#fff}
.case-configuration-layout dl>div{display:grid;grid-template-columns:170px 1fr;padding:18px 22px;border-bottom:1px solid #e2e8e6}
.case-configuration-layout dl>div:last-child{border:0}
.case-configuration-layout dt{color:#6d8088;font-size:12px;font-weight:600}.case-configuration-layout dd{margin:0;color:#082b43;font-weight:600}
.case-reality-section{background:#edf2f1}
.case-reality-section .case-section-head{max-width:none}
.case-reality-section .case-section-head h2{font-size:clamp(36px,3.2vw,54px);white-space:nowrap}
.case-reality-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.case-reality-grid figure{margin:0;overflow:hidden;border-radius:20px;background:#fff}
.case-reality-grid img{display:block;width:100%;height:340px;object-fit:cover}
.case-reality-grid figure:first-child img{object-fit:contain;background:#f7f8f8}
.case-reality-grid figcaption{display:flex;padding:20px;gap:13px;align-items:center;color:#082b43}
.case-reality-grid figcaption span{color:#078e8c;font-size:12px}.case-reality-grid figcaption b{font-size:14px}
.case-result-section{background:#fff}
.case-result-layout{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.case-result-layout img{width:100%;max-height:650px;object-fit:cover;border-radius:26px}
.case-learning-section{background:#082b43}
.case-learning-card{max-width:980px;text-align:center;color:#fff}
.case-learning-card h2{color:#fff}.case-learning-card p{color:rgba(255,255,255,.72)}
.case-learning-card blockquote{margin:48px 0 0;padding:34px;border-top:1px solid rgba(255,255,255,.22);border-bottom:1px solid rgba(255,255,255,.22);color:#9ce0dc;font:500 clamp(28px,3vw,42px)/1.25 var(--serif)}
.case-cta-section{background:#f7f8f6}
.case-cta-card{display:grid;grid-template-columns:1fr auto;gap:70px;align-items:center;padding:60px;border-radius:28px;background:#0b918e;color:#fff}
.case-cta-card h2{max-width:800px;color:#fff}.case-cta-card p{max-width:780px;color:rgba(255,255,255,.82)}
.case-cta-card .button{background:#fff;color:#082b43;white-space:nowrap}
@media(max-width:980px){.case-detail-hero{min-height:700px}.case-two-column,.case-configuration-layout,.case-result-layout{grid-template-columns:1fr;gap:42px}.case-challenge-grid,.case-reality-grid{grid-template-columns:repeat(2,1fr)}.case-engineering-grid{grid-template-columns:1fr}.case-engineering-main{grid-row:auto}.case-engineering-main img{height:480px}.case-reality-section .case-section-head h2{white-space:normal}.case-cta-card{grid-template-columns:1fr}}
@media(max-width:720px){.case-detail-hero{min-height:720px}.case-detail-hero-copy{padding-top:130px;padding-bottom:42px}.case-detail-hero h1{font-size:43px}.case-detail-meta{grid-template-columns:1fr}.case-detail-meta span{padding:12px 0}.case-editorial-section,.case-soft-section,.case-dark-section,.case-reality-section,.case-result-section,.case-learning-section,.case-cta-section{padding:70px 0}.case-challenge-grid,.case-reality-grid{grid-template-columns:1fr}.case-engineering-grid img,.case-engineering-main img{height:300px}.case-configuration-layout dl>div{grid-template-columns:1fr;gap:7px}.case-cta-card{padding:34px 24px}.case-cta-card .button{width:100%;text-align:center}}

/* Application case — editorial article presentation */
.case-detail-page main{background:#fff}
.case-detail-page .case-detail-hero{display:grid;min-height:0;padding:150px 0 0;align-items:start;background:#fff}
.case-detail-page .case-detail-hero-shade{display:none}
.case-detail-page .case-detail-hero-copy{grid-row:1;max-width:980px;padding:0 28px 48px;color:#082b43}
.case-detail-page .case-detail-hero-copy>span{margin-bottom:18px;color:#087f80}
.case-detail-page .case-detail-hero h1{max-width:940px;font-size:50px;font-weight:500;line-height:1.02}
.case-detail-page .case-detail-hero-copy>p{max-width:760px;margin:24px 0 32px;color:#607681;font-size:18px}
@media(min-width:981px){.case-detail-page .case-detail-hero-copy>p{max-width:none;white-space:nowrap}}
.case-detail-page .case-detail-meta{max-width:940px;border-color:#dbe4e1}
.case-detail-page .case-detail-meta span{color:#71858d}
.case-detail-page .case-detail-meta b{color:#082b43}
.case-detail-page .case-detail-hero>img{position:relative;inset:auto;grid-row:2;width:min(1180px,calc(100% - 56px));height:min(620px,56vw);margin:0 auto;object-fit:cover;border-radius:22px}
.case-detail-page .case-detail-breadcrumb{max-width:900px;padding-top:24px;padding-bottom:18px}
.case-detail-page .case-editorial-section,
.case-detail-page .case-soft-section,
.case-detail-page .case-dark-section,
.case-detail-page .case-reality-section,
.case-detail-page .case-result-section,
.case-detail-page .case-learning-section{padding:48px 0;background:#fff;color:#123343}
.case-detail-page .case-editorial-section>.wrap,
.case-detail-page .case-soft-section>.wrap,
.case-detail-page .case-dark-section>.wrap,
.case-detail-page .case-reality-section>.wrap,
.case-detail-page .case-result-section>.wrap,
.case-detail-page .case-learning-section>.wrap{max-width:900px}
.case-detail-page .case-narrow{max-width:900px}
.case-detail-page .case-narrow h2,
.case-detail-page .case-two-column h2,
.case-detail-page .case-section-head h2,
.case-detail-page .case-configuration-layout h2,
.case-detail-page .case-result-layout h2,
.case-detail-page .case-learning-card h2{font-size:clamp(32px,3.4vw,48px);line-height:1.12}
.case-detail-page .case-narrow p,
.case-detail-page .case-two-column p,
.case-detail-page .case-section-head p,
.case-detail-page .case-configuration-layout p,
.case-detail-page .case-result-layout p,
.case-detail-page .case-learning-card p{color:#405b68;font-size:17px;line-height:1.9}
.case-detail-page .case-two-column{grid-template-columns:1fr;gap:10px}
.case-detail-page .case-section-head{max-width:900px;margin-bottom:32px}
.case-detail-page .case-section-head.light h2{color:#082b43}
.case-detail-page .case-section-head.light p{color:#405b68}
.case-detail-page .case-challenge-grid{grid-template-columns:repeat(2,1fr);gap:14px}
.case-detail-page .case-challenge-grid article{min-height:0;padding:24px;border-radius:14px;background:#f5f8f7;box-shadow:none}
.case-detail-page .case-challenge-grid h3{margin:22px 0 10px;font-size:22px}
.case-detail-page .case-engineering-grid{display:block}
.case-detail-page .case-engineering-grid figure{margin:0 0 34px;border:1px solid #dfe7e4;border-radius:14px;box-shadow:none}
.case-detail-page .case-engineering-grid img,
.case-detail-page .case-engineering-main img{width:100%;height:auto;max-height:620px;object-fit:contain}
.case-detail-page .case-engineering-grid figcaption{padding:18px 20px}
.case-detail-page .case-configuration-layout{grid-template-columns:1fr;gap:26px}
.case-detail-page .case-configuration-layout dl{border-radius:14px;box-shadow:none}
.case-detail-page .case-reality-section .case-section-head h2{font-size:clamp(31px,3vw,45px)}
.case-detail-page .case-reality-grid{grid-template-columns:repeat(4,1fr);gap:10px}
.case-detail-page .case-reality-grid figure{border:1px solid #dfe7e4;border-radius:12px;box-shadow:none}
.case-detail-page .case-reality-grid img{height:230px}
.case-detail-page .case-reality-grid figcaption{padding:14px}
.case-detail-page .case-result-layout{grid-template-columns:1fr;gap:28px}
.case-detail-page .case-result-layout img{max-height:none;border-radius:14px}
.case-detail-page .case-learning-card{max-width:900px;text-align:left;color:#123343}
.case-detail-page .case-learning-card h2{color:#082b43}
.case-detail-page .case-learning-card p{color:#405b68}
.case-detail-page .case-learning-card blockquote{margin-top:32px;padding:26px 0;border-color:#dbe4e1;color:#087f80;font-size:clamp(26px,3vw,38px)}
.case-learning-cta{display:flex;justify-content:center;margin-top:28px}
.case-learning-cta .button{margin-bottom:-45px;padding-right:30px;padding-left:30px;border:1px solid #fff;background:#fff;color:#082b43;box-shadow:0 10px 28px rgba(0,0,0,.16)}
.case-learning-cta .button:hover{border-color:#8edbd7;background:#8edbd7;color:#082b43}
@media(max-width:980px){.case-detail-page .case-reality-grid{grid-template-columns:repeat(2,1fr)}.case-detail-page .case-reality-section .case-section-head h2{white-space:normal}}
@media(max-width:720px){.case-detail-page .case-detail-hero{min-height:0;padding-top:112px}.case-detail-page .case-detail-hero-copy{padding-bottom:32px}.case-detail-page .case-detail-hero h1{font-size:40px}.case-detail-page .case-detail-hero>img{width:calc(100% - 32px);height:72vw;border-radius:14px}.case-detail-page .case-detail-meta{grid-template-columns:1fr}.case-detail-page .case-editorial-section,.case-detail-page .case-soft-section,.case-detail-page .case-dark-section,.case-detail-page .case-reality-section,.case-detail-page .case-result-section,.case-detail-page .case-learning-section{padding:38px 0}.case-detail-page .case-challenge-grid,.case-detail-page .case-reality-grid{grid-template-columns:1fr}.case-detail-page .case-reality-grid img{height:auto;max-height:430px;object-fit:contain}}

.case-conversion-section{padding:56px 0 90px;background:#fff}
.case-conversion-section>.wrap{display:grid;grid-template-columns:minmax(340px,390px) minmax(0,1fr);gap:44px;align-items:start;max-width:1100px}
.case-related-product{display:flex;min-width:0;padding:20px;flex-direction:column;align-items:stretch;border:1px solid #dbe4e1;border-radius:16px;background:#f7f9f8}
.case-related-product>a{display:block;overflow:hidden;border-radius:12px;background:#fff}
.case-related-product img{display:block;width:100%;height:250px;object-fit:contain;padding:12px}
.case-related-product>div{padding:18px 4px 4px}
.case-related-product h2{width:100%;margin:10px 0 13px -2px;padding-top:1px;font:600 16px/1.25 "Inter Variable",Arial,sans-serif}
.case-related-product h2 a{color:#082b43;text-decoration:none}
.case-related-product p{margin:0 0 16px;color:#496470;font-size:14px;line-height:1.75}
.case-text-link{color:#087f80;font-size:13px;font-weight:600;text-decoration:none}
.case-tag-panel{min-width:0;padding:4px 0 20px}
.case-tag-groups{display:grid;grid-template-columns:repeat(2,1fr);gap:26px 38px;margin-top:22px}
.case-tag-groups h3{margin:0 0 12px;color:#082b43;font-size:13px;text-transform:uppercase;letter-spacing:.08em}
.case-tag-groups p{display:flex;margin:0;gap:8px;flex-wrap:wrap}
.case-tag-groups a,.case-tag-groups p span{display:inline-flex;padding:7px 11px;border:1px solid #d8e3df;border-radius:999px;background:#f8faf9;color:#496470;font-size:12px;line-height:1.25;text-decoration:none}
.case-tag-groups a:hover{border-color:#0b918e;color:#087f80}
.case-inquiry-funnel{margin-top:24px;padding:38px;border-radius:18px;background:#082f49;color:#fff}
.case-inquiry-funnel>div:first-child{max-width:680px}
.case-inquiry-funnel h2{margin:10px 0 14px;font:600 clamp(30px,3.4vw,43px)/1.08 "Inter Variable",Arial,sans-serif}
.case-inquiry-funnel>div:first-child p{color:rgba(255,255,255,.7);line-height:1.7}
.case-inquiry-funnel ol{display:grid;grid-template-columns:repeat(4,1fr);margin:30px 0;padding:0;list-style:none;border-top:1px solid rgba(255,255,255,.2);border-bottom:1px solid rgba(255,255,255,.2)}
.case-inquiry-funnel li{display:flex;min-height:145px;padding:20px 16px;flex-direction:column;border-right:1px solid rgba(255,255,255,.16)}
.case-inquiry-funnel li:last-child{border:0}
.case-inquiry-funnel li span{color:#8edbd7;font-size:11px}.case-inquiry-funnel li b{margin:16px 0 8px}.case-inquiry-funnel li small{color:rgba(255,255,255,.65);line-height:1.45}
.case-inquiry-action{display:flex;align-items:center;justify-content:center;gap:24px;text-align:center}
.case-inquiry-action p{margin:0;color:#8edbd7;font-size:12px;font-weight:600;letter-spacing:.04em}
.case-inquiry-action .button{background:#fff;color:#082b43;white-space:nowrap}
@media(max-width:780px){.case-conversion-section>.wrap{grid-template-columns:1fr}.case-related-product{max-width:440px}.case-related-product img{height:auto;max-height:320px}.case-tag-groups{grid-template-columns:1fr}.case-inquiry-funnel{padding:28px 22px}.case-inquiry-funnel ol{grid-template-columns:1fr}.case-inquiry-funnel li{min-height:0;border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.case-inquiry-funnel li:last-child{border-bottom:0}.case-inquiry-action{align-items:stretch;flex-direction:column}.case-inquiry-action .button{width:100%;text-align:center}}

/* Product detail template */
.product-detail-page { background:#f7f8f6; color:#123343; }
.product-breadcrumb { display:flex; gap:10px; align-items:center; flex-wrap:wrap; padding-top:112px; padding-bottom:26px; color:#71828a; font-size:13px; }
.product-breadcrumb a { color:#55717c; text-decoration:none; }
.product-breadcrumb b { color:#123343; font-weight:600; }
.product-intro { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr); gap:64px; align-items:start; padding-bottom:82px; }
.product-main-image { min-height:590px; background:#fff; border:1px solid rgba(6,47,74,.09); border-radius:28px; display:grid; place-items:center; overflow:hidden; box-shadow:0 24px 70px rgba(3,35,55,.08); }
.product-main-image img { width:100%; height:590px; object-fit:contain; padding:32px; transition:opacity .2s ease; }
.product-thumbnails { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:14px; }
.product-thumbnails button { appearance:none; padding:0; background:#fff; border:1px solid rgba(6,47,74,.12); border-radius:16px; overflow:hidden; cursor:pointer; height:100px; }
.product-thumbnails button.active { border-color:#078e8c; box-shadow:0 0 0 2px rgba(7,142,140,.15); }
.product-thumbnails img { width:100%; height:100%; object-fit:contain; padding:8px; }
.product-summary { padding-top:18px; }
.product-family { display:inline-block; color:#057b79; font-weight:600; font-size:12px; letter-spacing:.08em; text-transform:uppercase; line-height:1.5; }
.product-summary h1 { margin:18px 0 22px; font:500 clamp(42px,4.1vw,66px)/.99 Georgia,serif; letter-spacing:-.035em; color:#032337; }
.product-lead { font-size:18px; line-height:1.7; color:#5e737d; }
.product-model { display:flex; align-items:center; justify-content:space-between; gap:16px; margin:28px 0 22px; padding:16px 20px; border-radius:999px; background:#e7f1f0; color:#056b6a; font-weight:600; }
.product-model strong { color:#032337; }
.product-highlights { display:grid; gap:12px; padding:0; margin:0 0 30px; list-style:none; }
.product-highlights li { position:relative; padding-left:30px; line-height:1.5; }
.product-highlights li::before,.check-list li::before { content:'✓'; position:absolute; left:0; color:#078e8c; font-weight:600; }
.product-actions { display:flex; gap:12px; flex-wrap:wrap; }
.button-outline { background:transparent!important; color:#062f4a!important; border:1px solid rgba(6,47,74,.24)!important; }
.project-note { margin-top:18px; font-size:12px; color:#788b93; }
.product-section { padding-top:110px; padding-bottom:110px; }
.product-overview { display:grid; grid-template-columns:.85fr 1.15fr; gap:90px; }
.product-section h2 { margin:12px 0 0; font:500 clamp(38px,4vw,58px)/1.05 Georgia,serif; color:#032337; letter-spacing:-.025em; }
.product-rich-copy { font-size:17px; line-height:1.85; color:#627680; }.product-rich-copy p:first-child { margin-top:0; }
.product-soft-section { background:#e7f1f0; }
.capability-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:50px; }
.capability-grid article { min-height:260px; padding:30px; border-radius:22px; background:rgba(255,255,255,.76); box-shadow:0 14px 34px rgba(3,35,55,.05); }
.capability-grid article>span { color:#078e8c; font:500 28px Georgia,serif; }.capability-grid h3 { margin:58px 0 12px; font:500 24px Georgia,serif; color:#032337; }.capability-grid p { color:#667b84; line-height:1.65; }
.application-section { display:grid; grid-template-columns:1.05fr .95fr; gap:76px; align-items:center; }
.application-image { border-radius:28px; overflow:hidden; background:white; min-height:520px; }.application-image img { width:100%; height:520px; object-fit:contain; }
.application-section>div:last-child>p { color:#647982; line-height:1.8; font-size:17px; }
.check-list { list-style:none; padding:0; display:grid; gap:14px; margin-top:28px; }.check-list li { position:relative; padding-left:28px; }
.product-dark-section { background:#062f4a; color:#fff; }.product-dark-section .product-section h2,.product-dark-section .kicker { color:#fff; }.product-dark-section .section-head>p { color:#b9c8cd; }
.spec-grid { display:grid; grid-template-columns:repeat(4,1fr); margin:52px 0 0; border-top:1px solid rgba(255,255,255,.18); border-left:1px solid rgba(255,255,255,.18); }
.spec-grid div { padding:26px; border-right:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }.spec-grid dt { color:#9adbd7; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }.spec-grid dd { margin:12px 0 0; font-size:17px; line-height:1.5; }
.table-scroll { margin-top:48px; overflow:auto; border-radius:22px; border:1px solid rgba(6,47,74,.1); background:#fff; }
.model-table { width:100%; min-width:920px; border-collapse:collapse; }.model-table th,.model-table td { padding:18px 20px; text-align:left; border-bottom:1px solid #e5ecec; white-space:nowrap; }.model-table th { background:#062f4a; color:#fff; font-size:12px; letter-spacing:.04em; }.model-table td:first-child { color:#057b79; font-weight:600; }.model-table tr:last-child td { border-bottom:0; }.model-table tbody tr:nth-child(even) { background:#f7faf9; }
.model-note { margin-top:20px; background:#e7f1f0; border-radius:20px; padding:0 24px; }.model-note summary { padding:22px 0; cursor:pointer; color:#056b6a; font-weight:600; }.model-note div { padding:0 0 20px; color:#60757f; line-height:1.7; }
.product-quote-section { padding:0 0 110px; }.product-quote-card { background:#078e8c; color:#fff; border-radius:28px; padding:56px 64px; display:flex; justify-content:space-between; align-items:center; gap:50px; }.product-quote-card .kicker,.product-quote-card h2 { color:#fff; }.product-quote-card h2 { max-width:760px; }.product-quote-card p { max-width:740px; color:#d8f2f0; line-height:1.7; }
@media(max-width:980px){.product-intro{grid-template-columns:1fr;}.product-summary{padding-top:0}.product-overview,.application-section{grid-template-columns:1fr;gap:46px}.capability-grid,.spec-grid{grid-template-columns:repeat(2,1fr)}.product-quote-card{align-items:flex-start;flex-direction:column}}
@media(max-width:720px){.product-breadcrumb{padding-top:92px}.product-intro{gap:34px;padding-bottom:60px}.product-main-image{min-height:390px;border-radius:22px}.product-main-image img{height:390px;padding:16px}.product-thumbnails{gap:8px}.product-thumbnails button{height:72px;border-radius:12px}.product-summary h1{font-size:40px}.product-model{align-items:flex-start;flex-direction:column;border-radius:20px}.product-actions .button{width:100%;text-align:center}.product-section{padding-top:76px;padding-bottom:76px}.product-overview{gap:36px}.capability-grid,.spec-grid{grid-template-columns:1fr}.application-image,.application-image img{min-height:360px;height:360px}.product-quote-section{padding-bottom:76px}.product-quote-card{padding:38px 26px;border-radius:22px}.product-quote-card .button{width:100%;text-align:center}}

/* Machinery-style product detail layout */
.product-detail-page .product-breadcrumb { padding-bottom:20px; }
.product-detail-page .product-intro { grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr); gap:48px; align-items:center; padding-bottom:64px; }
.product-detail-page .product-main-image { min-height:0; aspect-ratio:1000/683; border-radius:22px; box-shadow:none; }
.product-detail-page .product-gallery { position:relative; }
.product-detail-page .product-main-image img { height:100%; padding:0; object-fit:contain!important; object-position:center; background:#fff; }
.product-detail-page .product-thumbnails { position:absolute;right:16px;bottom:16px;left:16px;z-index:2;display:flex;justify-content:flex-end;gap:10px;max-width:calc(100% - 32px);margin:0;padding:0;overflow-x:auto;scrollbar-width:thin }
.product-detail-page .product-thumbnails button{flex:0 0 76px}
.product-detail-page .product-thumbnails button { width:76px; height:76px; background:rgba(255,255,255,.96); border-radius:12px; }
.product-detail-page .product-summary { padding-top:0; }
.product-detail-page .product-family { margin-bottom:8px; }
.product-detail-page .product-summary h1 { margin:8px 0 14px; font:600 clamp(32px,3vw,48px)/1.08 Georgia,serif; letter-spacing:-.025em; }
.product-detail-page .product-lead { margin:0 0 22px; font-size:15px; line-height:1.72; }
.product-summary-table { width:100%; margin:0 0 20px; border-collapse:separate; border-spacing:0; background:#fff; border:1px solid rgba(6,47,74,.13); border-radius:14px; overflow:hidden; }
.product-summary-table tr:not(:last-child) td { border-bottom:1px solid rgba(6,47,74,.09); }
.product-summary-table td { padding:10px 14px; font-size:13px; line-height:1.35; }
.product-summary-table td:first-child { width:43%; color:#71828a; font-weight:600; }
.product-summary-table td:last-child { color:#032337; font-weight:600; }
.product-detail-page .product-actions .button { display:block; width:100%; text-align:center; padding:15px 20px; }
.product-detail-page .project-note { margin-bottom:0; }
.product-specifications { padding-top:76px; padding-bottom:90px; border-top:1px solid rgba(6,47,74,.1); }
.product-specifications h2 { margin:0 0 22px; color:#032337; font:600 30px/1.2 Georgia,serif; }
.product-specifications h2:not(:first-child) { margin-top:52px; }
.specification-intro { max-width:760px; margin:-10px 0 22px; color:#687881; font-size:14px; line-height:1.7; }
.product-specifications .table-scroll { margin-top:0; border-radius:14px; }
.configuration-table { width:100%; min-width:760px; border-collapse:collapse; }
.configuration-table th,.configuration-table td { width:50%; padding:15px 20px; text-align:left; border-bottom:1px solid #e5ecec; font-size:14px; line-height:1.5; }
.configuration-table th { background:#062f4a; color:#fff; }
.configuration-table td { background:#fff; }
.configuration-table tr:nth-child(even) td { background:#f7faf9; }
.product-specifications .model-table th,.product-specifications .model-table td { padding:15px 18px; font-size:13px; }
.product-specifications .model-note { margin-bottom:0; }
@media(max-width:980px){.product-detail-page .product-intro{grid-template-columns:1fr;align-items:start}.product-detail-page .product-gallery{max-width:760px}.product-detail-page .product-summary{max-width:760px}}
@media(max-width:720px){.product-detail-page .product-intro{padding-bottom:48px}.product-detail-page .product-main-image{aspect-ratio:4/3}.product-detail-page .product-main-image img{height:100%;padding:0}.product-detail-page .product-thumbnails{right:10px;bottom:10px;left:10px;max-width:calc(100% - 20px);justify-content:flex-end}.product-detail-page .product-thumbnails button{width:58px;height:58px;flex-basis:58px}.product-detail-page .product-summary h1{font-size:34px}.product-summary-table td{padding:10px 11px;font-size:12px}.product-specifications{padding-top:58px;padding-bottom:68px}.product-specifications h2{font-size:27px}}

/* SEO-supporting product content */
.product-seo-section { background:#e7f1f0; padding:76px 0; }
.product-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.product-info-grid article { background:#fff; padding:38px; border-radius:22px; border:1px solid rgba(6,47,74,.08); }
.product-info-grid h2,.buyer-guide-heading h2,.product-faq-layout h2,.related-products-heading h2 { margin:10px 0 18px; color:#032337; font:600 32px/1.16 Georgia,serif; }
.product-info-grid p { margin:0 0 14px; color:#60757f; font-size:15px; line-height:1.75; }
.compact-list { list-style:none; margin:20px 0 0; padding:0; display:grid; gap:10px; }
.compact-list li { position:relative; padding-left:22px; color:#123343; font-size:14px; }
.compact-list li::before { content:'•'; position:absolute; left:2px; color:#078e8c; font-weight:600; }
.buyer-guide-section { padding-top:82px; padding-bottom:82px; }
.buyer-guide-heading { max-width:820px; margin-bottom:30px; }
.buyer-guide-heading p { color:#687881; line-height:1.7; }
.buyer-guide-table { display:grid; grid-template-columns:repeat(3,1fr); background:#fff; border:1px solid rgba(6,47,74,.1); border-radius:18px; overflow:hidden; }
.buyer-guide-table div { min-height:132px; padding:24px; border-right:1px solid rgba(6,47,74,.09); border-bottom:1px solid rgba(6,47,74,.09); }
.buyer-guide-table div:nth-child(3n) { border-right:0; }.buyer-guide-table div:nth-last-child(-n+3) { border-bottom:0; }
.buyer-guide-table strong,.buyer-guide-table span { display:block; }.buyer-guide-table strong { margin-bottom:9px; color:#056b6a; font-size:15px; }.buyer-guide-table span { color:#667b84; font-size:13px; line-height:1.55; }
.buyer-guide-button { margin-top:22px; }
.product-faq-section { background:#fff; padding:82px 0; border-top:1px solid rgba(6,47,74,.08); }
.product-faq-layout { display:block; max-width:1120px; }
.product-faq-heading { text-align:center; margin:0 auto 42px; }
.product-faq-heading h2 { margin-top:12px; font:600 clamp(36px,4vw,52px)/1.08 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; letter-spacing:-.035em; }
.product-faq-list { width:100%; border-top:1px solid rgba(6,47,74,.18); }
.product-faq-list details { border-bottom:1px solid rgba(6,47,74,.14); }
.product-faq-list summary { position:relative; padding:27px 52px 27px 0; color:#032337; font-size:17px; font-weight:600; cursor:pointer; list-style:none; }
.product-faq-list summary::-webkit-details-marker { display:none; }.product-faq-list summary::after { content:'+'; position:absolute; right:4px; top:18px; color:#078e8c; font-size:24px; }.product-faq-list details[open] summary::after { content:'−'; }
.product-faq-list summary::after { top:22px; }
.product-faq-list p { max-width:1040px; margin:0; padding:0 60px 28px 0; color:#687881; font-size:16px; line-height:1.85; }
.related-products-section { padding:78px 0 96px; background:#f7f8f6; }
.related-products-heading { margin-bottom:28px; }.related-products-heading>span { color:#078e8c; font-size:12px; font-weight:600; letter-spacing:.17em; text-transform:uppercase; }
.related-products-row { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.related-product-card { display:grid; grid-template-columns:210px 1fr; min-height:230px; background:#fff; border:1px solid rgba(6,47,74,.11); border-radius:18px; overflow:hidden; }
.related-product-card>a { background:#f2f5f3; }.related-product-card img { width:100%; height:100%; min-height:230px; object-fit:contain; padding:14px; }
.related-product-card>div { padding:28px; }.related-product-card span { color:#078e8c; font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }.related-product-card h3 { margin:10px 0 12px; font:600 22px/1.25 Georgia,serif; }.related-product-card h3 a { color:#032337; text-decoration:none; }.related-product-card p { margin:0; color:#687881; font-size:13px; line-height:1.6; }
@media(max-width:980px){.product-info-grid,.related-products-row{grid-template-columns:1fr}.buyer-guide-table{grid-template-columns:repeat(2,1fr)}.buyer-guide-table div:nth-child(3n){border-right:1px solid rgba(6,47,74,.09)}.buyer-guide-table div:nth-child(2n){border-right:0}.buyer-guide-table div:nth-last-child(-n+3){border-bottom:1px solid rgba(6,47,74,.09)}.buyer-guide-table div:nth-last-child(-n+2){border-bottom:0}}
@media(max-width:720px){.product-seo-section,.buyer-guide-section,.product-faq-section,.related-products-section{padding-top:60px;padding-bottom:60px}.product-info-grid article{padding:28px 24px}.product-info-grid h2,.buyer-guide-heading h2,.related-products-heading h2{font-size:28px}.product-faq-heading{margin-bottom:28px}.product-faq-heading h2{font-size:36px}.product-faq-list summary{padding:22px 42px 22px 0;font-size:15px}.product-faq-list summary::after{top:17px}.product-faq-list p{padding:0 42px 24px 0;font-size:14px;line-height:1.75}.buyer-guide-table{grid-template-columns:1fr}.buyer-guide-table div{min-height:0;border-right:0!important;border-bottom:1px solid rgba(6,47,74,.09)!important}.buyer-guide-table div:last-child{border-bottom:0!important}.buyer-guide-button{width:100%;text-align:center}.related-product-card{grid-template-columns:1fr}.related-product-card>a{height:230px}.related-product-card img{height:230px}.related-product-card>div{padding:24px}}

.product-catalogue-section { padding-top:82px; padding-bottom:100px; }
.catalogue-category { padding-top:54px; }
.catalogue-category>h2 { margin:0 0 24px; color:#032337; font:600 32px/1.2 Georgia,serif; }
.catalogue-category .content-card img { height:260px; object-fit:contain; padding:18px; background:#f7f8f6; }
.catalogue-category .content-card-body>span { display:block; min-height:32px; }
@media(max-width:720px){.product-catalogue-section{padding-top:60px;padding-bottom:72px}.catalogue-category{padding-top:42px}.catalogue-category>h2{font-size:27px}.catalogue-category .content-card img{height:220px}}

.equipment-line-page #equipment-categories {
  padding-top: 18px;
}

.equipment-line-page #equipment-categories > .section-head {
  align-items: flex-start;
  margin-bottom: 66px;
  padding-bottom: 8px;
}

.equipment-line-page .equipment-heading-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.equipment-line-page .equipment-heading-copy h2 span {
  display: block;
}

@media (min-width: 1081px) {
  .equipment-line-page .equipment-heading-copy h2 {
    font-size: 60px;
  }

  .museum-equipment-line-page .equipment-heading-copy {
    margin-top: 38px;
  }

  .research-equipment-line-page .equipment-heading-copy {
    margin-top: 69px;
    margin-bottom: 111px;
  }

  .industrial-equipment-line-page .equipment-heading-copy {
    margin-top: 25px;
  }
}

.equipment-line-page .equipment-intro-copy {
  max-width: 460px;
  color: #526873;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}

.equipment-keywords {
  display: grid;
  gap: 2px;
  margin: 22px 0 0;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.equipment-keywords span {
  display: block;
}

.contact-workspace {
  background:
    radial-gradient(circle at 92% 5%, rgba(7,142,140,0.1), transparent 31%),
    var(--paper);
  color: var(--ink);
}

.contact-page .contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 64px;
}

.contact-page .contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-page .contact-form .kicker,
.contact-page .contact-details .kicker {
  color: var(--teal);
}

.contact-page .contact-form h2,
.contact-page .contact-details h2 {
  color: var(--navy);
}

.contact-page .contact-form h2 {
  margin: 7px 0 27px;
  font-family: var(--sans);
  font-size: 42px;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.contact-page .field label {
  color: var(--navy);
}

.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  border-color: var(--line);
  background: #f7faf9;
  color: var(--ink);
  outline: none;
}

.contact-page .field input::placeholder,
.contact-page .field textarea::placeholder {
  color: #8a999f;
}

.contact-page .field input:focus,
.contact-page .field select:focus,
.contact-page .field textarea:focus {
  border-color: #8fd5d0;
}

.contact-page .form-note {
  color: var(--muted);
}

.contact-submit {
  width: 100%;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
}

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

.contact-intro h2 {
  max-width: 620px;
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 3.3vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.contact-intro p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 22px;
}

.contact-method-grid > a,
.contact-method-grid > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 0 14px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
}

.contact-method-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
}

.contact-method-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-method-grid strong {
  align-self: end;
  font-size: 14px;
}

.contact-method-grid small {
  align-self: start;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 11px;
}

.contact-map {
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--mist);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 0;
}

/* After-sales support and warranty — reference-inspired FAQ policy layout */
.service-faq-hero {
  position: relative;
  padding: 82px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 35%, rgba(91,199,194,0.15), transparent 25%),
    var(--paper);
}

.service-faq-title {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
}

.service-faq-title > span {
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(3,35,55,0.045);
  font-family: var(--sans);
  font-size: clamp(70px, 11vw, 160px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.8;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  user-select: none;
}

.service-faq-title > div {
  position: relative;
  z-index: 1;
}

.service-faq-title h1 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-faq-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-faq-section {
  padding-top: 38px;
  background:
    radial-gradient(circle at 94% 10%, rgba(7,142,140,0.08), transparent 23%),
    linear-gradient(180deg, var(--paper), #fff 62%);
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 92px;
  align-items: start;
}

.service-faq-list {
  display: grid;
  gap: 14px;
}

.service-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(6,47,74,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 38px rgba(3,35,55,0.07);
}

.service-faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 18px 22px 18px 30px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.service-faq-list summary::-webkit-details-marker {
  display: none;
}

.service-faq-list summary span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.service-faq-list summary i {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
}

.service-faq-list summary i::before,
.service-faq-list summary i::after {
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transition: transform 180ms ease;
}

.service-faq-list summary i::after {
  transform: rotate(90deg);
}

.service-faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.service-faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.service-faq-answer {
  padding: 26px 30px 34px;
}

.service-faq-answer p {
  margin: 0 0 18px;
  color: #425660;
  font-size: 14px;
  line-height: 1.78;
}

.service-faq-answer h2 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.service-faq-answer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-faq-answer li {
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid var(--line);
  color: #425660;
  font-size: 13px;
  line-height: 1.55;
}

.service-faq-answer li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.service-faq-answer .service-faq-note,
.service-faq-answer .service-faq-warning {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--teal);
  background: rgba(7,142,140,0.07);
  color: var(--navy);
}

.service-faq-answer .service-faq-warning {
  border-left-color: var(--navy);
  background: rgba(3,35,55,0.07);
}

.service-faq-contact {
  position: sticky;
  top: 118px;
  padding: 8px 0 0;
  text-align: center;
}

.service-question-mark {
  position: relative;
  display: grid;
  width: 190px;
  height: 170px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 142px;
  font-weight: 500;
  line-height: 1;
}

.service-question-mark::before,
.service-question-mark::after {
  position: absolute;
  z-index: -1;
  border-radius: 48% 52% 60% 40%;
  background: rgba(91,199,194,0.13);
  content: "";
}

.service-question-mark::before {
  inset: 25px 18px 4px;
  transform: rotate(-8deg);
}

.service-question-mark::after {
  width: 38px;
  height: 38px;
  right: 4px;
  bottom: 8px;
  background: rgba(3,35,55,0.08);
}

.service-faq-contact h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-faq-contact > p {
  max-width: 440px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-contact-prep {
  display: grid;
  gap: 7px;
  max-width: 440px;
  margin: 28px auto 24px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.service-contact-prep span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-contact-prep strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
}

.service-faq-contact .button {
  min-width: 250px;
  border-radius: 999px;
}

.service-faq-contact small {
  display: block;
  max-width: 420px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

/* Rental and on-site services — quiet accordion policy page */
.rental-service-page main {
  background:
    radial-gradient(circle at 10% 18%, rgba(91,199,194,0.12), transparent 24%),
    linear-gradient(180deg, #f8faf9, var(--paper));
}

.rental-service-hero {
  padding: 108px 0 54px;
  text-align: center;
}

.rental-service-title {
  max-width: 940px;
}

.rental-service-title h1 {
  max-width: 940px;
  margin: 12px auto 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.rental-service-title p {
  max-width: 710px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.rental-service-section {
  padding-top: 18px;
}

.rental-service-list {
  display: grid;
  max-width: 1080px;
  gap: 14px;
}

.rental-service-list details {
  overflow: hidden;
  border: 1px solid rgba(6,47,74,0.06);
  border-radius: 34px;
  background: rgba(227,239,241,0.82);
  box-shadow: 0 12px 34px rgba(3,35,55,0.045);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.rental-service-list details[open] {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 46px rgba(3,35,55,0.07);
}

.rental-service-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 24px;
  align-items: center;
  min-height: 84px;
  padding: 15px 18px 15px 34px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.rental-service-list summary::-webkit-details-marker {
  display: none;
}

.rental-service-list summary span {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.rental-service-list summary i {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(3,35,55,0.08);
}

.rental-service-list summary i::before,
.rental-service-list summary i::after {
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.rental-service-list summary i::after {
  transform: rotate(90deg);
}

.rental-service-list details[open] summary i::after {
  transform: rotate(0);
}

.rental-service-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.rental-service-answer {
  max-width: 940px;
  padding: 24px 34px 34px;
}

.rental-service-answer p {
  margin: 0;
  color: #425660;
  font-size: 15px;
  line-height: 1.8;
}

.rental-service-answer p + p {
  margin-top: 14px;
}

.rental-service-footer {
  display: flex;
  max-width: 1080px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rental-service-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.rental-service-footer .button {
  flex: 0 0 auto;
  border-radius: 999px;
}

.cta-banner {
  position: relative;
  min-height: 430px;
  margin-bottom: 104px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--deep-navy);
}

.cta-banner > img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-banner > img {
  object-fit: cover;
}

.cta-overlay {
  background: linear-gradient(90deg, rgba(3,35,55,0.94), rgba(3,35,55,0.7) 50%, rgba(3,35,55,0.08));
}

.cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 430px;
  width: 58%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
}

.cta-copy h2 {
  color: var(--white);
}

.cta-copy p {
  max-width: 610px;
  margin: 20px 0 25px;
  color: #c0ced4;
  font-size: 14px;
}

.resource-index-page main {
  padding-top: 0;
}

.resource-index {
  min-height: 70vh;
  background: radial-gradient(circle at 7% 7%, rgba(7,142,140,0.07), transparent 26%), var(--paper);
}

/* Blog library: isolated desktop spacing adjustment from the annotated preview. */
.news-index-page #news-library {
  margin-top: 0;
  margin-bottom: 0;
}

.resource-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 48px;
}

.resource-title-row h1 {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.resource-title-row > p {
  width: min(420px, 100%);
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.news-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(300px, 0.8fr);
  gap: 34px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.featured-news {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
}

.featured-news > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.featured-news::after {
  position: absolute;
  inset: 32% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(3,35,55,0.94), rgba(3,35,55,0.04));
}

.featured-news:hover > img {
  transform: scale(1.025);
}

.featured-news-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px;
}

.featured-news-overlay > span,
.news-card > div > span,
.download-copy > span {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-news-overlay h2 {
  max-width: 820px;
  margin: 12px 0 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.featured-news-overlay small {
  color: rgba(255,255,255,0.72);
}

.latest-posts {
  padding: 4px 0;
}

.latest-posts > h2 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1;
}

.latest-post {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.latest-post img {
  width: 96px;
  height: 82px;
  border-radius: 14px;
  object-fit: cover;
}

.latest-post span {
  display: grid;
  gap: 10px;
}

.latest-post strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.latest-post small,
.news-card small,
.download-copy small {
  color: var(--muted);
  font-size: 11px;
}

.article-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin: 60px 0 28px;
}

.article-section-head h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.round-controls {
  display: flex;
  gap: 10px;
}

.round-controls span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

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

.news-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card > div {
  padding: 24px;
}

.news-card > div > span {
  color: var(--teal);
}

.news-card h3 {
  min-height: 76px;
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.news-card p {
  min-height: 76px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.resource-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 52px;
}

.resource-pagination a,
.resource-pagination span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
}

.resource-pagination a.active {
  background: var(--navy);
  color: #fff;
}

.resource-pagination span:first-child { margin-right: auto; }
.resource-pagination span:last-child { margin-left: auto; }

/* News article detail template */
.article-detail-page main {
  padding-top: 86px;
  background:
    radial-gradient(circle at 92% 4%, rgba(7,142,140,0.07), transparent 24%),
    var(--paper);
}

.article-detail {
  padding: 82px 0 0;
}

.article-masthead {
  margin-bottom: 44px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-back-link::before {
  content: "←";
}

.article-masthead h1 {
  max-width: 1230px;
  margin: 20px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(50px, 5.7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.article-masthead > p {
  max-width: 880px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.article-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(280px, 0.48fr);
  gap: 48px;
  align-items: stretch;
}

.article-featured-image {
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 34px;
  padding: 18px 0;
}

.article-meta > div {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.article-meta > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-meta > div > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta > div > p {
  margin: 0;
}

.article-meta > div > p > a {
  display: inline-flex;
  margin: 0 7px 7px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.article-author {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.article-author > i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--teal));
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-style: normal;
}

.article-author p,
.article-reading {
  display: grid;
  gap: 6px;
}

.article-author strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.3;
}

.article-author small,
.article-reading small,
.article-reading time {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.article-body-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(280px, 340px);
  justify-content: space-between;
  gap: 92px;
  padding-top: 76px;
}

.article-body {
  color: #354b57;
}

.article-body p,
.article-body li {
  font-size: 16px;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body .article-lead {
  margin-bottom: 42px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.55;
}

.article-body h2 {
  margin: 58px 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding-left: 24px;
}

.article-body li::marker {
  color: var(--teal);
  font-weight: 600;
}

.article-note {
  margin: 34px 0 !important;
  padding: 22px 24px;
  border-left: 3px solid var(--teal);
  background: rgba(7,142,140,0.07);
  color: var(--navy);
}

.article-side-note {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-side-note h2 {
  margin: 10px 0 16px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.article-side-note p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.article-side-note .button {
  border-radius: 999px;
}

.article-related {
  margin-top: 100px;
  background: linear-gradient(180deg, rgba(227,239,241,0.48), var(--paper));
}

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

.article-related-head h2 {
  max-width: 860px;
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.article-related-head > a {
  flex: 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--teal);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.download-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.download-sidebar {
  position: sticky;
  top: 118px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
}

.download-sidebar nav {
  display: grid;
  gap: 4px;
  margin: 20px -10px;
}

.download-sidebar nav a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  padding: 13px 10px;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.download-sidebar nav a.active,
.download-sidebar nav a:hover {
  background: var(--mist);
}

.download-sidebar nav span {
  color: var(--teal);
  font-size: 10px;
}

.download-sidebar > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.download-library {
  display: grid;
  gap: 18px;
}

.download-item {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 18px;
  scroll-margin-top: 120px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.download-item.is-targeted {
  border-color: rgba(12, 143, 138, 0.72);
  box-shadow: 0 14px 34px rgba(6, 47, 74, 0.11);
}

.document-cover {
  position: relative;
  height: 154px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mist);
}

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

.document-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3,35,55,0.5));
}

.document-cover span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
}

.download-copy > span { color: var(--teal); }

.download-copy h2 {
  margin: 8px 0 9px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
}

.download-copy p {
  max-width: 620px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.download-button {
  min-width: 148px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.download-button.is-pending {
  opacity: 0.58;
  cursor: default;
}

.distributor-page .page-hero,
.distributor-page .page-hero-layout {
  min-height: 780px;
}

.distributor-page .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,35,55,0.96), rgba(3,35,55,0.76) 50%, rgba(3,35,55,0.3)),
    linear-gradient(0deg, rgba(3,35,55,0.48), transparent 58%);
}

.distributor-page .page-hero-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  padding-block: 140px 70px;
}

.distributor-page .page-hero h1 {
  max-width: 790px;
  font-size: clamp(54px, 5.3vw, 78px);
}

.distributor-page .page-hero-copy > p {
  max-width: 750px;
}

.distributor-hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.distributor-hero-proof article {
  display: grid;
  min-height: 145px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 55px rgba(2,27,43,0.2);
  backdrop-filter: blur(20px) saturate(125%);
}

.distributor-hero-proof span {
  color: #8fd5d0;
  font-size: 10px;
  font-weight: 600;
}

.distributor-hero-proof strong {
  max-width: 190px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.distributor-section-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 26px;
  margin-bottom: 44px;
}

.distributor-section-head .section-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
}

.distributor-section-head h2 {
  max-width: 900px;
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.distributor-section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.distributor-section-head.light h2 {
  color: #fff;
}

.distributor-section-head.light > p {
  color: rgba(255,255,255,0.66);
}

.distributor-section-head.light .section-number {
  border-color: rgba(255,255,255,0.2);
  color: #8fd5d0;
}

.backend-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 22px;
}

.backend-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 26px;
}

.backend-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.backend-image::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(3,35,55,0.9), transparent);
}

.backend-image > span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.backend-cards {
  display: grid;
  gap: 14px;
}

.backend-cards article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 14px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.backend-cards article > span {
  grid-row: 1 / span 2;
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
}

.backend-cards h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.backend-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-opportunity-section,
.partner-support {
  background:
    radial-gradient(circle at 90% 10%, rgba(7,142,140,0.18), transparent 30%),
    var(--deep-navy);
  color: #fff;
}

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

.opportunity-grid article {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
}

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

.opportunity-grid article > div {
  padding: 25px;
}

.capability-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-status.mature {
  background: #d9f0eb;
  color: #056b6a;
}

.capability-status.adaptable {
  background: #dfe9f3;
  color: #195070;
}

.capability-status.project {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.opportunity-grid h3 {
  min-height: 58px;
  margin: 15px 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.opportunity-grid ul,
.market-grid ul,
.partner-support-grid ul,
.fit-grid ul {
  margin: 0;
  padding-left: 18px;
}

.opportunity-grid li {
  margin: 7px 0;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
}

.status-note {
  margin: 24px 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

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

.market-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

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

.market-grid article > div {
  padding: 23px;
}

.market-grid h3 {
  min-height: 54px;
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
}

.market-grid li {
  margin: 7px 0;
  color: var(--muted);
  font-size: 11px;
}

.delivery-process {
  background: var(--mist);
}

.delivery-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(6,47,74,0.13);
  border-radius: 24px;
  background: #fff;
}

.delivery-step-grid article {
  min-height: 245px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.delivery-step-grid article:nth-child(4n) {
  border-right: 0;
}

.delivery-step-grid article:nth-child(n+5) {
  border-bottom: 0;
}

.delivery-step-grid article > span,
.documentation-grid article > span,
.partner-support-grid article > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
}

.delivery-step-grid h3 {
  min-height: 55px;
  margin: 35px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

.delivery-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

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

.documentation-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 25px;
}

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

.documentation-image::after {
  position: absolute;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(3,35,55,0.94), transparent);
}

.documentation-image span {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 24px;
  left: 25px;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
}

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

.documentation-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.documentation-grid article.evidence-pending {
  border-style: dashed;
  background: var(--mist);
}

.documentation-grid h3 {
  margin: 42px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.1;
}

.documentation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

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

.partner-support-grid article {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
}

.partner-support-grid article > span {
  color: #8fd5d0;
}

.partner-support-grid h3 {
  min-height: 55px;
  margin: 35px 0 15px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
}

.partner-support-grid li {
  margin: 8px 0;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
}

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

.comparison-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > span,
.comparison-row > strong {
  padding: 20px 25px;
}

.comparison-row > span {
  color: var(--muted);
  font-size: 12px;
}

.comparison-row > strong {
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.comparison-head {
  background: var(--navy);
}

.comparison-head > span {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-head > span + span {
  border-left: 1px solid rgba(255,255,255,0.18);
}

.partner-fit {
  background: var(--mist);
}

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

.fit-grid article {
  padding: 30px;
  border-radius: 23px;
}

.fit-grid article > span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-grid .good-fit {
  background: var(--navy);
  color: #fff;
}

.fit-grid .good-fit > span {
  background: #d9f0eb;
  color: var(--teal-dark);
}

.fit-grid .poor-fit {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.fit-grid .poor-fit > span {
  background: #edf0ef;
  color: var(--muted);
}

.fit-grid h3 {
  margin: 22px 0 17px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.08;
}

.fit-grid li {
  margin: 9px 0;
  font-size: 12px;
}

.fit-grid .good-fit li {
  color: rgba(255,255,255,0.72);
}

.fit-grid .poor-fit li {
  color: var(--muted);
}

.partner-fit-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 18px;
  padding: 30px;
  border-radius: 23px;
  background: #fff;
}

.partner-fit-cta h3 {
  margin: 7px 0 5px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
}

.partner-fit-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.partner-fit-cta .button {
  flex: 0 0 auto;
}

/* Distributor editorial landing page */
.distributor-editorial-page {
  background: #fff;
}

.distributor-editorial-page .page-hero {
  width: min(1460px, calc(100% - 40px));
  min-height: 690px;
  margin: 20px auto 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(3, 35, 55, 0.16);
}

.distributor-editorial-page .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,35,55,0.9), rgba(3,35,55,0.5) 55%, rgba(3,35,55,0.08)),
    linear-gradient(0deg, rgba(3,35,55,0.28), transparent 48%);
}

.distributor-editorial-page .page-hero-layout {
  min-height: 690px;
  grid-template-columns: 1fr;
  align-content: center;
  padding: 88px 0;
}

.distributor-editorial-page .page-hero-copy {
  max-width: 720px;
}

.distributor-editorial-page .page-hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-family: var(--sans);
  font-size: clamp(58px, 5.7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.distributor-editorial-page .page-hero-copy > p {
  max-width: 600px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.distributor-hero-button {
  display: flex;
  width: max-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 34px rgba(3,35,55,0.2);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(15px);
}

.distributor-about {
  padding-bottom: 44px;
}

.distributor-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
  align-items: end;
  gap: 100px;
}

.distributor-about-copy h2,
.distributor-catalog-copy h2,
.distributor-workflow-heading h2,
.distributor-support-heading h2 {
  margin: 10px 0 20px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.distributor-about-copy p,
.distributor-catalog-copy p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.distributor-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 54px;
}

.distributor-capability-grid article {
  display: grid;
  align-content: end;
  min-height: 112px;
}

.distributor-capability-grid strong {
  color: var(--navy);
  font-size: clamp(36px, 3.3vw, 54px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.distributor-capability-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.distributor-trust-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 74px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.distributor-trust-rail span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #52646d;
  font-size: 12px;
  font-weight: 600;
}

.distributor-trust-rail i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-size: 9px;
  font-style: normal;
}

.distributor-catalog {
  background: linear-gradient(180deg, #fbfcfb, #f4f7f6);
}

.distributor-catalog-layout {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}

.distributor-catalog-copy {
  position: sticky;
  top: 122px;
}

.distributor-catalog-copy h2 {
  font-size: clamp(38px, 3.2vw, 52px);
}

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

.distributor-platforms article a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.distributor-platforms img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(3,35,55,0.11);
}

.distributor-platforms .capability-status {
  margin-top: 17px;
}

.distributor-platforms .capability-status.project {
  background: var(--navy);
}

.distributor-platforms h3 {
  margin: 13px 0 0;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.distributor-slider-controls {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 3px;
}

.distributor-slider-controls button {
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}

.distributor-slider-controls button:last-child {
  background: var(--navy);
  color: #fff;
}

.distributor-workflow-heading {
  max-width: 900px;
  margin-bottom: 50px;
}

.distributor-workflow-intro {
  max-width: 860px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.distributor-workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: stretch;
  gap: 70px;
}

.distributor-workflow-visual {
  position: relative;
  min-height: 820px;
}

.distributor-workflow-visual img {
  width: 100%;
  height: 100%;
  min-height: 820px;
  object-fit: cover;
  border-radius: 28px;
}

.distributor-workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.distributor-workflow-steps li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.distributor-workflow-steps i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.distributor-workflow-steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
}

.distributor-workflow-steps p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.distributor-support-values {
  background: #fff;
}

.distributor-support-heading {
  margin-bottom: 44px;
}

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

.distributor-support-grid article {
  min-height: 340px;
  padding: 30px;
  border: 1px solid rgba(6,47,74,0.06);
  border-radius: 24px;
  background: #f1f4f4;
}

.distributor-support-grid article > span {
  color: #87bbb9;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.7;
}

.distributor-support-grid p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.distributor-support-grid strong {
  display: block;
  margin-top: 28px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

@media (min-width: 1081px) {
  .distributor-catalog-copy h2 {
    font-size: 36px;
    white-space: nowrap;
  }

  .distributor-workflow-heading h2 {
    white-space: nowrap;
  }
}

.distributor-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
  min-height: 720px;
  background: var(--deep-navy);
  color: #fff;
}

.distributor-final-image,
.distributor-final-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
}

.distributor-final-image {
  position: relative;
  overflow: hidden;
}

.distributor-final-image img {
  object-fit: cover;
}

.distributor-final-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(3,35,55,0.75));
}

.distributor-inquiry-panel {
  display: grid;
  align-content: center;
  padding: 70px clamp(40px, 6vw, 100px);
}

.distributor-inquiry-panel .kicker {
  color: #8fd5d0;
}

.distributor-inquiry-panel h2 {
  max-width: 600px;
  margin: 12px 0 16px;
  font-family: var(--sans);
  font-size: clamp(44px, 4.3vw, 66px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.distributor-inquiry-panel > p {
  max-width: 587px;
  margin: 0 0 26px;
  color: rgba(255,255,255,0.65);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

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

.distributor-inquiry-form label {
  display: grid;
  gap: 5px;
}

.distributor-inquiry-form label.wide {
  grid-column: 1 / -1;
}

.distributor-inquiry-form label > span {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
}

.distributor-inquiry-form input,
.distributor-inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  resize: vertical;
}

.distributor-inquiry-form input {
  min-height: 42px;
}

.distributor-inquiry-form textarea {
  min-height: 66px;
}

.distributor-inquiry-form input:focus,
.distributor-inquiry-form textarea:focus {
  border-bottom-color: #8fd5d0;
}

.distributor-inquiry-form button {
  grid-column: 1 / -1;
  min-height: 50px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.distributor-inquiry-panel small {
  margin-top: 12px;
  color: rgba(255,255,255,0.42);
  font-size: 9px;
}

@media (max-width: 1080px) {

  .page-hero-layout {
    grid-template-columns: 1fr 0.7fr;
    gap: 35px;
  }

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

  .solutions-page .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solutions-page .page-hero,
  .solutions-page .page-hero-layout {
    min-height: 920px;
  }

  .solution-hero-pills {
    position: static;
    grid-column: 1 / -1;
    right: auto;
    width: 100%;
  }

  .news-lead-layout {
    grid-template-columns: 1.55fr 1fr;
  }

  .article-media-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    gap: 34px;
  }

  .article-body-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 54px;
  }

  .download-item {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .download-button {
    grid-column: 2;
    justify-self: start;
  }

  .faq-library-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-category-nav {
    top: 82px;
  }

  .faq-answer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-reference-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-reference-grid a:nth-child(3) {
    border-right: 0;
  }

  .faq-reference-grid a:nth-child(n+4) {
    border-top: 1px solid rgba(255,255,255,0.16);
  }

  .distributor-page .page-hero,
  .distributor-page .page-hero-layout {
    min-height: 980px;
  }

  .distributor-page .page-hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 36px;
  }

  .distributor-hero-proof {
    max-width: 760px;
  }

  .distributor-section-head {
    grid-template-columns: 44px 1fr;
    align-items: start;
  }

  .distributor-section-head > p {
    grid-column: 2;
    max-width: 720px;
  }

  .backend-layout,
  .documentation-layout {
    grid-template-columns: 1fr;
  }

  .backend-image,
  .backend-image img {
    min-height: 480px;
  }

  .market-grid,
  .delivery-step-grid,
  .partner-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-step-grid article:nth-child(2n) {
    border-right: 0;
  }

  .delivery-step-grid article:nth-child(n+5) {
    border-bottom: 1px solid var(--line);
  }

  .delivery-step-grid article:nth-child(n+7) {
    border-bottom: 0;
  }

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

@media (max-width: 860px) {
  .wrap {
    width: min(100% - 32px, 720px);
  }

  .section {
    padding-block: 80px;
  }

  .page-hero,
  .page-hero-layout {
    min-height: 820px;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 32px;
    padding-bottom: 45px;
  }

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

  .hero-glass-summary {
    max-width: 560px;
  }

  .solutions-page .page-hero,
  .solutions-page .page-hero-layout {
    min-height: 1120px;
  }

  .solutions-page .page-hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    padding-block: 130px 54px;
  }

  .solution-hero-pills {
    position: static;
    width: 100%;
    max-width: 680px;
  }

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

  .scenario-card {
    min-height: 520px;
  }

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

  .equipment-line-page #equipment-categories {
    padding-top: 42px;
  }

  .equipment-line-page #equipment-categories > .section-head {
    gap: 28px;
    margin-bottom: 42px;
  }

  .equipment-line-page .equipment-intro-copy {
    max-width: 760px;
  }

  .card-grid,
  .card-grid.four,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .resource-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .news-lead-layout {
    grid-template-columns: 1fr;
  }

  .latest-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
  }

  .latest-posts > h2 {
    grid-column: 1 / -1;
  }

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

  .news-card:last-child {
    grid-column: 1 / -1;
  }

  .article-detail-page main {
    padding-top: 74px;
  }

  .article-detail {
    padding-top: 64px;
  }

  .article-media-layout,
  .article-body-layout {
    grid-template-columns: 1fr;
  }

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

  .article-meta > div {
    padding: 0 18px 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .article-meta > div:last-child {
    border-right: 0;
  }

  .article-body-layout {
    gap: 56px;
    padding-top: 62px;
  }

  .article-side-note {
    position: static;
    max-width: 620px;
  }

  .download-layout {
    grid-template-columns: 1fr;
  }

  .download-sidebar {
    position: static;
  }

  .faq-category-nav {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .faq-content-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-library > .wrap > .faq-library-head h2 {
    white-space: normal;
  }

  .faq-search {
    grid-template-columns: 1fr;
    align-items: start;
    border-radius: 26px;
  }

  .faq-search p {
    position: static;
    grid-column: 1 / -1;
    margin: 0 12px 4px;
    text-align: right;
  }

  .faq-group {
    scroll-margin-top: 100px;
  }

  .faq-entry summary {
    grid-template-columns: 36px minmax(0, 1fr) 38px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 24px 74px;
  }

  .faq-reference-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-reference-grid a,
  .faq-reference-grid a:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

  .faq-reference-grid a:nth-child(even) {
    border-right: 0;
  }

  .faq-reference-grid a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

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

  .opportunity-grid article {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  }

  .opportunity-grid img {
    height: 100%;
    min-height: 320px;
  }

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

  .partner-fit-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-copy {
    width: 78%;
  }
}

@media (max-width: 560px) {
  .page-hero,
  .page-hero-layout {
    min-height: 790px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .page-hero-copy > p {
    font-size: 14px;
  }

  .solutions-page .page-hero,
  .solutions-page .page-hero-layout {
    min-height: 1240px;
  }

  .solutions-page .page-hero h1 {
    font-size: 44px;
  }

  .solution-hero-pills article {
    grid-template-columns: 36px 1fr;
    min-height: 72px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
  }

  .solution-hero-pills article > span {
    width: 36px;
    height: 36px;
  }

  .solution-hero-pills strong {
    overflow: visible;
    font-size: 13px;
    text-overflow: clip;
    white-space: normal;
  }

  .capability-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .capability-card h3,
  .capability-card p {
    min-height: 0;
  }

  .scenario-card {
    min-height: 610px;
  }

  .scenario-title,
  .scenario-details {
    padding: 24px;
  }

  .audience-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .card-grid,
  .card-grid.four,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .resource-index-page main {
    padding-top: 0;
  }

  .news-index-page #news-library {
    margin-top: 0;
    margin-bottom: 0;
  }

  .resource-title-row h1 {
    font-size: 48px;
  }

  .featured-news,
  .featured-news > img {
    min-height: 440px;
  }

  .latest-posts,
  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-card:last-child {
    grid-column: auto;
  }

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

  .article-masthead h1 {
    font-size: 44px;
  }

  .article-masthead > p {
    font-size: 14px;
  }

  .article-featured-image,
  .article-featured-image img {
    min-height: 360px;
  }

  .article-meta {
    grid-template-columns: 1fr;
  }

  .article-meta > div {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-body p,
  .article-body li {
    font-size: 15px;
  }

  .article-body .article-lead {
    font-size: 20px;
  }

  .article-body h2 {
    margin-top: 48px;
    font-size: 29px;
  }

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

  .article-related {
    margin-top: 72px;
  }

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

  .document-cover {
    height: 220px;
  }

  .download-button {
    grid-column: auto;
    justify-self: stretch;
  }

  .faq-library-head h2 {
    font-size: 42px;
  }

  .faq-search {
    padding: 8px;
  }

  .faq-search input {
    font-size: 18px;
  }

  .faq-search label {
    min-height: 52px;
    padding: 0 14px;
  }

  .faq-group {
    margin-bottom: 68px;
  }

  .faq-group > header {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .faq-group > header > span {
    width: 42px;
    height: 42px;
  }

  .faq-group > header h2 {
    font-size: 34px;
  }

  .faq-entry {
    border-radius: 19px;
  }

  .faq-entry summary {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
    min-height: 0;
    padding: 19px;
  }

  .faq-index {
    display: none;
  }

  .faq-entry summary strong {
    font-size: 20px;
  }

  .faq-entry summary small {
    font-size: 11px;
  }

  .faq-answer {
    grid-template-columns: 1fr;
    padding: 0 19px 20px;
  }

  .faq-answer-copy p,
  .faq-answer-copy li {
    font-size: 13px;
  }

  .faq-reference-grid {
    grid-template-columns: 1fr;
  }

  .faq-reference-grid a,
  .faq-reference-grid a:nth-child(3),
  .faq-reference-grid a:nth-child(even),
  .faq-reference-grid a:last-child {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }

  .faq-reference-grid a:last-child {
    border-bottom: 0;
  }

  .contact-page .contact-form {
    padding: 26px;
  }

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

  .distributor-page .page-hero,
  .distributor-page .page-hero-layout {
    min-height: 1180px;
  }

  .distributor-page .page-hero h1 {
    font-size: 45px;
  }

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

  .distributor-hero-proof article {
    min-height: 108px;
  }

  .distributor-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .distributor-section-head > p {
    grid-column: auto;
  }

  .backend-image,
  .backend-image img,
  .documentation-image,
  .documentation-image img {
    min-height: 390px;
  }

  .opportunity-grid article {
    grid-template-columns: 1fr;
  }

  .opportunity-grid img {
    min-height: 230px;
  }

  .market-grid,
  .delivery-step-grid,
  .documentation-grid,
  .partner-support-grid {
    grid-template-columns: 1fr;
  }

  .delivery-step-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-step-grid article:nth-child(n+7) {
    border-bottom: 1px solid var(--line);
  }

  .delivery-step-grid article:last-child {
    border-bottom: 0;
  }

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

  .comparison-row > strong {
    padding-top: 0;
    border-left: 0;
  }

  .comparison-head > span + span {
    padding-top: 0;
    border-left: 0;
  }

  .partner-fit-cta .button {
    width: 100%;
  }

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

  .split-image img {
    min-height: 380px;
  }

  .cta-banner {
    min-height: 520px;
    margin-bottom: 80px;
  }

  .cta-overlay {
    background: linear-gradient(0deg, rgba(3,35,55,0.96), rgba(3,35,55,0.45));
  }

  .cta-copy {
    width: 100%;
    min-height: 520px;
    justify-content: flex-end;
    padding: 30px;
  }
}

@media (max-width: 1080px) {
  .distributor-editorial-page .page-hero,
  .distributor-editorial-page .page-hero-layout {
    min-height: 650px;
  }

  .distributor-editorial-page .page-hero-layout {
    grid-template-columns: 1fr;
  }

  .distributor-about-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .distributor-catalog-copy {
    position: static;
    max-width: 660px;
  }

  .distributor-platforms img {
    height: 310px;
  }

  .distributor-workflow-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 48px;
  }

  .distributor-final-cta {
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  }
}

@media (max-width: 860px) {
  .distributor-editorial-page .page-hero {
    width: min(100% - 24px, 1460px);
    margin-top: 12px;
    border-radius: 24px;
  }

  .distributor-editorial-page .page-hero,
  .distributor-editorial-page .page-hero-layout {
    min-height: 680px;
  }

  .distributor-editorial-page .page-hero h1 {
    font-size: clamp(48px, 9vw, 70px);
  }

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

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

  .distributor-platforms article:last-of-type {
    grid-column: 1 / -1;
  }

  .distributor-platforms article:last-of-type img {
    height: 360px;
  }

  .distributor-workflow-layout,
  .distributor-final-cta {
    grid-template-columns: 1fr;
  }

  .distributor-workflow-visual,
  .distributor-workflow-visual img {
    min-height: 520px;
  }

  .distributor-support-grid {
    grid-template-columns: 1fr;
  }

  .distributor-support-grid article {
    min-height: 220px;
  }

  .distributor-final-image,
  .distributor-final-image img {
    min-height: 460px;
  }

  .distributor-final-image::after {
    background: linear-gradient(0deg, rgba(3,35,55,0.72), transparent 55%);
  }
}

@media (max-width: 560px) {
  .distributor-editorial-page .page-hero,
  .distributor-editorial-page .page-hero-layout {
    min-height: 620px;
  }

  .distributor-editorial-page .page-hero-layout {
    padding: 64px 0 44px;
  }

  .distributor-editorial-page .page-hero h1 {
    font-size: 46px;
  }

  .distributor-editorial-page .page-hero-copy > p {
    font-size: 14px;
  }

  .distributor-about-copy h2,
  .distributor-catalog-copy h2,
  .distributor-workflow-heading h2,
  .distributor-support-heading h2,
  .distributor-inquiry-panel h2 {
    font-size: 40px;
  }

  .distributor-capability-grid {
    gap: 28px 20px;
  }

  .distributor-capability-grid strong {
    font-size: 32px;
  }

  .distributor-trust-rail {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .distributor-platforms {
    grid-template-columns: 1fr;
  }

  .distributor-platforms article:last-of-type {
    grid-column: auto;
  }

  .distributor-platforms img,
  .distributor-platforms article:last-of-type img {
    height: 360px;
  }

  .distributor-workflow-visual,
  .distributor-workflow-visual img {
    min-height: 420px;
  }

  .distributor-workflow-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .distributor-workflow-steps i {
    width: 40px;
    height: 40px;
  }

  .distributor-final-image,
  .distributor-final-image img {
    min-height: 340px;
  }

  .distributor-inquiry-panel {
    padding: 50px 24px 60px;
  }

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

  .distributor-inquiry-form label.wide,
  .distributor-inquiry-form button {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  .service-faq-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .service-faq-answer ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-faq-hero {
    padding: 62px 0 32px;
  }

  .service-faq-title {
    min-height: 165px;
  }

  .service-faq-title > span {
    font-size: 76px;
  }

  .service-faq-title h1 {
    font-size: 48px;
  }

  .service-faq-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .service-faq-contact {
    position: static;
    order: -1;
  }

  .rental-service-hero {
    padding-top: 88px;
  }

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

  .service-question-mark {
    width: 145px;
    height: 130px;
    font-size: 105px;
  }
}

@media (max-width: 560px) {
  .service-faq-title h1 {
    font-size: 40px;
  }

  .service-faq-title p {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.55;
  }

  .service-faq-list summary {
    min-height: 70px;
    padding: 16px 16px 16px 20px;
  }

  .service-faq-list summary span {
    font-size: 18px;
  }

  .service-faq-answer {
    padding: 22px 20px 28px;
  }

  .service-faq-contact h2 {
    font-size: 36px;
  }

  .service-faq-contact .button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .rental-service-hero {
    padding: 72px 0 38px;
  }

  .rental-service-title h1 {
    font-size: 42px;
  }

  .rental-service-title p {
    font-size: 13px;
  }

  .rental-service-list details {
    border-radius: 26px;
  }

  .rental-service-list summary {
    grid-template-columns: minmax(0, 1fr) 42px;
    min-height: 76px;
    padding: 13px 14px 13px 24px;
  }

  .rental-service-list summary span {
    font-size: 18px;
  }

  .rental-service-list summary i {
    width: 40px;
    height: 40px;
  }

  .rental-service-answer {
    padding: 20px 24px 28px;
  }

  .rental-service-answer p {
    font-size: 14px;
  }

  .rental-service-footer .button {
    width: 100%;
    text-align: center;
  }
}
/* =========================================================
   About Us — light editorial layout
   ========================================================= */
.about-light-page {
  --about-ink: #102f3c;
  --about-muted: #62727a;
  --about-teal: #0c8f8a;
  --about-mint: #dff2ed;
  --about-warm: #f7f5ef;
  background: #fbfcfa;
  color: var(--about-ink);
}

.about-light-page main {
  overflow: hidden;
}

.about-light-page .about-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid rgba(12, 143, 138, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #16736f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18aaa3;
  box-shadow: 0 0 0 5px rgba(24, 170, 163, 0.1);
}

.about-hero {
  position: relative;
  min-height: 830px;
  margin-bottom: 0;
  padding: 190px 0 54px;
  background:
    linear-gradient(90deg, rgba(8, 35, 52, 0.9) 0%, rgba(8, 35, 52, 0.73) 54%, rgba(8, 35, 52, 0.48) 100%),
    url("/assets/about-preview/factory-campus-hero.webp") center / cover no-repeat;
}

.about-hero::after {
  content: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 1160px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.15vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.about-hero-copy h1 em {
  display: inline;
  margin-left: 0.12em;
  color: #ffffff;
  font-style: normal;
}

.about-hero-copy .about-lead {
  width: min(100%, 707px);
  max-width: 707px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.55;
}

.about-video-placeholder {
  display: flex;
  width: 565px;
  min-height: 408px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  background: rgba(7, 30, 45, 0.48);
  box-shadow: 0 28px 65px rgba(3, 22, 34, 0.24);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(7px);
  transform: translate(60px, 34px);
}

.about-video-play {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  padding-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  place-items: center;
  background: rgba(12, 143, 138, 0.82);
  font-size: 25px;
}

.about-video-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.about-video-placeholder small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.about-video-embed {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #062f4a;
  backdrop-filter: none;
}

.about-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.about-visual {
  position: relative;
  min-height: 535px;
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #63e2db, #128f92);
  box-shadow: 0 20px 45px rgba(10, 132, 132, 0.22);
}

.about-visual::before {
  top: -10px;
  right: 48px;
  width: 76px;
  height: 76px;
}

.about-visual::after {
  right: -4px;
  bottom: 62px;
  width: 36px;
  height: 36px;
}

.about-image-layer {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 27px;
  background: #dfe8e5;
  box-shadow: 0 28px 70px rgba(25, 61, 70, 0.18);
}

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

.about-image-layer--back {
  top: 64px;
  left: 66px;
  width: 76%;
  height: 300px;
  transform: rotate(6deg);
  opacity: 0.52;
}

.about-image-layer--main {
  top: 112px;
  left: 12px;
  z-index: 2;
  width: 82%;
  height: 338px;
  transform: rotate(-4deg);
}

.about-image-layer--front {
  right: 0;
  bottom: 8px;
  z-index: 3;
  width: 45%;
  height: 222px;
  transform: rotate(4deg);
  border-width: 6px;
}

.about-image-layer--front img {
  object-position: center 36%;
}

.about-visual-label {
  position: absolute;
  left: 38px;
  bottom: 29px;
  z-index: 4;
  max-width: 240px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 40px rgba(26, 61, 70, 0.13);
  color: #153b46;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}

.about-visual-label span,
.about-visual-label strong {
  display: block;
}

.about-visual-label span {
  margin-bottom: 5px;
  color: #16827d;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 118px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 67, 77, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 55px rgba(19, 55, 64, 0.15);
  backdrop-filter: blur(12px);
  transform: translateY(92px);
}

.about-proof-item {
  display: flex;
  min-height: 175px;
  padding: 28px 34px;
  border-left: 1px solid rgba(20, 71, 80, 0.12);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-proof-item:first-child {
  border-left: 0;
}

.about-proof-item:last-child {
  padding-right: 0;
}

.about-proof-item strong {
  display: block;
  width: 100%;
  margin-bottom: 0;
  color: #123845;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-weight: 500;
  white-space: nowrap;
}

.about-proof-item span {
  width: min(100%, 360px);
  color: #718087;
  font-size: clamp(17px, 1.18vw, 19px);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.about-proof-item:nth-child(3) span {
  width: min(100%, 320px);
  font-size: clamp(18px, 1.25vw, 20px);
}

.about-business,
.about-service,
.about-evidence {
  padding: 122px 0;
}

.about-business {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url("/assets/phase-4a/about-factory-workshop.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.about-business .about-shell,
.about-business > .wrap {
  position: relative;
  z-index: 1;
}

.about-business .about-section-copy {
  transform: translateX(-30px);
}

.about-business .about-section-copy h2 {
  width: 543px;
  max-width: none;
}

.about-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  gap: 92px;
  align-items: start;
}

.about-section-copy {
  position: sticky;
  top: 130px;
}

.about-section-copy h2,
.about-service-copy h2,
.about-evidence-head h2 {
  margin: 0;
  color: #123440;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.1vw, 60px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.about-section-copy p,
.about-service-copy > p,
.about-evidence-head p {
  margin: 26px 0 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.85;
}

.about-business .about-section-copy p {
  width: min(100%, 499px);
  padding: 25px 27px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 38px rgba(24, 65, 73, 0.1);
  color: #315962;
  font-size: 19px;
  line-height: 1.75;
  backdrop-filter: blur(10px);
}

.about-capabilities {
  display: grid;
  gap: 12px;
  padding-top: 91px;
}

.about-capability {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(23, 72, 81, 0.1);
  border-radius: 23px;
  background: rgba(247, 250, 248, 0.72);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-capability:nth-child(2) {
  background: rgba(247, 250, 248, 0.72);
  box-shadow: none;
}

.about-capability:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(28, 74, 82, 0.1);
}

.about-capability-index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--about-mint);
  color: #087f7a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.about-capability h3 {
  margin: 1px 0 8px;
  color: #183d48;
  font-size: 18px;
  font-weight: 600;
}

.about-capability p {
  margin: 0;
  color: #0b8087;
  font-size: 14px;
  line-height: 1.7;
}

.about-service {
  background:
    radial-gradient(circle at 12% 80%, rgba(59, 173, 162, 0.12), transparent 24%),
    var(--about-warm);
}

.about-service-grid {
  display: grid;
  grid-template-columns: minmax(590px, 1.08fr) minmax(0, 0.92fr);
  gap: 64px;
  align-items: center;
}

.about-service-copy h2 {
  font-size: clamp(42px, 3vw, 54px);
  white-space: nowrap;
}

.about-service-copy > p {
  width: min(802px, calc(100vw - 760px));
  max-width: none;
  font-size: 18px;
}

.about-collage {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 0.72;
}

.about-collage-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.about-collage-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}

.about-collage-image--large {
  top: 0;
  left: 0;
  z-index: 1;
  width: 96%;
}

.about-collage-image--small {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: auto;
  border: 0;
}

.about-collage-note {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 3;
  width: 205px;
  padding: 21px 22px;
  border-radius: 21px;
  background: #113b47;
  box-shadow: 0 24px 52px rgba(17, 59, 71, 0.24);
  color: #ffffff;
}

.about-collage-note strong {
  display: block;
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.about-collage-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.about-client-groups {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  margin-top: 34px;
}

.about-client-groups span {
  padding: 11px 15px;
  border: 1px solid rgba(17, 91, 91, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #315962;
  font-size: 18px;
  font-weight: 600;
}

.about-evidence {
  background: #edf7f4;
}

.about-evidence-head {
  display: block;
  margin-bottom: 66px;
  text-align: center;
}

.about-evidence-head > div {
  max-width: 860px;
  margin-inline: auto;
}

.about-engineering-copy {
  margin-top: 34px !important;
  font-family: Arial, sans-serif;
}

.about-engineering-copy h3 {
  margin: 0 0 14px;
  color: #174852;
  font: 600 19px/1.4 Arial, sans-serif;
}

.about-engineering-copy p {
  margin: 0 auto 10px;
  color: #526c73;
  font: 400 20px/1.7 Arial, sans-serif;
}

.about-evidence-head p {
  margin: 0;
}

.about-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(1240px, calc(100vw - 48px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.about-evidence-photo {
  width: 100%;
  max-width: none;
}

.about-evidence-card {
  overflow: hidden;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(27, 74, 80, 0.1);
}

.about-evidence-photo {
  position: relative;
  min-height: 360px;
}

.about-evidence-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-evidence-photo::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(transparent, rgba(7, 34, 43, 0.72));
}

.about-evidence-caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  color: #ffffff;
}

.about-evidence-caption strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.about-evidence-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.55;
}

.about-documents {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 22px 0 0;
  overflow: visible;
  width: min(1320px, calc(100vw - 56px));
  justify-self: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-certificates-title {
  grid-column: 1 / -1;
  display: flex;
  position: relative;
  min-height: 54px;
  margin: -31px 0 30px;
  color: #123440;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-certificates-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: rgba(75, 91, 98, 0.42);
  transform: translateX(-50%);
}

.about-certificates-kicker {
  grid-column: 1 / -1;
  margin: 66px 0 31px;
  color: #0b8087;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.about-document {
  display: flex;
  overflow: hidden;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  flex-direction: column;
  text-align: center;
}

.about-document img {
  order: 3;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.about-document span {
  order: 1;
  display: block;
  padding: 0 0 3px;
  color: #16827d;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.about-document strong {
  order: 2;
  display: block;
  padding: 0 0 14px;
  color: #244b54;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  white-space: nowrap;
}

.about-global-note {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-top: 24px;
  padding: 29px 32px;
  border: 1px solid rgba(14, 118, 114, 0.13);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.7);
}

.about-global-note strong {
  color: #0e7772;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-global-note p {
  margin: 0;
  color: #526c73;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .about-hero {
    min-height: auto;
    padding-top: 148px;
  }

  .about-hero-grid,
  .about-section-grid,
  .about-service-grid,
  .about-evidence-head {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-video-placeholder {
    width: min(640px, 100%);
    transform: none;
  }

  .about-business .about-section-copy {
    transform: none;
  }

  .about-business .about-section-copy h2 {
    width: auto;
    max-width: 680px;
  }

  .about-service-copy > p {
    width: auto;
    max-width: 680px;
  }

  .about-hero {
    background-position: 62% center;
  }

  .about-visual {
    width: min(650px, 100%);
    min-height: 500px;
    margin: 0 auto;
  }

  .about-section-copy {
    position: static;
    max-width: 680px;
  }

  .about-service-grid {
    gap: 70px;
  }

  .about-service-copy {
    max-width: 680px;
  }

  .about-capabilities {
    padding-top: 0;
  }

  .about-service-copy h2 {
    white-space: normal;
  }

  .about-evidence-head {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .about-light-page .about-shell {
    width: min(100% - 32px, 1180px);
  }

  .about-hero {
    min-height: auto;
    margin-bottom: 0;
    padding: 126px 0 60px;
    background:
      linear-gradient(rgba(8, 35, 52, 0.82), rgba(8, 35, 52, 0.76)),
      url("/assets/about-preview/campus.webp") 62% center / cover no-repeat;
  }

  .about-hero-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .about-hero-copy h1 em {
    white-space: normal;
  }

  .about-hero-copy .about-lead {
    font-size: 21px;
    line-height: 1.6;
  }

  .about-video-placeholder {
    min-height: 230px;
    padding: 24px;
  }

  .about-visual {
    min-height: 385px;
  }

  .about-image-layer {
    border-radius: 20px;
    border-width: 5px;
  }

  .about-image-layer--back {
    top: 40px;
    left: 14%;
    width: 78%;
    height: 220px;
  }

  .about-image-layer--main {
    top: 75px;
    left: 0;
    width: 84%;
    height: 250px;
  }

  .about-image-layer--front {
    width: 46%;
    height: 155px;
  }

  .about-visual-label {
    left: 17px;
    bottom: 12px;
    max-width: 195px;
    padding: 12px 14px;
    font-size: 11px;
  }

  .about-visual::before {
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .about-proof-strip {
    grid-template-columns: 1fr;
    margin-top: 45px;
    padding-top: 15px;
    transform: none;
  }

  .about-proof-item,
  .about-proof-item:first-child,
  .about-proof-item:last-child {
    min-height: auto;
    padding: 21px 0;
    border: 0;
    border-bottom: 1px solid rgba(20, 71, 80, 0.12);
  }

  .about-proof-item strong {
    font-size: 33px;
  }

  .about-proof-item:last-child {
    border-bottom: 0;
  }

  .about-business,
  .about-service,
  .about-evidence {
    padding: 82px 0;
  }

  .about-section-copy h2,
  .about-service-copy h2,
  .about-evidence-head h2 {
    font-size: 41px;
  }

  .about-capability {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 21px 19px;
  }

  .about-capability-index {
    width: 40px;
    height: 40px;
  }

  .about-collage {
    aspect-ratio: auto;
    min-height: 530px;
  }

  .about-collage-image--large {
    top: 0;
    left: 0;
    width: 92%;
  }

  .about-collage-image--small {
    right: 0;
    bottom: 0;
    width: 46%;
    height: auto;
  }

  .about-collage-note {
    right: 0;
    width: 165px;
    padding: 16px;
  }

  .about-evidence-grid {
    grid-template-columns: 1fr;
    width: min(100% - 4px, 1460px);
  }

  .about-evidence-photo {
    min-height: 310px;
  }

  .about-documents {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .about-document img {
    height: 210px;
  }

  .about-document strong {
    font-size: 24px;
  }

  .about-client-groups span {
    font-size: 17px;
  }

  .about-global-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }
}

/* =========================================================
   About Us — alignment with the shared inner-page system
   ========================================================= */
.about-light-page .about-hero {
  min-height: 660px;
  margin: 8px 0 58px;
  padding: 56px 0 0;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(3, 35, 55, 0.92), rgba(3, 35, 55, 0.7) 48%, rgba(3, 35, 55, 0.3)),
    linear-gradient(0deg, rgba(3, 35, 55, 0.42), transparent 56%),
    url("/assets/about-preview/factory-campus-hero.webp") center / cover no-repeat;
  color: #fff;
}

.about-light-page .about-story-kicker {
  display: block;
  margin: 0 0 18px;
  color: #9ce3d9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-light-page .about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 660px;
  padding: 150px 0 112px;
  gap: 70px;
  align-items: end;
}

.about-light-page .about-hero-copy h1 {
  max-width: 830px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.about-light-page .about-hero-copy {
  margin-bottom: 120px;
}

.about-light-page .about-hero-copy h1 em {
  margin-left: 0.08em;
  color: #fff;
}

.about-light-page .about-hero-copy .about-lead {
  width: auto;
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.72;
}

.about-light-page .about-video-placeholder {
  width: auto;
  min-height: 285px;
  margin-bottom: 95px;
  padding: 31px 27px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(2, 27, 43, 0.25);
  transform: none;
  backdrop-filter: blur(22px) saturate(130%);
}

.about-light-page .about-video-play {
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  font-size: 20px;
}

.about-light-page .about-video-placeholder strong {
  font-size: 28px;
  line-height: 1.12;
}

.about-light-page .about-video-placeholder small {
  margin-top: 12px;
  font-size: 12px;
}

.about-light-page .about-proof-strip {
  position: absolute;
  right: 0;
  bottom: -72px;
  left: 0;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  transform: none;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(19, 55, 64, 0.14);
}

.about-light-page .about-proof-item {
  min-height: 144px;
  padding: 25px 30px;
}

.about-light-page .about-proof-item:last-child {
  padding-right: 30px;
}

.about-light-page .about-proof-item strong {
  margin-bottom: 8px;
  color: #062f4a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.5vw, 40px);
  font-weight: 500;
}

.about-light-page .about-proof-item span,
.about-light-page .about-proof-item:nth-child(3) span {
  width: auto;
  max-width: 310px;
  color: #687881;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.about-light-page .about-business,
.about-light-page .about-service,
.about-light-page .about-evidence {
  padding: 112px 0;
}

.about-light-page .about-business {
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    url("/assets/phase-4a/about-factory-workshop.webp") center / cover no-repeat;
  background-attachment: scroll;
}

.about-light-page .about-section-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 86px;
  align-items: center;
}

.about-light-page .about-business .about-section-copy {
  position: static;
  transform: none;
}

.about-light-page .about-business .about-section-copy h2 {
  width: auto;
  max-width: 560px;
}

.about-light-page .about-section-copy h2,
.about-light-page .about-service-copy h2,
.about-light-page .about-evidence-head h2 {
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.06;
}

.about-light-page .about-business .about-section-copy p {
  width: auto;
  max-width: 540px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.68);
  color: #315962;
  font-size: 16px;
  line-height: 1.78;
}

.about-light-page .about-capabilities {
  gap: 12px;
  padding-top: 0;
}

.about-light-page .about-capability,
.about-light-page .about-capability:nth-child(2) {
  padding: 24px 26px;
  border: 1px solid rgba(23, 72, 81, 0.11);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.about-light-page .about-capability p {
  color: #527078;
}

.about-light-page .about-service {
  background: #f7f5ef;
}

.about-light-page .about-service-grid {
  grid-template-columns: minmax(500px, 1fr) minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}

.about-light-page .about-collage {
  min-height: 0;
  aspect-ratio: 0.88;
}

.about-light-page .about-collage-image--large {
  width: 82%;
}

.about-light-page .about-collage-image--small {
  width: 42%;
}

.about-light-page .about-service-copy h2 {
  max-width: 700px;
  font-size: clamp(42px, 3.5vw, 56px);
  white-space: normal;
}

.about-light-page .about-service-copy > p {
  width: auto;
  max-width: 680px;
  color: #62727a;
  font-size: 16px;
  line-height: 1.8;
}

.about-light-page .about-client-groups {
  display: flex;
  margin-top: 30px;
  gap: 9px;
  flex-direction: column;
  align-items: flex-start;
}

.about-light-page .about-client-groups span {
  padding: 10px 14px;
  font-size: 14px;
}

.about-light-page .about-evidence {
  background: #edf7f4;
}

.about-light-page .about-evidence-head {
  max-width: 980px;
  margin: 0 auto 62px;
}

.about-light-page .about-engineering-copy {
  max-width: 900px;
  margin-top: 28px !important;
}

.about-light-page .about-engineering-copy p {
  color: #526c73;
  font-size: 15px;
  line-height: 1.75;
}

.about-light-page .about-evidence-grid {
  width: min(1180px, calc(100vw - 48px));
  gap: 18px;
}

.about-light-page .about-evidence-photo {
  min-height: 340px;
}

.about-light-page .about-documents {
  width: min(1180px, calc(100vw - 48px));
  gap: 18px;
  padding-top: 14px;
}

.about-light-page .about-certificates-kicker {
  margin: 58px 0 12px;
  font-size: 11px;
}

.about-light-page .about-certificates-title {
  min-height: auto;
  margin: 0 0 38px;
  font-size: clamp(38px, 3.2vw, 50px);
}

.about-light-page .about-document span {
  font-size: 11px;
}

.about-light-page .about-document strong {
  padding-bottom: 13px;
  font-size: clamp(22px, 2vw, 28px);
}

@media (max-width: 980px) {
  .about-light-page .about-hero {
    min-height: auto;
    margin: 0;
    padding: 0;
  }

  .about-light-page .about-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 138px 0 58px;
    gap: 38px;
    align-items: start;
  }

  .about-light-page .about-hero-copy {
    margin-bottom: 0;
  }

  .about-light-page .about-video-placeholder {
    width: min(620px, 100%);
    min-height: 0;
    margin-bottom: 0;
  }

  .about-light-page .about-proof-strip {
    position: relative;
    bottom: auto;
    width: min(100% - 48px, 1180px);
    margin-top: 0;
    transform: translateY(46px);
  }

  .about-light-page .about-business {
    padding-top: 120px;
  }

  .about-light-page .about-section-grid,
  .about-light-page .about-service-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-light-page .about-collage {
    width: min(660px, 100%);
  }
}

@media (max-width: 720px) {
  .about-light-page .about-hero-grid {
    padding: 124px 0 48px;
  }

  .about-light-page .about-hero-copy h1 {
    font-size: 48px;
  }

  .about-light-page .about-hero-copy .about-lead {
    font-size: 16px;
  }

  .about-light-page .about-video-placeholder {
    min-height: 220px;
  }

  .about-light-page .about-proof-strip {
    grid-template-columns: 1fr;
    overflow: hidden;
    transform: translateY(38px);
  }

  .about-light-page .about-proof-item {
    min-height: auto;
    padding: 22px 20px;
    border-left: 0;
    border-bottom: 1px solid rgba(20, 71, 80, 0.12);
  }

  .about-light-page .about-proof-item:last-child {
    padding-right: 20px;
    border-bottom: 0;
  }

  .about-light-page .about-business,
  .about-light-page .about-service,
  .about-light-page .about-evidence {
    padding: 82px 0;
  }

  .about-light-page .about-business {
    padding-top: 112px;
  }

  .about-light-page .about-collage {
    min-height: 470px;
    aspect-ratio: auto;
  }

  .about-light-page .about-evidence-grid,
  .about-light-page .about-documents {
    width: 100%;
  }

  .about-light-page .about-document strong {
    white-space: normal;
  }
}
.catalogue-browser-section{padding:64px 0 88px;background:#fff}
.catalogue-browser-layout{display:grid;grid-template-columns:230px minmax(0,1fr);gap:34px;align-items:start}
.catalogue-sidebar{position:sticky;top:104px;width:285px;margin:0 0 -6px -48px;border:1px solid #d7dfdc;border-radius:14px;padding:19px 21px;background:#fff}
.catalogue-sidebar label,.catalogue-sidebar h2{display:block;margin:0 0 12px;color:#0b2e45;font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase}
.catalogue-sidebar input{width:100%;height:44px;margin:0 0 26px;padding:0 12px;border:1px solid #cbd8d4;border-radius:8px;color:#0b2e45;background:#fff;font:inherit}
.catalogue-sidebar input:focus{outline:2px solid #0b8b88;outline-offset:2px}
.catalog-filter{display:flex;width:100%;align-items:center;justify-content:space-between;gap:10px;padding:11px 0;border:0;border-bottom:1px solid #e0e6e4;color:#526976;background:transparent;text-align:left;font:inherit;cursor:pointer}
.catalog-filter span{line-height:1.35}.catalog-filter b{display:grid;min-width:28px;height:28px;place-items:center;border-radius:50%;background:#edf5f3;color:#0b6f70;font-size:.78rem}
.catalog-filter:hover,.catalog-filter.is-active{color:#087f80;font-weight:600}
.catalogue-results-head{display:block;margin-bottom:26px;padding-bottom:24px;border-bottom:1px solid #e1e8e5}
.catalogue-results-head h2{width:100%;margin:.4rem 0 14px;color:#082b43;font-size:clamp(1.35rem,1.85vw,1.95rem);line-height:1.06;white-space:nowrap}
.catalogue-results-head p{max-width:720px;margin:0;color:#647985;line-height:1.7}
.catalogue-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.catalog-product-card{display:flex;min-width:0;flex-direction:column;overflow:hidden;border:1px solid #d7dfdc;border-radius:13px;background:#fff;color:inherit;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.catalog-product-card[hidden]{display:none!important}
.catalog-product-card:hover{transform:translateY(-3px);border-color:#8cb9b5;box-shadow:0 16px 34px rgba(8,43,67,.09)}
.catalog-product-image{display:flex;height:225px;align-items:center;justify-content:center;padding:8px;background:#f7f9f8}
.catalog-product-image img{width:100%;height:100%;object-fit:contain}
.catalog-product-content{display:block;flex:1;padding:20px 18px}.catalog-product-content>span{display:block;color:#087f80;font-size:.72rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}
.catalog-product-content strong{display:block;width:284.24px;max-width:100%;margin-top:8px;color:#0b2e45;font-size:1.04rem;line-height:1.3}
.catalogue-empty{padding:40px 0;color:#647985;text-align:center}
@media (max-width:1100px){.catalogue-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.catalogue-results-head{grid-template-columns:1fr;gap:14px}}
@media (max-width:760px){.catalogue-browser-section{padding:42px 0 64px}.catalogue-browser-layout{grid-template-columns:1fr}.catalogue-sidebar{position:static;width:auto;margin:0;padding:19px 21px}.catalogue-results-head h2{font-size:clamp(1.8rem,8vw,2.4rem);white-space:normal}.catalogue-product-grid{grid-template-columns:1fr}.catalog-product-image{height:230px}}


/* Global footer contact details and social links */
.footer-contact-list {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.footer-contact-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #c4d0d5 !important;
  text-decoration: none;
}

.footer-contact-row > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #8fd5d0;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-row span {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  font-size: 11px;
  line-height: 1.35;
}

.footer-contact-row small {
  display: block;
  margin-bottom: 2px;
  color: #81949e;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-contact a.footer-contact-row:hover,
.footer-contact a.footer-contact-row:focus-visible {
  color: #fff !important;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(4, 38px);
  gap: 9px;
  margin-top: 18px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(196, 208, 213, 0.32);
  border-radius: 10px;
  background: transparent;
  color: #9babb4;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: #8fd5d0;
  background: rgba(143, 213, 208, 0.08);
  color: #8fd5d0;
  transform: translateY(-2px);
  outline: none;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials svg .is-filled {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 720px) {
  .footer-socials {
    grid-template-columns: repeat(4, 38px);
  }
}

:root{--phase4a-heading-font:"Avenir Next",Inter,"Segoe UI",Arial,sans-serif}
h1,h2,h3,h4,h5,h6,.page-title,.section-title,.news-card h2,.news-card h3,.featured-story h2,.featured-article h2,.download-copy h2,.public-case-copy h3,.service-faq summary span,.service-faq-list summary span,.faq-entry summary strong,.accordion summary span,.latest-post strong,.cta-card h2,.service-cta h2{font-family:var(--phase4a-heading-font)!important;letter-spacing:-.018em}h1{line-height:1.04}h2{line-height:1.1}h3,h4{line-height:1.2}h1,h2,h3{text-wrap:balance}p,li{text-wrap:pretty}html,body{max-width:100%;overflow-x:clip}img,iframe,video{max-width:100%}.download-button[aria-disabled="true"]{cursor:not-allowed;opacity:.62}@media(max-width:768px){.wrap{width:min(100% - 32px,1240px)}h1{overflow-wrap:anywhere}}@media(max-width:390px){.wrap{width:min(100% - 24px,1240px)}.button,.download-button{max-width:100%;white-space:normal}.contact-page input,.contact-page select,.contact-page textarea,.contact-page iframe{min-width:0;width:100%}.contact-page .contact-layout,.contact-page .contact-method-grid,.contact-page .form-grid{min-width:0}.contact-page .contact-method-grid{grid-template-columns:1fr}.contact-page .contact-method-grid>*{min-width:0}}


/* Phase 4B approved page-specific typography refinements — 2026-08-13 */
.contact-page .page-hero h1,
.public-cases-page .page-hero h1 {
  color: #ffffff;
}

.distributor-editorial-page .page-hero h1 {
  color: #ffffff;
  font-weight: 600;
}

.distributor-about-copy h2,
.distributor-catalog-copy h2,
.distributor-workflow-heading h2,
.distributor-support-heading h2,
.distributor-platforms h3,
.distributor-workflow-steps h3,
.distributor-inquiry-panel h2 {
  font-weight: 600;
}

.distributor-inquiry-panel h2 {
  color: #ffffff;
}

.about-light-page .about-proof-item strong {
  font-family: "Inter Variable", Arial, sans-serif;
  font-weight: 600;
}

.about-light-page .about-proof-item span,
.about-light-page .about-proof-item:nth-child(3) span {
  font-weight: 600;
}

.about-light-page .about-certificates-title {
  font-weight: 600;
}

.about-light-page .about-document strong {
  font-family: "Inter Variable", Arial, sans-serif;
}
