:root {
  --page: #f5f6f7;
  --surface: #ffffff;
  --surface-soft: #eceff1;
  --surface-strong: #171b1f;
  --text: #171b1f;
  --text-muted: #626b72;
  --accent: #58736b;
  --accent-strong: #2f5f4b;
  --accent-warm: #b2854b;
  --bg: var(--page);
  --ink: var(--text);
  --muted: var(--text-muted);
  --line: #d8dde1;
  --soft: var(--surface-soft);
  --blue: var(--accent);
  --blue-dark: var(--surface-strong);
  --cyan: #cfd8d4;
  --green: var(--accent);
  --green-soft: #eef3f0;
  --amber: var(--accent-warm);
  --grid-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 56px rgba(23, 27, 31, 0.12);
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  max-width: 100%;
  overflow-x: clip;
}

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

picture {
  display: block;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 27, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.header-grid {
  min-height: 72px;
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr) 168px;
  gap: 18px;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-wordmark {
  display: grid;
  gap: 2px;
  padding: 5px 0;
  line-height: 1;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
}

.logo strong,
.logo small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo strong {
  color: #fff;
}

.logo small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.74);
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: var(--radius);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-contact {
  min-height: 42px;
  min-width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-contact:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
}

.site-header .btn.primary {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 184px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(23, 27, 31, 0.18);
}

.btn.secondary {
  background: var(--green);
}

.btn.ghost {
  background: var(--surface);
  color: var(--blue-dark);
  border-color: var(--line);
}

.btn:focus-visible,
.header-contact:focus-visible,
.catalog-filters button:focus-visible {
  outline: 3px solid rgba(178, 133, 75, 0.42);
  outline-offset: 3px;
}

.btn.small {
  min-height: 42px;
  min-width: 172px;
  padding: 0 16px;
  font-size: 13px;
}

.hero,
.inner-hero {
  overflow: hidden;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    #2c3236;
  background-size: calc(100% / 4) 100%, calc(100% / 4) 100%, auto;
  color: #fff;
}

.hero-scroll-scene {
  height: 340svh;
  background: #03070a;
}

.hero-pinned {
  position: sticky;
  top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
  height: calc(100svh - var(--header-height));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #03070a;
}

.hero-pinned::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 62% 44%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 67% 45%, rgba(88, 115, 107, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(3, 7, 10, 0.82), rgba(3, 7, 10, 0.18) 54%, rgba(3, 7, 10, 0.6));
  pointer-events: none;
}

.inner-hero.garden {
  background:
    linear-gradient(rgba(88, 115, 107, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 115, 107, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, var(--green-soft), #fff 100%);
  background-size: calc(100% / 4) 100%, calc(100% / 4) 100%, auto;
  color: var(--ink);
}

.inner-hero.fog,
.fog-band {
  background:
    linear-gradient(rgba(23, 27, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 27, 31, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #eef1f2 0%, #f8f9f9 100%);
  background-size: calc(100% / 4) 100%, calc(100% / 4) 100%, auto;
  color: var(--ink);
}

.hero-grid,
.inner-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 82px 0 54px;
}

.hero-grid > *,
.inner-hero-grid > * {
  min-width: 0;
}

.hero-copy,
.inner-hero-grid > div:first-child {
  grid-column: span 6;
}

.generated-stage,
.inner-media {
  grid-column: span 6;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.9);
}

.garden-band .kicker,
.inner-hero.garden .kicker {
  color: #2f7b45;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 64px;
  max-width: 900px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 22px;
}

.lead {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 20px;
  color: #34485a;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.button-row,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero .hero-actions .btn {
  flex: 1 1 0;
  min-width: 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.tag-list span,
.segment-grid span,
.catalog-filters button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
  color: #334758;
}

.hero .trust-row span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.product-stage {
  position: relative;
  min-height: 460px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 246, 254, 0.9)),
    linear-gradient(135deg, #dff3fb, #fff);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.product-stage .product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(20, 33, 43, 0.2));
}

.product-canister {
  width: 54%;
  right: 8%;
  bottom: 88px;
}

.product-spray {
  width: 44%;
  left: 8%;
  bottom: 58px;
}

.mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.8;
  z-index: -1;
}

.mist-a {
  width: 260px;
  height: 260px;
  top: 40px;
  right: 70px;
  background: rgba(99, 200, 236, 0.42);
}

.mist-b {
  width: 210px;
  height: 210px;
  bottom: 60px;
  left: 60px;
  background: rgba(79, 159, 100, 0.18);
}

.stage-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-dark);
  font-weight: 800;
  text-align: center;
}

.generated-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf6fb;
  box-shadow: 0 34px 80px rgba(17, 31, 45, 0.22);
  perspective: 1100px;
}

