:root {
  --ink: #122126;
  --muted: #657274;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: rgba(18, 33, 38, 0.12);
  --line-strong: rgba(18, 33, 38, 0.2);
  --green: #0b6b50;
  --green-dark: #084f3c;
  --green-soft: #eaf2ee;
  --accent: #0b6b50;
  --shadow: 0 16px 36px rgba(18, 33, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 95, 143, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
}

.logo,
.nav-menu,
.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 120px;
  max-width: 32vw;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu > a,
.nav-dropdown-toggle {
  position: relative;
  border-radius: 6px;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-menu > a {
  padding: 8px 0;
}

.nav-menu > a::after,
.nav-dropdown-toggle::before {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu > a:hover,
.nav-menu > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.nav-menu > a:hover::after,
.nav-menu > a:focus-visible::after,
.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle:focus-visible::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown-toggle {
  min-height: 38px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 30;
  display: grid;
  width: 250px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  gap: 2px;
}

.nav-dropdown-panel a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  background: var(--green-soft);
}

.language-select {
  position: relative;
}

.language-select select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.language-toggle,
.language-menu button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle {
  min-width: 86px;
  padding: 0 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-toggle::after {
  width: 7px;
  height: 7px;
  margin-left: auto;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-select.is-open .language-toggle {
  border-color: rgba(23, 101, 86, 0.5);
  box-shadow: 0 8px 18px rgba(18, 32, 38, 0.09);
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 6px;
  width: 124px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-select.is-open .language-menu,
.language-select:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  padding: 8px;
  text-align: left;
  border-color: transparent;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[aria-selected="true"] {
  background: var(--green-soft);
  border-color: rgba(23, 101, 86, 0.28);
}

.flag {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 32, 38, 0.18);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.flag-us {
  background: repeating-linear-gradient(to bottom, #b22234 0 1px, #fff 1px 2px);
}

.flag-us::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 8px;
  content: "";
  background: #3c3b6e;
}

.flag-vn {
  background: #da251d;
}

.flag-vn::before {
  position: absolute;
  top: 3px;
  left: 6px;
  color: #ffde00;
  content: "";
  width: 6px;
  height: 6px;
  background: #ffde00;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 68% 56%, 80% 100%, 50% 72%, 20% 100%, 32% 56%, 0 35%, 38% 35%);
}

.flag-id {
  background: linear-gradient(to bottom, #ce1126 0 50%, #fff 50% 100%);
}

.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-br {
  background: #009b3a;
}

.flag-br::before {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 8px;
  height: 8px;
  content: "";
  background: #ffdf00;
  transform: rotate(45deg);
}

.flag-br::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 5px;
  content: "";
  background: #002776;
  border-radius: 50%;
}

.flag-ru {
  background: linear-gradient(to bottom, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero,
.featured-solution,
.outdoor-doming,
.custom-formulation,
.export-support,
.rfq-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.featured-solution {
  grid-template-columns: minmax(0, 5fr) minmax(380px, 7fr);
  gap: clamp(36px, 5vw, 72px);
  background: var(--green-soft);
}

.hero {
  min-height: calc(100vh - 74px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 56px);
}

.application-solutions,
.featured-solution,
.outdoor-doming,
.product-systems,
.production-problems,
.custom-formulation,
.b2b-support,
.workflow,
.export-support,
.rfq-form {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.6vw, 72px);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(29px, 3.8vw, 46px);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 660;
  line-height: 1.07;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle,
.section-heading p,
.featured-copy p,
.custom-formulation p,
.b2b-support p,
.export-support p,
.rfq-copy p,
.problem-action p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.section-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  color: var(--green);
  background: #fff;
  border-color: var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card,
.workflow-grid article,
.form-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-row div {
  min-height: 118px;
  padding: 18px 20px;
}

.trust-row div + div {
  border-left: 1px solid var(--line);
}

.trust-row span,
.feature-number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.trust-row dt {
  margin-bottom: 6px;
  font-weight: 800;
}

.trust-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media,
.featured-media {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.hero-media,
.featured-media {
  aspect-ratio: 4 / 3;
  padding: 6px;
  box-shadow: 0 16px 32px rgba(18, 32, 38, 0.1);
}

.featured-media {
  width: 100%;
  justify-self: end;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(18, 32, 38, 0.12);
}

.hero-media img,
.featured-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: contain;
}

.featured-media img {
  object-fit: cover;
}

.featured-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.featured-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 33, 38, 0.08);
  border-radius: 7px;
  box-shadow: 0 5px 16px rgba(18, 33, 38, 0.035);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.featured-benefits li:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(11, 107, 80, 0.2);
  box-shadow: 0 9px 22px rgba(18, 33, 38, 0.065);
  transform: translateY(-2px);
}

.benefit-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green);
}

.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.featured-solution .section-actions {
  margin: 26px 0 0;
}

.featured-solution .btn-primary:hover,
.featured-solution .btn-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(11, 107, 80, 0.24);
  transform: translateY(-2px) scale(1.015);
}

.featured-solution .btn-secondary {
  border-color: rgba(11, 107, 80, 0.28);
}

.featured-solution .btn-secondary:hover,
.featured-solution .btn-secondary:focus-visible {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(11, 107, 80, 0.58);
  box-shadow: 0 8px 20px rgba(18, 33, 38, 0.09);
  transform: translateY(-2px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.application-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.application-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  align-items: start;
  min-height: 100%;
  padding: 0;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 33, 38, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.application-feature.is-reversed img {
  order: 0;
}

.application-feature:hover,
.application-feature:focus-visible {
  box-shadow: 0 18px 34px rgba(18, 33, 38, 0.1);
  transform: translateY(-3px);
}

.application-feature img,
.outdoor-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 33, 38, 0.08);
}

.application-feature img {
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.application-feature > div {
  padding: 0 24px 26px;
}

.application-feature h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.application-feature p,
.outdoor-panel p,
.product-card p,
.workflow-grid p {
  color: var(--muted);
}

.application-feature strong,
.outdoor-panel strong,
.product-cta a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green);
  transition: color 160ms ease;
}

.link-arrow {
  transition: transform 180ms ease;
}

.application-feature:hover strong,
.application-feature:focus-visible strong,
.outdoor-panel:hover strong,
.outdoor-panel:focus-visible strong,
.product-cta a:hover,
.product-cta a:focus-visible {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-cta .btn-primary,
.product-cta .btn-primary:hover,
.product-cta .btn-primary:focus-visible {
  color: #fff;
  text-decoration: none;
}

.application-feature:hover .link-arrow,
.application-feature:focus-visible .link-arrow {
  transform: translateX(4px);
}

.production-problems,
.export-support {
  background: var(--green-soft);
}

.production-problems {
  background: #fff;
}

.check-list,
.capability-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li,
.capability-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid rgba(18, 32, 38, 0.12);
  font-weight: 700;
}

.check-list li::before,
.capability-list li::before {
  position: absolute;
  left: 14px;
  color: var(--green);
  content: "+";
}

.product-grid,
.capability-grid,
.workflow-grid {
  display: grid;
  gap: 16px;
}

.product-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 1fr);
  grid-template-columns: repeat(4, minmax(245px, 1fr));
  overflow-x: auto;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 4px 2px 18px;
  scroll-snap-type: x proximity;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: clamp(24px, 2.4vw, 30px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 33, 38, 0.05);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(11, 107, 80, 0.32);
  box-shadow: 0 16px 34px rgba(18, 33, 38, 0.09);
  transform: translateY(-3px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  transform: scaleX(1);
}

