.products-entry-page {
  --products-green: #137947;
  --products-green-dark: #0b5f36;
  --products-green-soft: #eaf6ef;
  --products-ink: #12201a;
  --products-muted: #5c6b63;
  --products-line: #dfe8e3;
  --products-band: #f6f9f7;
  --products-shadow: 0 16px 34px rgba(20, 79, 49, 0.1);
  color: var(--products-ink);
  background: #fff;
}

.products-entry-page .container {
  width: min(1180px, calc(100% - 32px));
}

.products-entry-hero {
  position: relative;
  min-height: min(38vw, 560px);
  aspect-ratio: 1684 / 620;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--products-line);
}

.products-entry-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.products-entry-hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 32%, rgba(255,255,255,.28) 54%, rgba(255,255,255,0) 82%);
}

.products-entry-hero-content {
  position: relative;
  z-index: 1;
  width: min(54vw, 840px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px, 3.2vw, 54px) clamp(24px, 3vw, 56px) clamp(36px, 5vw, 74px);
}

.products-entry-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: clamp(20px, 3vw, 44px);
  color: #39473f;
  font-size: 0.92rem;
}

.products-entry-breadcrumb a {
  color: var(--products-green-dark);
  text-decoration: none;
}

.products-entry-hero-copy {
  max-width: 720px;
}