.generated-stage picture,
.generated-stage img {
  width: 100%;
  height: 100%;
}

.generated-hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.sequence-stage {
  background:
    radial-gradient(circle at 50% 44%, rgba(92, 170, 245, 0.24), transparent 46%),
    #03070a;
}

.hero-pinned .sequence-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  grid-column: auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  perspective: none;
}

.hero-sequence-canvas,
.hero-sequence-poster {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 68% 50%;
}

.hero-sequence-canvas {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.hero-sequence-canvas.is-ready {
  opacity: 1;
}

.hero-sequence-poster {
  background: #03070a;
  transition: opacity 0.18s ease;
}

.sequence-stage.is-sequence-ready .hero-sequence-poster {
  opacity: 0;
}

.generated-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(23, 27, 31, 0), rgba(23, 27, 31, 0.18));
  pointer-events: none;
}

.hero-pinned .sequence-stage::after {
  z-index: 3;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.06), transparent 48%),
    linear-gradient(180deg, rgba(3, 7, 10, 0) 0%, rgba(3, 7, 10, 0.08) 48%, rgba(3, 7, 10, 0.58) 100%);
}

.hero-content {
  position: absolute;
  z-index: 5;
  inset: 0 auto 0 0;
  box-sizing: border-box;
  width: min(46vw, 680px);
  height: 100%;
  padding: clamp(32px, 6vh, 72px) 0 clamp(28px, 6vh, 64px) clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.hero-status {
  align-self: start;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: none;
}

.hero-message {
  align-self: center;
  display: grid;
  gap: 18px;
  max-width: 680px;
}

.hero-content h1 {
  max-width: 680px;
  font-size: clamp(64px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subline {
  max-width: 620px;
  margin: 0;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.86);
}

.catalog-hero {
  padding: 26px 0 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #15191c;
  background-size: 25% 100%, 25% 100%, auto;
  color: #fff;
}

.catalog-hero .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: end;
}

.catalog-hero-grid > *,
.catalog-group,
.catalog-group-head,
.catalog-list,
.product-card,
.product-body {
  min-width: 0;
}

.catalog-hero h1 {
  max-width: 760px;
  overflow-wrap: anywhere;
  font-size: clamp(32px, 3.6vw, 48px);
}

.catalog-hero .lead {
  margin-top: 10px;
  max-width: 640px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.catalog-hero-actions {
  display: grid;
  gap: 10px;
}

.catalog-hero .btn.ghost {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.catalog-section {
  padding-top: 16px;
}

.hero-content .hero-actions {
  align-self: end;
  gap: 14px;
  margin: 0;
  width: min(100%, 620px);
}

.hero-content .btn {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
  text-shadow: none;
  pointer-events: auto;
}

.hero-content .btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.main-scroll-scene {
  height: 720svh;
  background: #03070a;
}

.main-sequence-stage {
  background: #03070a;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.main-sequence-stage .hero-sequence-poster,
.main-sequence-stage .hero-sequence-canvas {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.18);
  transform-origin: center center;
}

.main-scroll-scene .hero-pinned::before {
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(3, 7, 10, 0.94) 0%,
    rgba(3, 7, 10, 0.78) 35%,
    rgba(3, 7, 10, 0.15) 65%,
    rgba(3, 7, 10, 0) 100%
  );
}

.main-scroll-scene .sequence-stage::after {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.72) 0%, rgba(3, 7, 10, 0.36) 38%, rgba(3, 7, 10, 0.08) 68%, rgba(3, 7, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.05) 0%, rgba(3, 7, 10, 0.14) 52%, rgba(3, 7, 10, 0.72) 100%);
}

@media (max-height: 820px) and (min-width: 761px) {
  .hero-content {
    padding-top: clamp(22px, 4vh, 40px);
    padding-bottom: clamp(22px, 4vh, 40px);
  }

  .hero-message {
    gap: 14px;
  }

  .hero-content h1 {
    font-size: clamp(48px, 4.2vw, 56px);
    line-height: 1.02;
  }

  .hero-content .hero-subline {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.34;
  }
}

.floating-panel {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(20, 33, 43, 0.12);
  backdrop-filter: blur(14px);
}

.floating-panel span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.floating-panel strong {
  line-height: 1.15;
}

.panel-top {
  top: 24px;
  left: 24px;
}

.panel-bottom {
  right: 24px;
  bottom: 24px;
}

.hero-problems {
  padding: 0 0 64px;
}

.hero-problem-section {
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    #2c3236;
  background-size: calc(100% / 4) 100%, calc(100% / 4) 100%, auto;
}

.hero-problem-section .hero-problems {
  padding-top: 0;
}

.problem-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.problem-board article {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.problem-board article:last-child {
  border-right: 0;
}

.problem-board span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 900;
}