.card-code {
  display: inline-block;
  width: auto;
  height: auto;
  margin-bottom: 22px;
  padding-left: 10px;
  color: var(--green);
  background: transparent;
  border: 0;
  border-left: 2px solid var(--green);
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.product-card:nth-child(2) .card-code {
  background: transparent;
}

.product-card:nth-child(3) .card-code {
  color: var(--green);
  background: transparent;
}

.product-card:nth-child(4) .card-code {
  background: transparent;
}

.product-card:nth-child(5) .card-code {
  background: transparent;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.18;
}

.product-card p {
  flex: 1;
  margin-bottom: 24px;
}

.product-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.product-card a::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.product-card:hover a::after,
.product-card:focus-within a::after {
  transform: translateX(4px);
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  margin: 34px 0 0;
  padding: clamp(22px, 4vw, 30px);
  color: var(--muted);
  background: var(--green-soft);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.product-cta h3 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.product-cta p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
}

.outdoor-doming {
  display: block;
  background: #fff;
}

.outdoor-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  max-width: 840px;
  margin-inline: auto;
}

.outdoor-panel {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2.4vw, 22px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outdoor-panel:hover,
.outdoor-panel:focus-visible {
  border-color: rgba(23, 101, 86, 0.4);
  box-shadow: 0 16px 32px rgba(18, 32, 38, 0.1);
  transform: translateY(-3px);
}

.outdoor-panel img {
  object-fit: contain;
  background: var(--paper);
  box-shadow: none;
}

.panel-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.problem-list,
.green-capability-list,
.export-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 48px);
}