.products-entry-eyebrow {
  margin: 0 0 14px;
  color: var(--products-green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.products-entry-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(42px, 4.25vw, 78px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.products-entry-hero-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: #2d3748;
  font-size: clamp(18px, 1.22vw, 23px);
  line-height: 1.45;
}

.products-entry-actions,
.products-entry-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.products-entry-page .btn-outline {
  border: 1px solid var(--products-green);
  color: var(--products-green-dark);
  background: #fff;
}

.products-entry-section {
  padding: 72px 0;
}

.products-entry-muted {
  background: var(--products-band);
}

.products-entry-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.products-entry-section-head h2 {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.products-entry-section-head p {
  margin: 12px 0 0;
  color: var(--products-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.products-selector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 30px;
}

.products-selector-tab {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--products-green);
  border-radius: 6px;
  color: var(--products-green-dark);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.products-selector-tab:hover,
.products-selector-tab:focus {
  box-shadow: 0 0 0 3px rgba(19, 121, 71, 0.12);
}

.products-selector-tab.is-active,
.products-selector-tab[aria-selected="true"] {
  color: #fff;
  background: var(--products-green);
}

.products-selector-panels {
  display: grid;
  gap: 34px;
}

.products-selector-panel {
  opacity: 1;
  transition: opacity 180ms ease;
}

.products-selector-section.is-enhanced .products-selector-panels {
  display: block;
}

.products-selector-section.is-enhanced .products-selector-panel[hidden] {
  display: none;
}

.products-selector-section.is-enhanced .products-selector-panel.is-fading {
  opacity: 0;
}

.products-selector-panel-head {
  max-width: 760px;
  margin: 0 0 24px;
}

.products-selector-panel-head h2 {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.products-selector-panel-head p {
  margin: 10px 0 0;
  color: var(--products-muted);
  line-height: 1.68;
}

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

.products-entry-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.products-entry-card:hover,
.products-entry-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(19, 121, 71, 0.34);
  box-shadow: var(--products-shadow);
}

.products-entry-card-image {
  display: block;
  background: #f8faf9;
}

.products-entry-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.products-entry-card-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
}

.products-entry-card h3,
.products-entry-info-card h3,
.products-entry-process h3 {
  margin: 0;
  color: var(--products-ink);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.products-entry-card p,
.products-entry-info-card p {
  margin: 10px 0 0;
  color: var(--products-muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.products-entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 18px;
}

.products-entry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid #d9e7df;
  border-radius: 999px;
  color: var(--products-green-dark);
  background: var(--products-green-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.products-entry-recommendation {
  margin: 16px 0 18px;
  padding: 12px;
  border: 1px solid #d9e7df;
  border-radius: 6px;
  background: var(--products-green-soft);
}

.products-entry-recommendation span {
  display: block;
  margin-bottom: 6px;
  color: var(--products-green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.products-entry-recommendation strong {
  display: block;
  color: var(--products-ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.products-entry-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid var(--products-green);
  border-radius: 6px;
  color: var(--products-green-dark);
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.products-entry-detail-link:hover,
.products-entry-detail-link:focus {
  color: #fff;
  background: var(--products-green);
}

.products-selector-advice {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(19, 121, 71, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef8f2, #fff);
}

.products-selector-advice h2 {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.products-selector-advice p {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--products-muted);
  line-height: 1.7;
}

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

.products-entry-application-card {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  color: var(--products-ink);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.products-entry-application-card:hover,
.products-entry-application-card:focus {
  transform: translateY(-3px);
  border-color: rgba(19, 121, 71, 0.34);
  box-shadow: var(--products-shadow);
}

.products-entry-app-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--products-green-dark);
  background: var(--products-green-soft);
}

.products-entry-app-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

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

.products-option-card {
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--products-line);
  border-radius: 14px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.products-option-card:hover,
.products-option-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(19, 121, 71, 0.3);
  box-shadow: 0 18px 34px rgba(20, 79, 49, 0.11);
}

.products-option-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #cfe4d8;
  border-radius: 12px;
  color: var(--products-green);
  background: #f4fbf7;
}

.products-option-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.products-option-card h3 {
  margin: 0;
  color: var(--products-ink);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

.products-option-card p {
  display: -webkit-box;
  min-height: 3.05em;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--products-muted);
  font-size: 0.94rem;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.products-option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.products-option-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid #d8e8df;
  border-radius: 999px;
  color: var(--products-green-dark);
  background: #f0f8f3;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.products-entry-info-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--products-line);
  border-left: 4px solid var(--products-green);
  border-radius: 8px;
  background: #fff;
}

.why-choose-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}

.why-section-head {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.why-section-eyebrow {
  margin: 0 0 10px;
  color: var(--products-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-section-title {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.why-section-title span {
  color: var(--products-green);
}

.why-section-subtitle {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--products-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.why-stats-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto 34px;
}

.why-stat-top-card {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 14px;
  border: 1px solid #d8e8df;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 79, 49, 0.06);
  text-align: center;
}

.why-stat-top-card strong {
  display: block;
  color: var(--products-green-dark);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.1;
  font-weight: 900;
}

.why-stat-top-card span {
  display: block;
  margin-top: 6px;
  color: var(--products-muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

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

.why-feature-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--products-line);
  border-radius: 16px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-feature-card:hover,
.why-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(19, 121, 71, 0.28);
  box-shadow: 0 18px 34px rgba(20, 79, 49, 0.1);
}

.why-feature-content {
  display: flex;
  flex: 1 1 auto;
  min-height: 176px;
  flex-direction: column;
}

.why-feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.why-feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid #cfe4d8;
  border-radius: 12px;
  color: var(--products-green);
  background: #f4fbf7;
}

.why-feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.why-feature-number {
  color: #c5d4cc;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.why-feature-card h3 {
  margin: 0;
  color: var(--products-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: 0;
}

.why-feature-card p {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--products-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.why-feature-image {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 12px;
  background: #eef4f1;
}

.why-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.why-stats-bottom {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #d8e8df;
  border-radius: 16px;
  background: #fff;
}

.why-stat-bottom-item {
  min-width: 0;
  padding: 18px 14px;
  border-right: 1px solid var(--products-line);
  text-align: center;
}

.why-stat-bottom-item:last-child {
  border-right: 0;
}

.why-stat-bottom-item strong {
  display: block;
  color: var(--products-green-dark);
  font-size: clamp(1.08rem, 1.7vw, 1.55rem);
  line-height: 1.1;
  font-weight: 900;
}

.why-stat-bottom-item span {
  display: block;
  margin-top: 6px;
  color: var(--products-muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.28;
}

.products-entry-process {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-entry-process li {
  position: relative;
  min-width: 0;
  padding: 18px 12px;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.products-entry-process-number {
  display: block;
  color: var(--products-green);
  font-size: 0.72rem;
  font-weight: 900;
}

.products-entry-process-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px auto 12px;
  border: 2px solid var(--products-green);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0 45%, var(--products-green-soft) 45% 100%);
}

.products-entry-process h3 {
  font-size: 0.82rem;
}

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

.products-entry-faq-item {
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: #fff;
}

.products-entry-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--products-ink);
  font-weight: 800;
}

.products-entry-faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--products-muted);
  line-height: 1.68;
}

.products-entry-bottom-cta {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(135deg, #0b5f36, #137947);
}

.products-entry-bottom-cta-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.products-entry-bottom-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.products-entry-bottom-cta p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.72;
}

.products-entry-contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.products-entry-contact-lines a {
  color: #fff;
}

.products-entry-bottom-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

@media (max-width: 1040px) {
  .products-entry-hero-content {
    width: min(68vw, 680px);
  }

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

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

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

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

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

  .why-stat-bottom-item {
    border-bottom: 1px solid var(--products-line);
  }

  .why-stat-bottom-item:nth-child(3n) {
    border-right: 0;
  }

  .why-stat-bottom-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .products-entry-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .products-entry-bottom-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-selector-advice {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .products-entry-page .container {
    width: min(100% - 24px, 1180px);
  }

  .products-entry-hero {
    min-height: 360px;
    aspect-ratio: auto;
  }

  .products-entry-hero-bg {
    object-position: 58% 56%;
  }

  .products-entry-hero-wash {
    background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 58%, rgba(255,255,255,.18) 100%);
  }

  .products-entry-hero-content {
    width: min(92vw, 560px);
    min-height: 360px;
    padding: 24px;
  }

  .products-entry-breadcrumb {
    margin-bottom: 22px;
    font-size: 0.86rem;
  }

  .products-entry-hero h1 {
    font-size: clamp(30px, 8.6vw, 48px);
  }

  .products-entry-hero-subtitle {
    font-size: 16px;
  }

  .products-entry-section {
    padding: 54px 0;
  }

  .products-entry-category-grid,
  .products-entry-application-grid,
  .products-entry-wide-grid {
    grid-template-columns: 1fr;
  }

  .products-options-grid {
    grid-template-columns: 1fr;
  }

  .why-section-head {
    text-align: left;
  }

  .why-section-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .why-stats-top,
  .why-feature-grid {
    grid-template-columns: 1fr;
  }

  .why-stat-top-card {
    min-height: 76px;
  }

  .why-feature-card {
    min-height: 0;
    padding: 18px;
  }

  .why-feature-content {
    min-height: 0;
  }

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

  .why-stat-bottom-item,
  .why-stat-bottom-item:nth-child(3n),
  .why-stat-bottom-item:nth-last-child(-n+2) {
    border-right: 1px solid var(--products-line);
    border-bottom: 1px solid var(--products-line);
  }

  .why-stat-bottom-item:nth-child(2n) {
    border-right: 0;
  }

  .why-stat-bottom-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .products-option-card {
    min-height: 0;
    padding: 22px;
  }

  .products-selector-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .products-selector-tab,
  .products-selector-advice .btn {
    width: 100%;
    justify-content: center;
  }

  .products-selector-advice {
    padding: 22px;
  }

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

  .products-entry-actions,
  .products-entry-bottom-actions {
    width: 100%;
  }

  .products-entry-actions .btn,
  .products-entry-bottom-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.products-application-page,
.products-zone-detail-page {
  background: #fff;
}

.products-application-intro,
.products-zone-detail-hero {
  padding: clamp(24px, 3.2vw, 42px) 0 clamp(18px, 2.8vw, 32px);
  border-bottom: 1px solid var(--products-line);
  background: linear-gradient(135deg, #ffffff 0%, #f9fbfa 62%, #eff8f3 100%);
}

.products-application-intro-copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.products-application-intro h1,
.products-zone-detail-copy h1 {
  max-width: 900px;
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(31px, 3.7vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.products-application-intro-copy > p:last-child,
.products-zone-detail-copy > p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--products-muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
}

.products-application-directory {
  padding-top: 34px;
  background: #fff;
}

.products-zone-directory {
  display: grid;
  gap: 22px;
}

.products-zone-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(18px, 2.8vw, 34px);
  align-items: center;
  min-height: 340px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 79, 49, .075);
}

.products-zone-copy {
  min-width: 0;
}

.products-application-page .products-zone-kicker,
.products-application-page .products-zone-formats {
  display: none;
}

.products-zone-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.products-zone-number {
  color: rgba(19, 121, 71, .18);
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: .9;
  font-weight: 900;
}

.products-zone-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(19, 121, 71, .24);
  border-radius: 50%;
  color: var(--products-green);
  background: var(--products-green-soft);
}

.products-zone-icon svg {
  width: 28px;
  height: 28px;
}

.products-zone-copy h2 {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.products-zone-copy p {
  margin: 14px 0 0;
  color: var(--products-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.products-zone-formats {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--products-green);
}

.products-zone-formats span {
  color: var(--products-green-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.products-zone-formats strong {
  color: var(--products-ink);
  font-size: .98rem;
  line-height: 1.55;
}

.products-zone-button {
  margin-top: 22px;
}

.products-zone-media,
.products-zone-detail-media {
  display: block;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f6faf8 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
  text-decoration: none;
}

.products-application-page .products-zone-media {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.products-zone-image-grid {
  display: grid;
  grid-template-columns: 1.08fr .9fr .9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  height: clamp(260px, 28vw, 390px);
  min-height: 260px;
}

.products-application-page .products-zone-image-grid {
  display: block;
  aspect-ratio: 1672 / 941;
  height: auto;
  min-height: 0;
}

.products-zone-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #fff;
}

.products-application-page .products-zone-image {
  border-radius: 0;
  background: transparent;
}

.products-zone-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.products-application-page .products-zone-image img {
  object-fit: contain;
}

.products-application-page .products-zone-image img.products-image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1200ms ease,
    transform 1200ms cubic-bezier(.22, .74, .28, 1);
  will-change: opacity, transform;
}

.products-application-page .products-zone-image img.products-image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-zone-media:hover img,
.products-zone-media:focus img {
  transform: scale(1.035);
}

.products-application-page .products-zone-media:hover img,
.products-application-page .products-zone-media:focus img {
  transform: none;
}

.products-application-page .products-zone-media:hover img.products-image-reveal,
.products-application-page .products-zone-media:focus img.products-image-reveal {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .products-application-page .products-zone-image img.products-image-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.products-zone-image-1 {
  grid-row: 1 / span 2;
}

.products-application-page .products-zone-image-1 {
  width: 100%;
  height: 100%;
}

.products-zone-image-4 {
  grid-column: 2 / span 2;
}

.products-zone-cta {
  padding: 46px 0 64px;
  background: #fff;
}

.products-zone-cta-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0b5f36 0%, #17854f 100%);
}

.products-zone-cta-inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.16;
}

.products-zone-cta-inner p {
  max-width: 780px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
}

.products-zone-cta-actions,
.products-zone-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.products-zone-cta-actions {
  flex: 0 0 auto;
}

.products-zone-cta .btn-outline {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
  background: transparent;
}

.products-zone-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.products-zone-detail-actions {
  margin-top: 26px;
}

.products-zone-detail-section {
  padding: 66px 0;
}

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

.products-zone-format-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--products-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 79, 49, .07);
}

.products-zone-format-card h3 {
  margin: 0;
  color: var(--products-ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.products-zone-format-card p {
  margin: 12px 0 0;
  color: var(--products-muted);
  line-height: 1.65;
}

.products-zone-format-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--products-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.products-zone-note {
  max-width: 850px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(19, 121, 71, .18);
  border-left: 5px solid var(--products-green);
  border-radius: 8px;
  background: #fff;
}

.products-zone-note h2 {
  margin: 0;
  color: var(--products-ink);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.products-zone-note p {
  margin: 12px 0 0;
  color: var(--products-muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .products-zone-row,
  .products-zone-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .products-zone-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .products-application-intro,
  .products-zone-detail-hero {
    padding: 30px 0;
  }

  .products-zone-row {
    padding: 20px;
  }

  .products-zone-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: 0;
  }

  .products-application-page .products-zone-image-grid {
    height: auto;
  }

  .products-zone-image {
    aspect-ratio: 1 / 1;
  }

  .products-application-page .products-zone-image {
    aspect-ratio: 1672 / 941;
  }

  .products-zone-image-1,
  .products-zone-image-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .products-zone-image-5 {
    display: none;
  }

  .products-zone-format-grid {
    grid-template-columns: 1fr;
  }

  .products-zone-cta-actions,
  .products-zone-detail-actions {
    width: 100%;
  }

  .products-zone-cta-actions .btn,
  .products-zone-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.ys-beverage-page {
  --ys-green: #0f7a43;
  --ys-green-dark: #075f35;
  --ys-green-soft: #edf8f1;
  --ys-green-pale: #f7fbf8;
  --ys-ink: #111915;
  --ys-muted: #58675f;
  --ys-line: #dfe9e3;
  --ys-card-shadow: 0 14px 34px rgba(19, 90, 55, .08);
  overflow: hidden;
  color: var(--ys-ink);
  background: #fff;
}

.ys-beverage-page h1,
.ys-beverage-page h2,
.ys-beverage-page h3,
.ys-beverage-page .btn {
  letter-spacing: 0;
  text-transform: none;
}

.ys-beverage-page .container {
  width: min(1220px, calc(100% - 32px));
}

.ys-beverage-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 56px) 0 clamp(54px, 7vw, 92px);
  border-bottom: 1px solid var(--ys-line);
  background:
    radial-gradient(680px 260px at 92% 88%, rgba(206, 232, 213, .78), rgba(206, 232, 213, 0) 68%),
    linear-gradient(135deg, #fff 0%, #fbfdfb 58%, #eff8f2 100%);
}

.ys-beverage-hero::before,
.ys-beverage-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -72px;
  width: min(740px, 62vw);
  height: 220px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(-12deg);
}

.ys-beverage-hero::before {
  background: rgba(216, 237, 222, .68);
}

.ys-beverage-hero::after {
  bottom: -118px;
  right: -4vw;
  background: rgba(232, 245, 236, .86);
}

.ys-beverage-breadcrumb {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(24px, 4vw, 48px);
  color: #6c7870;
  font-size: .92rem;
}

.ys-beverage-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.ys-beverage-eyebrow {
  margin: 0 0 14px;
  color: var(--ys-green);
  font-weight: 800;
}

.ys-beverage-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #0f1713;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.08;
  font-weight: 900;
}

.ys-beverage-hero-copy > p:not(.ys-beverage-eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #4f5d55;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.9;
}

.ys-beverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ys-beverage-actions .btn,
.ys-form-actions .btn {
  min-height: 48px;
  gap: 10px;
  border-radius: 7px;
}

.ys-beverage-page .btn-primary {
  background: var(--ys-green);
}

.ys-beverage-page .btn-primary:hover,
.ys-beverage-page .btn-primary:focus {
  background: var(--ys-green-dark);
}

.ys-beverage-page .btn-outline {
  border-color: rgba(7, 95, 53, .48);
  color: var(--ys-green-dark);
  background: #fff;
}

.ys-btn-icon,
.ys-app-card span,
.ys-performance-grid span,
.ys-option-grid span,
.ys-inquiry-copy li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ys-btn-icon svg {
  width: 18px;
  height: 18px;
}

.ys-beverage-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ys-beverage-section {
  padding: clamp(34px, 5.4vw, 64px) 0;
  background: #fff;
}

.ys-beverage-section-compact {
  padding-top: 0;
}

.ys-beverage-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 24px;
  text-align: center;
}

.ys-beverage-section-title span {
  width: 34px;
  height: 2px;
  background: var(--ys-green);
}

.ys-beverage-section-title h2 {
  margin: 0;
  color: var(--ys-ink);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.22;
  font-weight: 900;
}

.ys-title-left {
  justify-content: center;
  margin-bottom: 24px;
}

.ys-format-grid,
.ys-app-grid {
  display: grid;
  gap: 12px;
}

.ys-format-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.ys-format-card,
.ys-app-card,
.ys-panel {
  border: 1px solid var(--ys-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ys-card-shadow);
}

.ys-format-card {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 18px;
  text-align: center;
}

.ys-format-image {
  display: flex;
  width: 100%;
  height: 148px;
  align-items: center;
  justify-content: center;
}

.ys-format-image img {
  max-width: 100%;
  max-height: 142px;
  object-fit: contain;
}

.ys-format-card h3 {
  margin: 10px 0 0;
  color: #15221b;
  font-size: .98rem;
  line-height: 1.35;
  font-weight: 800;
}

.ys-app-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.ys-app-card {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 10px;
  text-align: center;
}

.ys-app-card span {
  width: 44px;
  height: 44px;
  color: var(--ys-green-dark);
}

.ys-app-card svg {
  width: 42px;
  height: 42px;
}

.ys-app-card h3 {
  margin: 0;
  color: #17221d;
  font-size: .98rem;
  line-height: 1.35;
  font-weight: 700;
}

.ys-beverage-split-section,
.ys-beverage-quality-faq {
  padding-top: 0;
}

.ys-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 22px;
  align-items: stretch;
}

.ys-panel {
  padding: clamp(20px, 2.5vw, 30px);
}

.ys-material-layout {
  display: grid;
  grid-template-columns: minmax(190px, .76fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.ys-layer-visual {
  position: relative;
  min-height: 190px;
}

.ys-layer-visual span {
  position: absolute;
  left: 12px;
  width: 78%;
  height: 48px;
  border: 1px solid rgba(12, 67, 39, .08);
  border-radius: 2px;
  box-shadow: 0 12px 22px rgba(22, 65, 43, .12);
  transform: skewY(-18deg);
}

.ys-layer-visual span:nth-child(1) {
  top: 14px;
  background: #f5f6f5;
}

.ys-layer-visual span:nth-child(2) {
  top: 52px;
  background: #dbe7c8;
}

.ys-layer-visual span:nth-child(3) {
  top: 90px;
  background: #86a86b;
}

.ys-layer-visual span:nth-child(4) {
  top: 128px;
  background: #314845;
}

.ys-layer-list {
  display: grid;
  gap: 16px;
}

.ys-layer-list div {
  position: relative;
  padding-left: 28px;
}

.ys-layer-list div::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--ys-green);
  content: "";
}

.ys-layer-list strong {
  display: block;
  color: #1c2a22;
  font-size: .96rem;
}

.ys-layer-list p {
  margin: 4px 0 0;
  color: var(--ys-muted);
  font-size: .9rem;
  line-height: 1.6;
}

.ys-performance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.ys-performance-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #203027;
  font-weight: 700;
}

.ys-performance-grid span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  color: var(--ys-green-dark);
  background: var(--ys-green-soft);
}

.ys-performance-grid svg {
  width: 19px;
  height: 19px;
}

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

.ys-option-grid div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 8px;
  border-right: 1px solid var(--ys-line);
  border-bottom: 1px solid var(--ys-line);
  text-align: center;
}

.ys-option-grid span {
  width: 40px;
  height: 40px;
  color: var(--ys-green-dark);
}

.ys-option-grid svg {
  width: 35px;
  height: 35px;
}

.ys-option-grid strong {
  color: #1a2820;
  font-size: .92rem;
  line-height: 1.35;
}

.ys-quality-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ys-quality-steps article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--ys-line);
  background: #fff;
}

.ys-quality-steps article::after {
  position: absolute;
  top: 44px;
  right: -13px;
  width: 26px;
  height: 26px;
  border-top: 2px solid var(--ys-green);
  border-right: 2px solid var(--ys-green);
  content: "";
  transform: rotate(45deg);
}

.ys-quality-steps article:last-child::after {
  display: none;
}

.ys-quality-image {
  height: 118px;
  overflow: hidden;
  background: #eef4ef;
}

.ys-quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ys-quality-steps article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin: -17px 14px 0;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--ys-green);
  font-size: .78rem;
  font-weight: 900;
}

.ys-quality-steps h3 {
  margin: 12px 14px 0;
  color: #17221d;
  font-size: .96rem;
  line-height: 1.35;
  font-weight: 800;
}

.ys-quality-steps p {
  margin: 8px 14px 16px;
  color: var(--ys-muted);
  font-size: .86rem;
  line-height: 1.55;
}

.ys-beverage-faq {
  display: grid;
  gap: 10px;
}

.ys-beverage-faq details {
  border: 1px solid var(--ys-line);
  border-radius: 7px;
  background: #fff;
}

.ys-beverage-faq summary {
  position: relative;
  padding: 15px 44px 15px 16px;
  color: #17221d;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.ys-beverage-faq summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--ys-green-dark);
  content: "+";
  transform: translateY(-50%);
}

.ys-beverage-faq details[open] summary::after {
  content: "-";
}

.ys-beverage-faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--ys-muted);
  font-size: .94rem;
  line-height: 1.75;
}