.problem-board h3,
.problem-board p {
  margin: 0;
  color: #fff;
}

.problem-board p {
  color: rgba(255, 255, 255, 0.8);
}

.inner-hero:not(.garden):not(.fog) .kicker {
  color: rgba(255, 255, 255, 0.88);
}

.inner-hero:not(.garden):not(.fog) .lead {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a,
.breadcrumbs span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.section {
  padding: 82px 0;
}

.section.soft {
  background:
    linear-gradient(180deg, var(--surface-soft), var(--page));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.decision-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
}

.decision-card.primary-path {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}

.decision-card .eyebrow {
  margin-bottom: 18px;
}

.decision-card.primary-path .eyebrow,
.decision-card.primary-path p {
  color: rgba(255, 255, 255, 0.76);
}

.decision-card h3 {
  font-size: 28px;
}

.decision-card p {
  color: var(--muted);
}

.decision-card .btn {
  margin-top: auto;
}

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

.comparison-panel article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(23, 27, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 27, 31, 0.055) 1px, transparent 1px),
    #fff;
  background-size: 33.333% 100%, 33.333% 100%, auto;
  padding: 32px;
}

.comparison-panel article.accent {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    var(--green);
  color: #fff;
}

.comparison-panel article.accent .eyebrow,
.comparison-panel article.accent p {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-panel h3 {
  font-size: 34px;
}

.comparison-panel p {
  max-width: 560px;
  color: var(--muted);
}

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

.metrics-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.metrics-grid strong {
  font-size: 42px;
  line-height: 1;
  color: var(--blue-dark);
}

.metrics-grid p {
  margin: 20px 0 0;
  color: var(--muted);
}

.geo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
}

.geo-panel h3 {
  font-size: 34px;
}

.geo-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.proof-strip article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.proof-strip p {
  margin: 14px 0 0;
  color: var(--muted);
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.process-ribbon article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.process-ribbon article:last-child {
  border-right: 0;
}

.process-ribbon span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.process-ribbon p {
  margin: 0;
  color: var(--muted);
}

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

.visual-case-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.visual-case-grid article > div {
  height: 260px;
  background: var(--soft);
}

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

.visual-case-grid h3,
.visual-case-grid p {
  margin-left: 22px;
  margin-right: 22px;
}

.visual-case-grid h3 {
  margin-top: 22px;
}

.visual-case-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.card-grid,
.product-grid,
.document-grid,
.contact-grid,
.detail-grid,
.source-grid,
.related-article-grid,
.solution-index-grid,
.solution-page-grid,
.legal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.source-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.related-article-grid,
.solution-index-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.solution-page-grid {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  align-items: start;
}

.legal-list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.card-grid.two,
.product-grid.two {
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
}

.card,
.product-card,
.doc-card,
.contact-grid article,
.detail-grid article,
.source-card,
.related-article-card,
.solution-sidebar,
.legal-list article,
.detail-checklist,
.scenario-card,
.text-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.source-card,
.related-article-card,
.solution-sidebar,
.legal-list article,
.detail-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.source-card h3,
.related-article-card h3,
.solution-sidebar h3,
.legal-list h3,
.detail-checklist h3 {
  margin: 0;
}

.source-card p,
.related-article-card p,
.solution-sidebar p,
.legal-list p,
.detail-checklist li,
.text-panel li {
  color: var(--muted);
}

.source-card a,
.related-article-card a {
  margin-top: auto;
  font-weight: 800;
  color: var(--accent-strong);
}

.detail-checklist ul,
.text-panel ul {
  margin: 0;
  padding-left: 20px;
}

.detail-checklist li + li,
.text-panel li + li {
  margin-top: 8px;
}

.card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card h3 {
  margin-top: 0;
}

.card p,
.product-card p,
.doc-card p,
.contact-grid p,
.detail-grid p,
.text-panel p {
  color: var(--muted);
}

.card p {
  margin: 12px 0 0;
}

.card .btn {
  margin-top: auto;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #eef3f0;
  color: var(--blue-dark);
  font-weight: 900;
}

.card-media {
  margin: -24px -24px 20px;
  height: 180px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--soft);
}

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

.card-media picture,
.product-image picture,
.inner-media picture,
.visual-case-grid picture {
  width: 100%;
  height: 100%;
}

.card-grid.dense .card {
  min-height: 0;
}

.card-grid.dense .card-media {
  height: 190px;
}

.task-grid .card {
  min-height: 180px;
}

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

.scenario-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.scenario-card > div:first-child {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef1f2;
}

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

.scenario-card.fog > div:first-child img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.compact-grid .card {
  min-height: 190px;
}

.compact-feature .feature-media {
  display: grid;
  place-items: center;
}

.compact-feature .feature-media img {
  max-height: 300px;
  object-fit: contain;
}