.problem-list li,
.green-capability-list li,
.export-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.problem-list span,
.green-capability-list span,
.export-list span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.export-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.export-list p {
  margin: 0;
  color: var(--muted);
}

.problem-list strong {
  font-size: clamp(18px, 2vw, 24px);
}

.problem-action {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.problem-diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.problem-copy p:not(.section-kicker) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.problem-copy .btn {
  margin-top: 12px;
}

.resin-comparison-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: clamp(16px, 3vw, 24px);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.comparison-sample {
  min-height: 260px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-sample span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-sample i {
  position: relative;
  display: block;
  height: 160px;
  border-radius: 999px 999px 42px 42px;
}

.comparison-sample i::before,
.comparison-sample i::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.comparison-sample.is-unstable i {
  background: linear-gradient(135deg, #f7d674, #c98d3a);
  box-shadow: inset 0 0 0 1px rgba(18, 33, 38, 0.08);
}

.comparison-sample.is-unstable i::before {
  top: 34px;
  left: 30%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.comparison-sample.is-unstable i::after {
  right: 22%;
  bottom: 38px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.comparison-sample.is-stable i {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(184, 230, 218, 0.72));
  border: 1px solid rgba(11, 107, 80, 0.16);
  box-shadow: inset 0 0 34px rgba(11, 107, 80, 0.12);
}

.comparison-sample.is-stable i::before {
  inset: 34px 20px auto;
  height: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.comparison-divider {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.problem-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.problem-card-grid li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 154px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-card-grid li:hover {
  border-color: rgba(11, 107, 80, 0.34);
  box-shadow: 0 14px 28px rgba(18, 33, 38, 0.08);
  transform: translateY(-3px);
}

.problem-card-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.25;
}

.problem-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.problem-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  background: var(--green-soft);
  border: 1px solid rgba(11, 107, 80, 0.16);
  border-radius: 50%;
}

.problem-icon::before,
.problem-icon::after {
  position: absolute;
  content: "";
}

.icon-yellowing::before {
  inset: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), #d9b554);
  border-radius: 50%;
}

.icon-bubbles::before,
.icon-bubbles::after {
  border: 2px solid var(--green);
  border-radius: 50%;
}

.icon-bubbles::before {
  top: 13px;
  left: 13px;
  width: 11px;
  height: 11px;
}

.icon-bubbles::after {
  right: 12px;
  bottom: 12px;
  width: 8px;
  height: 8px;
}

.icon-surface::before {
  top: 22px;
  left: 10px;
  width: 26px;
  height: 8px;
  border-top: 3px solid var(--green);
  border-radius: 50%;
}

.icon-cure::before {
  inset: 11px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.icon-cure::after {
  top: 15px;
  left: 22px;
  width: 10px;
  height: 9px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.icon-hardness::before {
  top: 13px;
  left: 11px;
  width: 24px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 4px;
  transform: skewX(-8deg);
}

.icon-batch::before {
  top: 12px;
  left: 11px;
  width: 24px;
  height: 20px;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.icon-batch::after {
  top: 18px;
  left: 15px;
  width: 16px;
  border-top: 2px solid var(--green);
}

.custom-formulation {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  background: var(--green);
  color: #fff;
}

.custom-formulation .section-kicker,
.custom-formulation p {
  color: rgba(255, 255, 255, 0.78);
}

.custom-formulation .btn-secondary {
  margin-top: 12px;
  color: var(--green);
}

.custom-formulation .capability-list li {
  color: var(--ink);
}

.green-capability-list li {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.green-capability-list span {
  color: rgba(255, 255, 255, 0.78);
}

.green-capability-list strong {
  font-size: clamp(18px, 2vw, 24px);
}

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

.parameter-card {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.parameter-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-3px);
}

.parameter-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.parameter-card h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
}

.parameter-card p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.parameter-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.parameter-meter {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.parameter-meter i {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transform-origin: left center;
}

.parameter-card:hover .parameter-meter i {
  animation: meter-pulse 900ms ease;
}

@keyframes meter-pulse {
  from {
    transform: scaleX(0.72);
  }

  to {
    transform: scaleX(1);
  }
}

.b2b-support {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background: #fff;
}

.supply-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 42px);
}

.supply-columns article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.supply-columns span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.supply-columns p {
  color: var(--muted);
}

.b2b-support > .btn {
  margin-top: 32px;
}

.support-copy p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.supply-proof-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.supply-proof-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.supply-proof-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.supply-proof-list h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.supply-proof-list p {
  margin: 0;
  color: var(--muted);
}

.support-media {
  position: relative;
  display: block;
  min-height: 470px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(18, 33, 38, 0.1);
}

.support-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 33, 38, 0.02), rgba(18, 33, 38, 0.1));
  pointer-events: none;
}

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

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid article {
  min-height: 240px;
  padding: 24px;
  box-shadow: none;
  border-left: 4px solid var(--green);
}

.workflow-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 800;
}