.ys-inquiry-section {
  padding: clamp(34px, 5.4vw, 64px) 0;
  background:
    linear-gradient(90deg, #edf8f1 0%, #f8fcf9 40%, #fff 100%);
  border-top: 1px solid var(--ys-line);
}

.ys-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.ys-inquiry-copy h2 {
  margin: 0;
  color: var(--ys-ink);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  font-weight: 900;
}

.ys-inquiry-copy ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ys-inquiry-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #34453b;
  font-weight: 650;
}

.ys-inquiry-copy li span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  color: var(--ys-green-dark);
  background: #dff1e6;
}

.ys-inquiry-copy li svg {
  width: 14px;
  height: 14px;
}

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

.ys-beverage-form label {
  display: grid;
  gap: 7px;
  color: #2f3e36;
  font-size: .92rem;
  font-weight: 700;
}

.ys-beverage-form input,
.ys-beverage-form select,
.ys-beverage-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--ys-line);
  border-radius: 6px;
  color: #142019;
  background: #fff;
  font: inherit;
}

.ys-beverage-form input,
.ys-beverage-form select {
  padding: 0 13px;
}

.ys-beverage-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.ys-beverage-form input:focus,
.ys-beverage-form select:focus,
.ys-beverage-form textarea:focus {
  border-color: var(--ys-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 122, 67, .12);
}