.compact-fog .tag-list {
  margin-bottom: 4px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.story-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.story-grid article:first-child {
  background:
    linear-gradient(135deg, rgba(23, 27, 31, 0.08), rgba(88, 115, 107, 0.16)),
    #fff;
}

.story-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 900;
}

.story-grid p {
  color: var(--muted);
}

.split-cards.compact .scenario-card {
  display: block;
}

.feature-layout,
.fog-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: center;
}

.feature-media {
  border-radius: 8px;
  background: #eef1f2;
  padding: 28px;
}

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

.check-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tag-list,
.segment-grid,
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segment-grid.large span {
  min-width: 190px;
}

.fog-panel > div:first-child {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fog-panel img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.garden {
  align-items: stretch;
}

.garden > div:first-child {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 8px;
  background: #eef3f0;
  overflow: hidden;
}

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

.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border-color: rgba(23, 27, 31, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 249, 0.96));
  box-shadow: 0 14px 34px rgba(23, 27, 31, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(63, 105, 90, 0.34);
  box-shadow: 0 24px 54px rgba(23, 27, 31, 0.12);
}

.product-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 13px 14px;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #edf3ef 0%, #e7eee8 100%);
  overflow: hidden;
}

.product-image picture {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  filter: none;
  transition: transform 0.28s ease;
}

.product-card-top {
  display: grid;
  gap: 5px;
}

.product-card .eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.product-price {
  margin: 0;
  color: #121719;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.product-card h3 {
  min-height: 40px;
  display: -webkit-box;
  margin-top: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card h3 a {
  color: inherit;
}

.product-description {
  min-height: 46px;
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card:hover .product-image img,
.product-card:focus-within .product-image img {
  transform: scale(1.018);
}

.product-badges {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 0;
  margin: 0;
  overflow: visible;
}

.product-badges span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23, 27, 31, 0.06);
  border-radius: 999px;
  background: #eef2ef;
  padding: 3px 8px;
  color: #32413c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: none;
}

.product-card dl,
.product-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 2px 0 0;
}

.product-card dl div {
  display: grid;
  gap: 2px;
  padding: 8px 9px;
  border-radius: 8px;
  background: var(--soft);
}

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

.product-card dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.product-buyline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: auto;
}

.product-volume {
  max-width: 92px;
  margin: 0;
  border-radius: 999px;
  background: #eef2ef;
  padding: 5px 9px;
  color: #4d5a58;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}

.product-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
}

.catalog-filters {
  margin-bottom: 18px;
}

.catalog-groups {
  display: grid;
  gap: clamp(24px, 3.5vw, 48px);
}

.catalog-group {
  scroll-margin-top: calc(var(--header-height, 96px) + 18px);
}

.catalog-group-head {
  margin-bottom: 18px;
}

.catalog-group-head h2 {
  max-width: 900px;
  overflow-wrap: anywhere;
  font-size: clamp(28px, 3vw, 44px);
}

.catalog-group-head p:not(.kicker) {
  max-width: 860px;
  overflow-wrap: anywhere;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
}

.catalog-list.product-grid {
  align-items: stretch;
}

.catalog-list .product-card {
  min-height: 100%;
}

.catalog-list .product-card.is-filtered-out {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  pointer-events: none;
}

.catalog-list .product-image {
  position: relative;
  min-height: 0;
  height: auto;
  border-radius: 14px 14px 0 0;
}

.catalog-list .product-image img {
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center center;
}

.catalog-list .product-image picture {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
}

.catalog-list .product-body {
  padding: 12px 13px 14px;
}

.catalog-list .product-card h3 {
  font-size: 16px;
}

.catalog-list .product-card dl {
  margin-top: 0;
}

.catalog-list .product-actions {
  margin-top: auto;
}

.catalog-list .product-actions .btn {
  width: 100%;
  min-height: 42px;
  min-width: 0;
  padding: 0 12px;
  font-size: 14px;
}

.catalog-service-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #171b1f;
  color: #fff;
}

.catalog-service-media {
  min-height: 260px;
}

.catalog-service-media picture,
.catalog-service-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.catalog-service-media img {
  object-fit: cover;
}

.catalog-service-body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 36px);
}

.catalog-service-body .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.catalog-service-body h3 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
}

.catalog-service-body p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.catalog-service-body .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.catalog-service-body .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-filters button,
.catalog-filters a {
  cursor: pointer;
  font: inherit;
}

.catalog-filters a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.catalog-filters button.active,
.catalog-filters a:hover,
.catalog-filters a:focus-visible {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}

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

.steps div {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(88, 115, 107, 0.28), transparent 30%),
    linear-gradient(135deg, #15191c, #202723);
  color: #fff;
}