.workflow {
  background: var(--green-soft);
}

.workflow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  padding: 0;
  margin: clamp(26px, 4vw, 42px) 0 0;
  list-style: none;
}

.workflow-timeline::before {
  position: absolute;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(11, 107, 80, 0.2), rgba(11, 107, 80, 0.8), rgba(11, 107, 80, 0.2));
}

.workflow-timeline li {
  position: relative;
  min-height: 250px;
  padding: 92px 22px 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-timeline span {
  position: absolute;
  top: 0;
  left: 22px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff;
  background: var(--green);
  border: 8px solid var(--green-soft);
  border-radius: 50%;
  font-weight: 900;
}

.workflow-timeline h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.workflow-timeline p {
  margin: 0;
  color: var(--muted);
}

.rfq-form {
  align-items: start;
  background: var(--green-soft);
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #34434a;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid #cfd8d5;
  border-radius: 7px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 101, 86, 0.14);
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.cf-turnstile {
  min-height: 70px;
  padding: 16px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: 7px;
}

.site-footer {
  padding: clamp(36px, 6vw, 64px) clamp(18px, 5vw, 72px) 24px;
  color: #dce9e4;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: #aebcba;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.footer-brand img {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 390px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.footer-column a {
  color: #aebcba;
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-actions a {
  min-height: 40px;
  padding: 9px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-page {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.privacy-content {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.privacy-content h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 32px);
}

.privacy-content p {
  color: var(--muted);
  font-size: 18px;
}

.privacy-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-home-link {
  min-height: 40px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 1024px) {
  .navbar,
  .hero,
  .application-solutions,
  .featured-solution,
  .outdoor-doming,
  .product-systems,
  .production-problems,
  .custom-formulation,
  .b2b-support,
  .workflow,
  .export-support,
  .rfq-form,
  .site-footer,
  .solutions-page section {
    padding-right: clamp(72px, 7.5vw, 108px);
    padding-left: clamp(72px, 7.5vw, 108px);
  }
}

@media (max-width: 1180px) {
  .nav-menu {
    gap: 12px;
    font-size: 13px;
  }

  .product-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .hero,
  .featured-solution,
  .custom-formulation,
  .b2b-support,
  .export-support,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .application-grid,
  .application-features,
  .outdoor-panels,
  .problem-grid,
  .capability-grid,
  .problem-diagnostic,
  .problem-list,
  .problem-card-grid,
  .supply-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .comparison-divider {
    justify-self: center;
  }

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

  .workflow-timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 96px);
    overflow: auto;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a,
  .nav-dropdown-toggle,
  .language-toggle {
    width: 100%;
    min-height: 44px;
    text-align: left;
  }

  .language-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 6px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .language-select.is-open .language-menu,
  .language-select:focus-within .language-menu {
    display: grid;
  }

  .nav-menu > a,
  .nav-dropdown-toggle {
    padding: 10px 12px;
  }

  .nav-dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    margin: 0 0 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: grid;
  }

  h1 {
    font-size: 40px;
  }

  .logo img {
    width: 108px;
  }

  .trust-cards,
  .trust-row,
  .application-grid,
  .application-features,
  .application-feature,
  .outdoor-panels,
  .problem-diagnostic,
  .problem-card-grid,
  .parameter-grid,
  .product-cta,
  .product-grid,
  .problem-grid,
  .capability-grid,
  .problem-list,
  .supply-columns,
  .workflow-timeline,
  .workflow-grid,
  .form-panel {
    grid-template-columns: 1fr;
  }

  .comparison-sample {
    min-height: 220px;
  }

  .parameter-wide {
    grid-column: auto;
  }

  .support-media {
    min-height: 320px;
  }

  .workflow-timeline {
    gap: 0;
  }

  .workflow-timeline li {
    min-height: auto;
    padding: 0 0 30px 84px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .workflow-timeline li:not(:last-child)::before {
    position: absolute;
    top: 68px;
    bottom: 0;
    left: 33px;
    width: 1px;
    content: "";
    background: rgba(11, 107, 80, 0.28);
  }

  .workflow-timeline span {
    left: 0;
    border-color: var(--green-soft);
  }

  .application-feature.is-reversed img {
    order: 0;
  }

  .trust-row div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .problem-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-top: 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 108px;
  }
}

/* Solutions hub page */
.solutions-page section {
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.solutions-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  min-height: calc(88vh - 74px);
}

.solutions-hero h1 {
  max-width: 820px;
}

.solutions-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(120px, 0.85fr);
  grid-template-rows: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.solutions-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(18, 33, 38, 0.1);
}