.ys-beverage-form .field-full,
.ys-form-actions {
  grid-column: 1 / -1;
}

.ys-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ys-beverage-page img.products-image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}

.ys-beverage-page img.products-image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ys-beverage-page img.products-image-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .ys-format-grid,
  .ys-app-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .ys-quality-steps article::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .ys-two-col,
  .ys-inquiry-grid,
  .ys-material-layout {
    grid-template-columns: 1fr;
  }

  .ys-layer-visual {
    max-width: 320px;
  }
}

@media (max-width: 680px) {
  .ys-beverage-page .container {
    width: min(100% - 24px, 1220px);
  }

  .ys-beverage-hero {
    padding-top: 26px;
  }

  .ys-beverage-actions,
  .ys-form-actions {
    width: 100%;
  }

  .ys-beverage-actions .btn,
  .ys-form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .ys-format-grid,
  .ys-app-grid,
  .ys-quality-steps,
  .ys-option-grid,
  .ys-performance-grid,
  .ys-beverage-form {
    grid-template-columns: 1fr;
  }

  .ys-format-card {
    min-height: 190px;
  }

  .ys-format-image {
    height: 126px;
  }
}

.products-application-unified {
  --app-green: #107744;
  --app-green-dark: #075f35;
  --app-green-soft: #eef8f2;
  --app-green-pale: #f7fbf8;
  --app-ink: #111a15;
  --app-muted: #58675f;
  --app-line: #dfe9e3;
  --app-shadow: 0 18px 42px rgba(19, 90, 55, .1);
  color: var(--app-ink);
  background: #fff;
}