.form-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form .kicker {
  color: #cfd8d4;
}

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

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 12px;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(183, 138, 79, 0.18);
  outline: none;
}

.lead-form option {
  color: var(--ink);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.consent {
  grid-column: 2;
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.consent label {
  color: rgba(255, 255, 255, 0.72);
}

.consent a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form > .btn {
  grid-column: 2;
  justify-self: start;
  min-height: 52px;
  background: #fff;
  color: #15191c;
  border-color: #fff;
}

.lead-form > .btn:hover,
.lead-form > .btn:focus-visible {
  background: #f3e2bd;
  border-color: #f3e2bd;
}

.form-status {
  grid-column: 2;
  margin: 0;
  color: #dfe7e3;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.doc-card a {
  color: var(--blue-dark);
  font-weight: 800;
}

.inner-media {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.inner-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  padding: 20px;
}

.inner-media img[src$=".jpg"],
.inner-media img[src$=".jpeg"] {
  object-fit: cover;
  padding: 0;
}

.mobile-sticky {
  display: none;
}

.site-footer {
  background: #15191c;
  color: #fff;
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 28px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
}

.site-footer h2 {
  font-size: 18px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-list-section {
  padding-top: 34px;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(23, 27, 31, 0.08);
}

.blog-card-media {
  display: block;
  align-self: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: var(--surface-soft);
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.blog-card-body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
}

.blog-card-body h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.blog-card-body p {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.blog-card-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-empty {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 32px;
}

.article-hero {
  padding: 64px 0 34px;
  background: linear-gradient(180deg, #eef3f0 0%, #f5f6f7 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(620px, 0.82fr);
  gap: 46px;
  align-items: center;
}

.article-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(30px, 2.75vw, 42px);
  line-height: 1.08;
}

.article-hero-copy .lead {
  max-width: 780px;
  color: var(--text-muted);
  font-size: clamp(17px, 2vw, 22px);
}

.article-hero-media {
  width: min(100%, 820px);
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(23, 27, 31, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.article-body {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 4vw, 52px);
  box-shadow: 0 18px 44px rgba(23, 27, 31, 0.08);
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2 {
  margin: 42px 0 16px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
}

.article-body h3 {
  margin: 28px 0 12px;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.16;
}

.article-body p,
.article-body li {
  color: #2b3237;
  font-size: 18px;
}

.article-body a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--surface-soft);
}

.article-body figure {
  margin: 28px 0;
}

.article-body img {
  width: 100%;
  border-radius: 8px;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 14px;
}

.article-aside-box,
.article-aside-links {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.article-aside-box h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.article-aside-box p {
  color: var(--text-muted);
}

.article-aside-links {
  display: grid;
  gap: 8px;
}

.article-aside-links a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.article-aside-links a:last-child {
  border-bottom: 0;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 72px;
  }

  .header-grid {
    grid-template-columns: 166px minmax(0, 1fr) 156px;
    gap: 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 168px;
  }

  .hero-scroll-scene {
    height: 320svh;
  }

  .main-scroll-scene {
    height: 680svh;
  }

  .hero-pinned {
    position: sticky;
    min-height: calc(100svh - var(--header-height));
    height: calc(100svh - var(--header-height));
  }

  .header-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .inner-hero-grid,
  .section-head,
  .feature-layout,
  .fog-panel,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .inner-hero-grid > div:first-child,
  .inner-media {
    grid-column: 1 / -1;
  }

  .generated-stage {
    grid-column: 1 / -1;
  }

  .hero-pinned .sequence-stage {
    grid-column: auto;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .trust-row,
  .steps,
  .footer-grid,
  .metrics-grid,
  .process-ribbon,
  .decision-grid,
  .visual-case-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hero-grid,
  .geo-panel {
    grid-template-columns: 1fr;
  }

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

  .problem-board article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .problem-board article:last-child {
    border-bottom: 0;
  }

  .process-ribbon article:nth-child(2) {
    border-right: 0;
  }

  .consent,
  .lead-form > .btn,
  .form-status {
    grid-column: 1;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .main-scroll-scene .hero-sequence-poster,
  .main-scroll-scene .hero-sequence-canvas {
    transform: scale(1.22);
  }

  .hero-content {
    width: min(54vw, 680px);
    padding-left: clamp(24px, 4vw, 44px);
  }

  .hero-content h1 {
    font-size: clamp(42px, 5.5vw, 48px);
  }

  .hero-content .hero-subline {
    max-width: 420px;
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 102px;
  }

  .container {
    width: min(calc(100% - 24px), 1180px);
  }

  .header-grid {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 162px);
    grid-template-areas:
      "logo actions"
      "nav nav";
    gap: 8px 10px;
    align-items: center;
    padding: 8px 0;
  }

  .logo {
    grid-area: logo;
  }

  .section {
    padding: 56px 0;
  }

  .hero-grid,
  .inner-hero-grid {
    gap: 20px;
    padding: 30px 0;
  }

  .inner-media img {
    height: 180px;
    padding: 12px;
  }

  .inner-media img[src$=".jpg"],
  .inner-media img[src$=".jpeg"] {
    padding: 0;
  }

  h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

  .product-stage {
    min-height: 280px;
  }

  .generated-stage {
    min-height: 390px;
  }

  .hero-pinned .sequence-stage {
    min-height: 100%;
  }

  .hero-scroll-scene {
    height: auto;
    min-height: calc(100svh - var(--header-height));
  }

  .main-scroll-scene {
    height: 620svh;
    min-height: calc(100svh - var(--header-height));
  }

  .hero-pinned {
    position: relative;
    top: auto;
    min-height: calc(100svh - var(--header-height));
    height: calc(100svh - var(--header-height));
  }

  .main-scroll-scene .hero-pinned {
    position: sticky;
    top: var(--header-height);
  }

  .hero-pinned::before {
    background:
      linear-gradient(180deg, rgba(3, 7, 10, 0.14) 0%, rgba(3, 7, 10, 0.08) 30%, rgba(3, 7, 10, 0.44) 58%, rgba(3, 7, 10, 0.68) 100%);
  }

  .hero-pinned .sequence-stage {
    opacity: 0.92;
  }

  .hero-pinned .sequence-stage::after {
    background:
      linear-gradient(180deg, rgba(3, 7, 10, 0.02) 0%, rgba(3, 7, 10, 0.04) 34%, rgba(3, 7, 10, 0.3) 62%, rgba(3, 7, 10, 0.58) 100%);
  }

  .hero-sequence-poster,
  .hero-sequence-canvas {
    object-position: 50% 50%;
    transform: translate(64px, -270px) scale(0.9);
  }

  .main-scroll-scene .hero-sequence-poster,
  .main-scroll-scene .hero-sequence-canvas {
    object-position: 56% 50%;
    transform: scale(1.32);
    opacity: 0.9;
  }

  .hero-content {
    inset: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: clamp(20px, 4vh, 34px) 18px clamp(24px, 6vh, 48px);
    z-index: 5;
  }

  .hero-status {
    font-size: 12.5px;
  }

  .hero-message {
    align-self: start;
    gap: 12px;
    max-width: min(100%, 360px);
    padding-top: clamp(72px, 16svh, 118px);
  }

  .hero-content h1 {
    max-width: 360px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.05;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.7);
  }

  .hero-content .hero-subline {
    max-width: 340px;
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.36;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
  }

  .hero-content .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-content .btn {
    width: 100%;
    min-height: 52px;
  }

  .floating-panel {
    max-width: 190px;
    padding: 12px;
  }

  .product-canister {
    width: 56%;
    right: 2%;
  }

  .product-spray {
    width: 46%;
    left: 2%;
  }

  .card-grid,
  .card-grid.two,
  .product-grid,
  .product-grid.two,
  .document-grid,
  .contact-grid,
  .detail-grid,
  .source-grid,
  .related-article-grid,
  .solution-index-grid,
  .solution-page-grid,
  .legal-list,
  .split-cards,
  .decision-grid,
  .comparison-panel,
  .metrics-grid,
  .process-ribbon,
  .visual-case-grid,
  .proof-strip,
  .geo-panel,
  .trust-row,
  .steps,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-problems {
    padding-bottom: 42px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .decision-card,
  .metrics-grid article,
  .process-ribbon article {
    min-height: 0;
  }

  .comparison-panel article {
    min-height: 280px;
  }

  .process-ribbon article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-ribbon article:last-child {
    border-bottom: 0;
  }

  .visual-case-grid article > div,
  .visual-case-grid img {
    height: 220px;
  }

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

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

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

  .blog-card,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-card-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .blog-card-body {
    padding: 20px;
  }

  .article-hero {
    padding: 34px 0 22px;
  }

  .article-hero-media {
    width: 100%;
    justify-self: stretch;
  }

  .article-hero-copy h1 {
    font-size: 30px;
  }

  .article-body {
    padding: 22px 18px;
  }

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

  .article-aside {
    position: static;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
    font-size: clamp(10px, 2.8vw, 11.5px);
  }

  .main-nav a {
    display: none;
  }

  .main-nav a:nth-child(1),
  .main-nav a:nth-child(2),
  .main-nav a:nth-child(6),
  .main-nav a:nth-child(7) {
    display: flex;
  }

  .main-nav a {
    min-height: 34px;
    min-width: 0;
    padding: 0 4px;
    white-space: normal;
  }

  .header-actions {
    grid-area: actions;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: end;
  }

  .header-actions .btn,
  .header-actions .header-contact {
    width: min(100%, 188px);
    min-width: 0;
    padding: 0 10px;
    font-size: 12px;
  }

  .header-contact {
    justify-content: center;
    padding: 0 10px;
    font-size: 12px;
  }

  .catalog-hero {
    padding: 20px 0 18px;
    overflow: hidden;
  }

  .catalog-hero h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .catalog-hero .lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .catalog-hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-hero-actions .btn {
    min-height: 48px;
    padding: 0 8px;
    font-size: 12px;
  }

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

  .catalog-filters {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .catalog-filters button,
  .catalog-filters a {
    flex: 0 0 auto;
  }

  .catalog-list.product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .catalog-list .product-image {
    height: auto;
    min-height: 0;
  }

  .catalog-list .product-image picture {
    inset: 0;
  }

  .catalog-list .product-image img {
    width: 100%;
    height: 100%;
  }

  .catalog-list .product-card {
    border-radius: 12px;
  }

  .catalog-list .product-body {
    gap: 8px;
    padding: 9px;
  }

  .catalog-list .product-card h3 {
    min-height: 34px;
    font-size: 13.5px;
    line-height: 1.18;
    -webkit-line-clamp: 2;
  }

  .catalog-list .product-price {
    font-size: 16px;
  }

  .catalog-list .product-buyline {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .catalog-list .product-volume {
    width: fit-content;
    max-width: 100%;
    padding: 4px 8px;
    font-size: 10.5px;
    text-align: left;
  }

  .catalog-list .product-badges span {
    min-height: 20px;
    padding: 2px 6px;
    font-size: 10px;
  }

  .catalog-list .product-card dl div {
    padding: 7px 8px;
  }

  .catalog-list .product-actions .btn {
    min-height: 36px;
    border-radius: 9px;
    font-size: 12px;
  }

  .catalog-group-head p:not(.kicker) {
    font-size: 16px;
  }

  .catalog-group-head h2 {
    font-size: 27px;
    line-height: 1.1;
  }

  .catalog-list .product-description {
    min-height: 0;
    -webkit-line-clamp: 2;
  }

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

  .catalog-service-media {
    min-height: 190px;
  }

  .catalog-service-body .product-actions {
    display: grid;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
  }

  .mobile-sticky {
    position: sticky;
    bottom: 10px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 12px 12px;
  }
}

@media (max-width: 520px) {
  .main-scroll-scene .hero-pinned::before {
    background:
      linear-gradient(90deg, rgba(3, 7, 10, 0.52) 0%, rgba(3, 7, 10, 0.32) 42%, rgba(3, 7, 10, 0.06) 74%, rgba(3, 7, 10, 0) 100%),
      linear-gradient(180deg, rgba(3, 7, 10, 0.02) 0%, rgba(3, 7, 10, 0.04) 42%, rgba(3, 7, 10, 0.3) 100%);
  }

  .main-scroll-scene .hero-sequence-poster,
  .main-scroll-scene .hero-sequence-canvas {
    transform: scale(1.36);
    opacity: 0.9;
  }

  .hero-message {
    padding-top: clamp(72px, 16svh, 118px);
  }

  .hero-content h1 {
    max-width: 330px;
    font-size: 36px;
  }

  .hero-content .hero-subline {
    max-width: 300px;
  }
}

.sidarin-page {
  background: #f3f5f4;
}

.sidarin-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #0b0f12 0%, #171d1f 48%, #27322d 100%);
  background-size: calc(100% / 4) 100%, calc(100% / 4) 100%, auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidarin-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.16) 0%, rgba(3, 7, 10, 0.02) 52%, rgba(3, 7, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.sidarin-hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(64px, 9svh, 112px) 0;
}

.sidarin-hero-copy {
  max-width: 760px;
}

.sidarin-hero .kicker {
  color: rgba(255, 255, 255, 0.66);
}

.sidarin-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.02;
}

.sidarin-hero .lead {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.42;
}

.sidarin-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sidarin-proof-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
}

.sidarin-hero .hero-actions {
  margin-top: 34px;
}

.sidarin-hero .btn {
  min-width: 190px;
}

.sidarin-hero .btn.secondary {
  background: #6b7f73;
}

.sidarin-hero .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.sidarin-hero-visual {
  position: relative;
  min-height: clamp(520px, 58svh, 680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.16) 100%);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.28);
}

.sidarin-visual-label {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  z-index: 3;
  display: grid;
  gap: 6px;
  max-width: 360px;
}

.sidarin-visual-label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidarin-visual-label strong {
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.sidarin-visual-products {
  position: absolute;
  inset: 90px 20px 24px;
}

.sidarin-visual-products picture {
  position: absolute;
  display: block;
}

.sidarin-visual-products img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.36));
}