.solutions-hero-visual img:first-child {
  grid-row: 1 / span 2;
}

.choice-process,
.solution-matrix {
  background: var(--green-soft);
}

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

.choice-steps li {
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.choice-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.choice-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.choice-steps p {
  margin: 0;
  color: var(--muted);
}

.solution-features {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.solution-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding-bottom: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
}

.solution-feature:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.solution-feature.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
}

.solution-feature.is-reversed img {
  order: 2;
}

.solution-feature > img,
.solutions-custom img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(18, 33, 38, 0.1);
}

.solution-feature h3 {
  max-width: 720px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 660;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.solution-feature > div > p,
.solutions-custom p,
.solutions-distributor p {
  color: var(--muted);
  font-size: 17px;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  margin: 28px 0;
}

.solution-detail-grid h4,
.resin-options h4,
.recommended-system h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-detail-grid ul,
.solutions-capability-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-detail-grid li,
.solutions-capability-list li {
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.resin-options,
.recommended-system {
  margin: 28px 0;
  padding: 22px;
  background: var(--green-soft);
  border-radius: 8px;
}

.resin-options dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.resin-options dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.resin-options dl > div:first-child {
  padding-top: 0;
}

.resin-options dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resin-options dt,
.recommended-system strong {
  color: var(--ink);
  font-weight: 800;
}

.resin-options dd,
.recommended-system p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

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

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

.comparison-table thead th {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-weight: 800;
}

.comparison-table tbody td {
  color: var(--muted);
}

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

.solutions-custom {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.solutions-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 24px 0 28px;
}

.solutions-capability-list li {
  color: var(--ink);
  font-weight: 800;
}

.solutions-distributor {
  background: var(--ink);
  color: #fff;
}

.solutions-distributor .section-kicker,
.solutions-distributor p {
  color: rgba(255, 255, 255, 0.76);
}

.solutions-distributor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.solutions-distributor h2 {
  max-width: 760px;
}

.solutions-distributor .solutions-capability-list {
  grid-template-columns: 1fr;
  margin: 0;
}

.solutions-distributor .solutions-capability-list li {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.solutions-distributor .btn-secondary {
  margin-top: 28px;
}

@media (max-width: 940px) {
  .solutions-hero,
  .solution-feature,
  .solution-feature.is-reversed,
  .solutions-custom,
  .solutions-distributor-grid {
    grid-template-columns: 1fr;
  }

  .solution-feature.is-reversed img {
    order: 0;
  }

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

@media (max-width: 760px) {
  .solutions-page section {
    padding: 44px 18px;
  }

  .solutions-hero {
    min-height: auto;
  }

  .solutions-hero-visual,
  .choice-steps,
  .solution-detail-grid,
  .solutions-capability-list {
    grid-template-columns: 1fr;
  }

  .solutions-hero-visual img:first-child {
    grid-row: auto;
  }

  .solutions-hero-visual img {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 1024px) {
  .solutions-page section {
    padding-right: clamp(72px, 7.5vw, 108px);
    padding-left: clamp(72px, 7.5vw, 108px);
  }
}

@media (max-width: 600px) {
  .featured-benefits {
    grid-template-columns: 1fr;
  }

  .featured-benefits li {
    min-height: 68px;
  }
}