.products-application-unified h1,
.products-application-unified h2,
.products-application-unified h3,
.products-application-unified .btn {
  letter-spacing: 0;
  text-transform: none;
}

.products-application-unified .container {
  width: min(1380px, calc(100% - 32px));
}

.products-app-hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(16px, 2.2vw, 30px) 0 clamp(42px, 4.8vw, 64px);
  border-bottom: 1px solid var(--app-line);
  background:
    radial-gradient(720px 360px at 82% 12%, rgba(218, 241, 226, .82), rgba(218, 241, 226, 0) 66%),
    linear-gradient(135deg, #fff 0%, #fbfdfb 56%, #edf8f1 100%);
}

.products-app-cloud {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(.2px);
}

.products-app-cloud-1 {
  right: -9vw;
  top: 44px;
  width: min(520px, 46vw);
  height: 190px;
  background: rgba(202, 231, 213, .5);
  transform: rotate(-12deg);
}

.products-app-cloud-2 {
  right: 20vw;
  bottom: -96px;
  width: min(640px, 58vw);
  height: 210px;
  background: rgba(229, 244, 234, .82);
  transform: rotate(-8deg);
}

.products-app-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
  gap: clamp(24px, 2.8vw, 38px);
  align-items: start;
}

.products-app-hero-copy {
  align-self: start;
  max-width: 680px;
  text-align: left;
}