.sidarin-visual-products picture:first-child {
  left: 2%;
  bottom: 5%;
  width: 52%;
  opacity: 0.92;
  transform: rotate(-3deg);
}

.sidarin-visual-products picture:last-child {
  right: 7%;
  bottom: 5%;
  z-index: 2;
  width: 45%;
  transform: rotate(7deg);
}

.sidarin-assurance-section {
  padding: 0;
  background: #171b1f;
  color: #fff;
}

.sidarin-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidarin-assurance-grid article {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidarin-assurance-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #171b1f;
  background: #d9c49e;
  font-weight: 900;
}

.sidarin-assurance-grid h2 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.sidarin-assurance-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.sidarin-section {
  padding: clamp(76px, 9vw, 120px) 0;
}

.sidarin-section .section-head {
  margin-bottom: 30px;
}

.sidarin-section .section-head h2 {
  max-width: 880px;
}

.sidarin-section .section-head p {
  max-width: 760px;
}

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

.sidarin-use-grid article {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 27, 31, 0.08);
}

.sidarin-use-media {
  min-height: 310px;
  background: #e8ecef;
}

.sidarin-use-media picture,
.sidarin-use-media img {
  width: 100%;
  height: 100%;
}

.sidarin-use-media img {
  object-fit: cover;
}

.sidarin-use-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 3.5vw, 38px);
}

.sidarin-use-copy h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.sidarin-use-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.sidarin-product-showcase {
  display: grid;
  gap: 24px;
}

.sidarin-product-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.sidarin-product-intro h3 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
}

.sidarin-product-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.sidarin-product-grid .product-card {
  background: rgba(255, 255, 255, 0.92);
}

.sidarin-product-grid .product-image {
  background:
    linear-gradient(135deg, rgba(88, 115, 107, 0.18), rgba(217, 196, 158, 0.28)),
    #f0f2f1;
}

.sidarin-method-panel,
.sidarin-decision-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sidarin-method-panel article,
.sidarin-decision-panel article {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 18px 44px rgba(23, 27, 31, 0.08);
}

.sidarin-method-panel article:first-child,
.sidarin-decision-panel article:first-child {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(88, 115, 107, 0.2), rgba(178, 133, 75, 0.12)),
    #171b1f;
}

.sidarin-method-panel article:first-child .eyebrow,
.sidarin-decision-panel article:first-child .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.sidarin-method-panel article:first-child p:not(.eyebrow),
.sidarin-decision-panel article:first-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.sidarin-method-panel h3,
.sidarin-decision-panel h3 {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 42px);
}

.sidarin-method-panel p:not(.eyebrow),
.sidarin-decision-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.sidarin-decision-panel .btn {
  justify-self: start;
  margin-top: 8px;
}