.products-app-breadcrumb {
  margin: clamp(14px, 1.8vw, 22px) 0 8px;
  color: #65746b;
  font-size: .92rem;
}

.products-app-breadcrumb a {
  color: var(--app-green-dark);
  text-decoration: none;
}

.products-app-label {
  margin: 0 0 14px;
  color: var(--app-green);
  font-size: .92rem;
  font-weight: 850;
}

.products-app-hero h1 {
  margin: 0;
  color: var(--app-ink);
  max-width: 720px;
  font-size: clamp(2.15rem, 2.95vw, 3.3rem);
  line-height: 1.14;
  font-weight: 900;
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
}

.products-app-lead {
  display: -webkit-box;
  max-width: 640px;
  margin: 18px 0 0;
  overflow: hidden;
  color: #46554d;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.products-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.products-app-actions .btn {
  min-height: 48px;
  border-radius: 7px;
}

.products-application-unified .btn-primary {
  background: var(--app-green);
}

.products-application-unified .btn-primary:hover,
.products-application-unified .btn-primary:focus {
  background: var(--app-green-dark);
}

.products-application-unified .btn-outline {
  border-color: rgba(7, 95, 53, .42);
  color: var(--app-green-dark);
  background: #fff;
}

.products-app-hero-media {
  align-self: start;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(16, 119, 68, .13);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--app-shadow);
  transform: translateX(clamp(12px, 2vw, 30px));
}