.sidarin-final-form {
  background: #171b1f;
}

@media (max-width: 1060px) {
  .sidarin-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 0;
  }

  .sidarin-hero-copy {
    max-width: 840px;
  }

  .sidarin-hero-visual {
    min-height: 500px;
  }

  .sidarin-assurance-grid,
  .sidarin-use-grid,
  .sidarin-method-panel,
  .sidarin-decision-panel {
    grid-template-columns: 1fr;
  }

  .sidarin-use-grid article {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  }

  .sidarin-product-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .breadcrumbs {
    display: none;
  }

  .sidarin-hero-grid {
    padding: 42px 0;
  }

  .sidarin-hero-copy,
  .sidarin-hero h1,
  .sidarin-hero .lead,
  .sidarin-proof-chips {
    max-width: 100%;
  }

  .sidarin-hero h1 {
    max-width: 340px;
    font-size: clamp(34px, 9.2vw, 39px);
  }

  .sidarin-hero .lead {
    max-width: 342px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .sidarin-proof-chips {
    gap: 8px;
  }

  .sidarin-proof-chips span {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 13px;
    line-height: 1.28;
  }

  .sidarin-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sidarin-hero .btn {
    width: 100%;
  }

  .sidarin-hero-visual {
    min-height: 390px;
  }

  .sidarin-visual-label {
    left: 18px;
    right: 18px;
    top: 18px;
  }

  .sidarin-visual-products {
    inset: 96px 12px 18px;
  }

  .sidarin-visual-products picture:first-child {
    left: 0;
    width: 56%;
  }

  .sidarin-visual-products picture:last-child {
    right: 7%;
    width: 42%;
  }

  .sidarin-assurance-grid {
    border-left: 0;
  }

  .sidarin-assurance-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sidarin-use-grid article {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .sidarin-use-media {
    min-height: 220px;
  }

  .sidarin-use-copy {
    align-content: start;
  }

  .sidarin-method-panel article,
  .sidarin-decision-panel article {
    min-height: 260px;
  }

  .sidarin-decision-panel .btn {
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