.products-app-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.products-app-section {
  padding: clamp(46px, 6vw, 76px) 0;
  background: #fff;
}

.products-app-section-muted {
  background: var(--app-green-pale);
}

.products-app-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.products-app-section-head-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.products-app-section-head h2 {
  margin: 0;
  color: var(--app-ink);
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.18;
  font-weight: 900;
}

.products-app-section-head p {
  margin: 12px 0 0;
  color: var(--app-muted);
  line-height: 1.75;
}

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

.products-app-format-card,
.products-app-product-grid article,
.products-app-panel {
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 79, 49, .06);
}

.products-app-format-card {
  overflow: hidden;
}

.products-app-format-image {
  display: flex;
  height: 170px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(180deg, #f7fbf8 0%, #fff 100%);
}

.products-app-format-image img {
  max-width: 100%;
  max-height: 142px;
  object-fit: contain;
}

.products-app-format-card > div {
  padding: 18px;
}

.products-app-format-card h3,
.products-app-product-grid h3,
.products-app-material-grid h3 {
  margin: 0;
  color: #17221d;
  font-size: 1.06rem;
  line-height: 1.32;
  font-weight: 850;
}

.products-app-format-card p,
.products-app-material-grid p {
  margin: 10px 0 0;
  color: var(--app-muted);
  font-size: .94rem;
  line-height: 1.65;
}

.products-app-text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--app-green-dark);
  font-weight: 850;
  text-decoration: none;
}

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

.products-app-product-grid article {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.products-app-product-grid span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--app-green-dark);
  background: var(--app-green-soft);
  font-size: .78rem;
  font-weight: 900;
}

.products-app-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 22px;
  align-items: stretch;
}

.products-app-panel {
  padding: clamp(22px, 3vw, 34px);
}

.products-app-material-grid {
  display: grid;
  gap: 14px;
}

.products-app-material-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fbfdfb;
}

.products-app-material-grid span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--app-green);
  font-size: .8rem;
  font-weight: 900;
}

.products-app-oem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.products-app-oem-grid article {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: #fbfdfb;
}

.products-app-oem-grid strong {
  display: block;
  color: var(--app-green-dark);
  font-size: .9rem;
}

.products-app-oem-grid span {
  display: block;
  margin-top: 8px;
  color: #17221d;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.35;
}

.products-app-cta {
  padding: clamp(42px, 6vw, 72px) 0;
  background: #fff;
}

.products-app-cta-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #075f35 0%, #137947 100%);
  box-shadow: var(--app-shadow);
}

.products-app-cta-inner h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.16;
}

.products-app-cta-inner p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.75;
}

.products-app-cta-inner .products-app-label {
  color: rgba(255, 255, 255, .75);
}

.products-app-cta .btn-outline {
  border-color: rgba(255, 255, 255, .76);
  color: #fff;
  background: transparent;
}

.products-application-unified img.products-image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}

.products-application-unified img.products-image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .products-application-unified img.products-image-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .products-app-hero {
    min-height: 0;
  }

  .products-app-hero-grid,
  .products-app-info-grid {
    grid-template-columns: 1fr;
  }

  .products-app-hero-copy {
    max-width: 680px;
  }

  .products-app-hero-media {
    aspect-ratio: 16 / 9;
    transform: none;
  }

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

  .products-app-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .products-application-unified .container {
    width: min(100% - 24px, 1200px);
  }

  .products-app-hero {
    padding: 28px 0 42px;
  }

  .products-app-hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .products-app-lead {
    -webkit-line-clamp: 3;
  }

  .products-app-actions,
  .products-app-actions .btn {
    width: 100%;
  }

  .products-app-actions .btn {
    justify-content: center;
  }

  .products-app-format-grid,
  .products-app-product-grid,
  .products-app-oem-grid {
    grid-template-columns: 1fr;
  }

  .products-app-format-image {
    height: 150px;
  }

  .products-app-material-grid article {
    grid-template-columns: 1fr;
  }
}
