/*
  LIVON AGRÍCOLA — SITE COMPLETO, VERSÃO 70
  Folha de estilos autônoma. Não depende de frameworks ou conexão externa.
  Edite as variáveis abaixo para ajustar rapidamente a identidade visual.
*/

:root {
  --ink: #202720;
  --muted: #667067;
  --line: rgba(31, 68, 40, 0.12);
  --green: #326d3d;
  --green-dark: #123f23;
  --green-deep: #071c0f;
  --lime: #82b946;
  --paper: #f9fbf9;
  --sage: #dfe9df;
  --glass: rgba(252, 253, 252, 0.82);
  --font-action: "Inter Variable", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  background-image:
    radial-gradient(circle at 6% 4%, rgba(255, 255, 255, 0.92), transparent 32rem),
    radial-gradient(circle at 94% 18%, rgba(177, 205, 180, 0.42), transparent 34rem),
    linear-gradient(180deg, rgba(238, 244, 239, 0.9) 0%, rgba(223, 233, 223, 0.88) 48%, rgba(237, 243, 237, 0.9) 100%),
    url("assets/site-background-leaves.png");
  background-position: center, center, center, center top;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: scroll, scroll, scroll, fixed;
  color: var(--ink);
  font-family: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: -18%;
  background: url("assets/site-foreground-leaves.png") center top / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.3;
  transform: translate3d(0, var(--foreground-parallax, 0px), 0);
  will-change: transform;
  pointer-events: none;
}

p { font-family: var(--font-action); }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.scroll-reactive-image:not(.hero-product-banner-image) {
  filter: blur(var(--scroll-blur, 0px)) contrast(var(--scroll-contrast, 1));
  transform: translateZ(0);
  will-change: filter;
}
.scroll-grain-host { position: relative; isolation: isolate; }
.scroll-grain-host::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 17% 23%, rgba(255, 255, 255, 0.7) 0 0.55px, transparent 0.8px 3px),
    repeating-radial-gradient(circle at 73% 61%, rgba(0, 0, 0, 0.55) 0 0.45px, transparent 0.75px 2.6px);
  mix-blend-mode: soft-light;
  opacity: var(--scroll-noise, 0);
  pointer-events: none;
  transition: opacity 80ms linear;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.motion-enabled .page-entry {
  opacity: 1;
  translate: 0 0;
}

html.motion-enabled .page-entry.page-entry-visible {
  animation: page-entry-from-bottom 1250ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--entry-delay, 0ms);
}

html.motion-enabled .page-entry.page-entry-from-top.page-entry-visible {
  animation-name: page-entry-from-top;
}

html.motion-enabled .page-entry.line-entry-text.page-entry-visible {
  animation: none;
}

@keyframes page-entry-from-bottom {
  from { opacity: 0; translate: 0 30px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes page-entry-from-top {
  from { opacity: 0; translate: 0 -30px; }
  to { opacity: 1; translate: 0 0; }
}

main { position: relative; z-index: 1; min-height: 100vh; overflow: clip; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 6px;
}

.site-shell {
  width: min(1480px, calc(100% - 42px));
  margin: 0 auto;
  padding: 24px 0 74px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: var(--glass);
  box-shadow: 0 24px 70px rgba(43, 69, 49, 0.11), inset 0 1px 0 #fff;
  backdrop-filter: blur(24px);
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: calc(100% - 18px);
  min-height: 89px;
  margin: 0 auto;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 57px;
  background: rgba(245, 249, 246, 0.5);
  box-shadow: 0 14px 45px rgba(30, 61, 39, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(28px) saturate(125%);
  backdrop-filter: blur(28px) saturate(125%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo { width: auto; height: 44px; padding-top: 6px; object-fit: contain; }

.desktop-nav { display: flex; align-items: center; gap: 34px; font-family: var(--font-action); }
.desktop-nav a {
  position: relative;
  color: #5f685f;
  font-size: 16px;
  transition: color 0.25s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--green);
  transition: right 0.25s ease;
}
.desktop-nav a:hover { color: var(--green-dark); }
.desktop-nav a:hover::after { right: 0; }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-product {
  padding: 10px 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, white);
  color: color-mix(in srgb, var(--accent) 78%, black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(28, 76, 42, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 650;
}
.nav-cta svg { width: 16px; height: 16px; }

.mobile-menu { display: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 1px; background: currentColor; }
.eyebrow-light { color: rgba(255, 255, 255, 0.69); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-light { background: #fff; color: var(--green-dark); box-shadow: 0 13px 35px rgba(0, 0, 0, 0.22); }
.button-light:hover { background: #eef6ee; }
.button-outline-light { border: 1px solid rgba(255, 255, 255, 0.32); color: #fff; background: rgba(255, 255, 255, 0.06); }

@property --hero-start { syntax: "<color>"; inherits: true; initial-value: #06180d; }
@property --hero-mid { syntax: "<color>"; inherits: true; initial-value: #174426; }
@property --hero-end { syntax: "<color>"; inherits: true; initial-value: #07160c; }
@property --hero-text { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
@property --hero-muted { syntax: "<color>"; inherits: true; initial-value: rgba(255, 255, 255, 0.72); }
@property --hero-button-bg { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
@property --hero-button-text { syntax: "<color>"; inherits: true; initial-value: #123f23; }
@property --hero-title-a { syntax: "<color>"; inherits: true; initial-value: #ffffff; }
@property --hero-title-b { syntax: "<color>"; inherits: true; initial-value: #f3f9ef; }
@property --hero-title-c { syntax: "<color>"; inherits: true; initial-value: #d9efc0; }
@property --hero-highlight-a { syntax: "<color>"; inherits: true; initial-value: #b8dd78; }
@property --hero-highlight-b { syntax: "<color>"; inherits: true; initial-value: #86b948; }
@property --hero-body-a { syntax: "<color>"; inherits: true; initial-value: rgba(255, 255, 255, 0.88); }
@property --hero-body-b { syntax: "<color>"; inherits: true; initial-value: rgba(218, 238, 207, 0.72); }
@property --hero-glow { syntax: "<color>"; inherits: true; initial-value: rgba(104, 163, 69, 0.34); }
@property --hero-glow-soft { syntax: "<color>"; inherits: true; initial-value: rgba(137, 188, 86, 0.15); }
@property --hero-shadow { syntax: "<color>"; inherits: true; initial-value: rgba(13, 45, 24, 0.2); }

.home-hero {
  --hero-start: #06180d;
  --hero-mid: #174426;
  --hero-end: #07160c;
  --hero-highlight: #9acc62;
  --hero-glow: rgba(104, 163, 69, 0.34);
  --hero-glow-soft: rgba(137, 188, 86, 0.15);
  --hero-shadow: rgba(13, 45, 24, 0.2);
  --hero-text: #fff;
  --hero-muted: rgba(255, 255, 255, 0.72);
  --hero-button-bg: #fff;
  --hero-button-text: #123f23;
  --hero-title-a: #ffffff;
  --hero-title-b: #f3f9ef;
  --hero-title-c: #d9efc0;
  --hero-highlight-a: #b8dd78;
  --hero-highlight-b: #86b948;
  --hero-body-a: rgba(255, 255, 255, 0.88);
  --hero-body-b: rgba(218, 238, 207, 0.72);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 740px;
  padding: 0;
  border-radius: 39px;
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-mid) 54%, var(--hero-end) 100%);
  box-shadow: 0 30px 80px var(--hero-shadow);
  color: var(--hero-text);
  overflow: hidden;
  transition:
    --hero-start 2400ms ease,
    --hero-mid 2400ms ease,
    --hero-end 2400ms ease,
    --hero-text 2400ms ease,
    --hero-muted 2400ms ease,
    --hero-button-bg 2400ms ease,
    --hero-button-text 2400ms ease,
    --hero-title-a 2400ms ease,
    --hero-title-b 2400ms ease,
    --hero-title-c 2400ms ease,
    --hero-highlight-a 2400ms ease,
    --hero-highlight-b 2400ms ease,
    --hero-body-a 2400ms ease,
    --hero-body-b 2400ms ease,
    --hero-glow 2400ms ease,
    --hero-glow-soft 2400ms ease,
    --hero-shadow 2400ms ease,
    box-shadow 2400ms ease;
}

.home-hero:has(.hero-product-banner[data-scene="milho"]) {
  --hero-start: #1d572c;
  --hero-mid: #568f46;
  --hero-end: #174725;
  --hero-highlight: #d7f08c;
  --hero-glow: rgba(185, 224, 113, 0.28);
  --hero-glow-soft: rgba(225, 245, 173, 0.18);
  --hero-shadow: rgba(24, 80, 38, 0.23);
  --hero-title-a: #ffffff;
  --hero-title-b: #f2fae9;
  --hero-title-c: #d8efa9;
  --hero-highlight-a: #e1f6a8;
  --hero-highlight-b: #b9df70;
  --hero-body-a: rgba(255, 255, 255, 0.9);
  --hero-body-b: rgba(225, 242, 199, 0.76);
}

html.motion-enabled .line-entry-text {
  opacity: 1;
  clip-path: none;
}

html.motion-enabled .line-entry-text.line-entry-visible {
  animation: line-entry-reveal 1450ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--entry-delay, 0ms);
}

@keyframes line-entry-reveal {
  from {
    opacity: 0;
    translate: 0 34px;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    translate: 0 0;
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .line-entry-text { opacity: 1 !important; clip-path: none !important; }
}

.home-hero:has(.hero-product-banner[data-scene="soja"]) {
  --hero-start: #b9d596;
  --hero-mid: #8fba6d;
  --hero-end: #638f50;
  --hero-highlight: #174d28;
  --hero-glow: rgba(255, 255, 255, 0.42);
  --hero-glow-soft: rgba(255, 255, 255, 0.25);
  --hero-shadow: rgba(52, 95, 42, 0.18);
  --hero-text: #11361e;
  --hero-muted: rgba(17, 54, 30, 0.76);
  --hero-button-bg: #123f23;
  --hero-button-text: #fff;
  --hero-title-a: #0c331b;
  --hero-title-b: #174f2a;
  --hero-title-c: #2e6838;
  --hero-highlight-a: #164d27;
  --hero-highlight-b: #347341;
  --hero-body-a: rgba(12, 51, 27, 0.88);
  --hero-body-b: rgba(38, 91, 48, 0.72);
}

.home-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 100%, var(--hero-glow), transparent 40%),
    radial-gradient(circle at 83% 14%, var(--hero-glow-soft), transparent 20rem),
    linear-gradient(120deg, transparent 55%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 74px 72px;
}

.home-hero h1 {
  max-width: 650px;
  margin: 29px 0 0;
  font-size: clamp(54px, 5.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
  background: linear-gradient(115deg, var(--hero-title-a) 8%, var(--hero-title-b) 58%, var(--hero-title-c) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero h1 em {
  background: linear-gradient(115deg, var(--hero-highlight-a), var(--hero-highlight-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.home-hero .eyebrow-light { color: var(--hero-muted); transition: color 900ms ease; }
.home-hero .button-light { background: var(--hero-button-bg); color: var(--hero-button-text); transition: background 2400ms ease, color 2400ms ease, transform 0.22s ease; }
.home-hero-copy > p {
  max-width: 550px;
  margin: 31px 0 0;
  background: linear-gradient(100deg, var(--hero-body-a), var(--hero-body-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 35px; }

.home-hero-gallery {
  position: relative;
  z-index: 2;
  min-height: 740px;
  min-width: 0;
  overflow: hidden;
}

.hero-banner-frame { position: relative; width: 100%; height: 100%; min-height: 740px; overflow: hidden; }
.hero-product-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  --scene-blur: 22px;
  filter: blur(calc(var(--scene-blur) + var(--scroll-blur, 0px))) contrast(var(--scroll-contrast, 1));
  scale: 1.018;
  transition: opacity 2400ms ease, filter 2800ms ease, scale 7000ms ease;
}
.hero-product-banner-image.is-active { --scene-blur: 0px; opacity: 1; scale: 1; }

.hero-banner-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 15, 8, 0.5);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}
.hero-banner-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}
.hero-banner-dots button.is-active { width: 22px; border-radius: 999px; background: #fff; }

.editorial-section {
  margin-top: 18px;
  padding: 62px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 39px;
  background: rgba(253, 254, 253, 0.25);
  box-shadow: 0 25px 70px rgba(45, 68, 49, 0.09);
  -webkit-backdrop-filter: blur(28px) saturate(118%);
  backdrop-filter: blur(28px) saturate(118%);
}
.editorial-heading { display: flex; justify-content: space-between; align-items: center; gap: 30px; color: #69716a; }
.editorial-heading p, .editorial-heading span { margin: 0; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }
.editorial-section > h2 {
  max-width: 1220px;
  margin: 41px 0 55px;
  font-size: clamp(48px, 6.8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
.editorial-section > h2 span { display: block; color: var(--green); }

.product-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.showcase-card {
  --accent: var(--green);
  --accent-soft: #edf5ed;
  display: grid;
  grid-template-rows: 360px 1fr;
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.showcase-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(38, 63, 43, 0.12); }
.showcase-image { position: relative; overflow: hidden; background: #fff; }
.showcase-image::after { content: ""; position: absolute; inset: 68% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.18)); }
.showcase-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; }
.showcase-card:hover .showcase-image img { transform: scale(1.04); }
.showcase-index {
  position: absolute;
  z-index: 1;
  top: 19px;
  right: 19px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--accent) 82%, white);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 88%, black);
  color: #fff;
  font-size: 20px;
  backdrop-filter: blur(12px);
}
.showcase-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; font-size: 20px; }
.showcase-copy > p:first-child { margin: 0 0 9px; color: var(--accent); font-size: 8px; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; }
.showcase-copy h3 { margin: 0; font-size: 38px; letter-spacing: -0.035em; }
.showcase-copy h3 + p { margin: 19px 0 0; color: var(--muted); font-size: 20px; line-height: 1.62; }
.text-link { display: inline-flex; align-items: center; gap: 15px; margin-top: auto; padding-top: 24px; color: var(--accent); font-family: var(--font-action); font-size: 15px; font-weight: 650; }
.text-link svg { width: 17px; height: 17px; transition: transform 0.22s ease; }
.text-link:hover svg { transform: translateX(4px); }

.manifesto-section {
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  gap: 15px;
  margin-top: 18px;
}
.manifesto-copy { min-height: 560px; padding: 70px; border-radius: 38px; }
.section-label { margin: 0; color: var(--green); font-size: 9px; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase; }
.manifesto-copy h2 { max-width: 900px; margin: 35px 0 0; font-size: clamp(53px, 6vw, 88px); font-weight: 500; letter-spacing: -0.055em; line-height: 0.92; }
.manifesto-copy h2 em { color: var(--green); font-style: normal; }
.manifesto-copy > p:last-child { max-width: 720px; margin: 36px 0 0; color: var(--muted); font-size: 25px; line-height: 1.65; }
.manifesto-note {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  padding: 45px;
  border-radius: 38px;
  background: #0d3c20;
  color: #fff;
  box-shadow: 0 24px 65px rgba(21, 69, 36, 0.17);
  isolation: isolate;
  overflow: hidden;
}
.manifesto-parallax-image {
  position: absolute;
  z-index: 0;
  inset: -10%;
  width: 120%;
  max-width: none;
  height: 120%;
  object-fit: cover;
  object-position: 68% center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  will-change: transform, filter;
}
.manifesto-note > span { margin-bottom: auto; color: rgba(255, 255, 255, 0.55); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; }
.manifesto-note strong { font-size: clamp(40px, 4.5vw, 65px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.95; text-align: right; }
.manifesto-note p { margin: 28px 0 0; color: rgba(255, 255, 255, 0.63); font-size: 20px; line-height: 1.65; text-align: right; }

.technology-section, .benefits-section { padding: 132px 2px 10px; }
.section-heading { display: grid; grid-template-columns: 0.65fr 1.25fr 0.9fr; align-items: end; gap: 50px; margin-bottom: 47px; padding: 0 25px; }
.technology-section .section-heading { grid-template-columns: 1.25fr 0.9fr; }
.technology-section .section-heading > p:last-child { justify-self: end; text-align: right; }
.section-heading h2 { margin: 0; font-size: clamp(43px, 4.8vw, 70px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.96; }
.section-heading > p:last-child { max-width: 390px; margin: 0 0 3px; color: var(--muted); font-size: 20px; line-height: 1.7; }

.technology-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.technology-photo-card, .technology-text-card { position: relative; min-height: 390px; border-radius: 28px; overflow: hidden; }
.technology-photo-card { background: #07120a; box-shadow: 0 18px 48px rgba(32, 56, 37, 0.12); }
.technology-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.technology-photo-card:hover img { transform: scale(1.045); }
.technology-text-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 29px; background: #f7faf7; border: 1px solid rgba(255, 255, 255, 0.85); box-shadow: 0 16px 48px rgba(43, 65, 47, 0.08); }
.technology-text-card > span { margin-bottom: auto; color: var(--green); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; }
.technology-text-card h3 { margin: 0; font-size: clamp(28px, 2.6vw, 49px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.99; }
.technology-text-card a { display: inline-flex; align-items: center; gap: 13px; margin-top: 28px; color: var(--green-dark); font-size: 15px; font-weight: 650; }
.technology-text-card a svg { width: 17px; height: 17px; }

.benefits-heading { grid-template-columns: 1.35fr 0.8fr; }
.benefits-heading h2 { text-align: left; }
.benefits-heading > p:last-child { justify-self: end; text-align: right; }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; }
.benefit-grid article { min-height: 300px; padding: 26px; border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 27px; background: rgba(249, 251, 249, 0.74); box-shadow: 0 14px 40px rgba(43, 61, 47, 0.07), inset 0 1px 0 #fff; transition: transform 0.28s ease, background 0.28s ease; }
.benefit-grid article:hover { transform: translateY(-6px); background: rgba(253, 254, 253, 0.95); }
.benefit-number { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 81px; border: 1px solid rgba(42, 94, 56, 0.2); border-radius: 50%; color: var(--green); font-size: 20px; }
.benefit-grid h3 { max-width: 220px; margin: 0; font-size: 30px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.benefit-grid p { margin: 15px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.promise-banner { display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: end; gap: 60px; min-height: 470px; margin-top: 128px; padding: 64px; border: 1px solid rgba(255, 255, 255, 0.88); border-radius: 38px; background: radial-gradient(circle at 84% 20%, rgba(114, 172, 84, 0.2), transparent 22rem), rgba(248, 251, 248, 0.82); box-shadow: 0 22px 65px rgba(42, 65, 46, 0.09); }
.promise-banner p { margin: 0; font-size: clamp(50px, 6vw, 88px); font-weight: 500; letter-spacing: -0.055em; line-height: 0.92; }
.promise-banner strong { color: var(--green); font-weight: 500; }
.promise-banner > span { justify-self: end; max-width: 360px; color: var(--muted); font-size: 20px; line-height: 1.7; text-align: right; }

.contact-section { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 70px; min-height: 520px; margin-top: 18px; padding: 76px; border-radius: 38px; background: radial-gradient(circle at 85% 50%, rgba(104, 164, 69, 0.2), transparent 28rem), linear-gradient(135deg, #071b0f, #153b22); color: #fff; overflow: hidden; box-shadow: 0 30px 80px rgba(12, 50, 24, 0.22); }
.contact-orbit { position: absolute; width: 680px; height: 680px; right: -225px; top: -115px; border: 1px solid rgba(168, 213, 146, 0.15); border-radius: 50%; }
.contact-orbit::before, .contact-orbit::after { content: ""; position: absolute; border: 1px solid rgba(168, 213, 146, 0.12); border-radius: 50%; }
.contact-orbit::before { inset: 75px; }
.contact-orbit::after { inset: 150px; }
.contact-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.contact-copy > p { margin: 0 0 25px; color: #a9c2ae; font-size: 9px; letter-spacing: 0.17em; text-transform: uppercase; }
.contact-copy h2 { max-width: 800px; margin: 0; font-size: clamp(48px, 5vw, 76px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.93; }
.contact-button { margin-top: 37px; background: #fff; color: var(--green-dark); }
.contact-button:hover { background: #edf5ee; }
.contact-section address { position: relative; z-index: 1; display: grid; align-content: end; gap: 23px; margin: 0; font-style: normal; }
.contact-section address > div { display: grid; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, 0.13); }
.contact-section address span { margin-bottom: 9px; color: #86a78d; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-section address a, .contact-section address p { width: max-content; max-width: 100%; margin: 2px 0; color: rgba(255, 255, 255, 0.83); font-size: 15px; line-height: 1.6; }
.contact-section address a:hover { color: #bce09b; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 38px 24px 0; color: #69716a; }
footer > p { margin: 0; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
footer > a:last-child { justify-self: end; font-size: 10px; }

/* Downloads */
.downloads-page {
  background:
    radial-gradient(circle at 92% 8%, rgba(130, 185, 70, 0.2), transparent 34rem),
    radial-gradient(circle at 8% 46%, rgba(50, 109, 61, 0.12), transparent 36rem);
}
.downloads-hero { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; min-height: 600px; margin-top: 18px; padding: 74px 68px; border-radius: 39px; background: linear-gradient(135deg, #0a2816 0%, #174f2b 62%, #6d993d 140%); color: #fff; box-shadow: 0 28px 75px rgba(30, 62, 38, 0.18); overflow: hidden; }
.downloads-hero .section-label { color: #b8d98a; }
.downloads-hero h1 { margin: 35px 0 0; font-size: clamp(72px, 9vw, 132px); font-weight: 500; letter-spacing: -0.07em; line-height: 0.78; }
.downloads-hero h1 em { color: #b8dd78; font-weight: inherit; }
.downloads-hero > p:last-child { max-width: 650px; margin: 42px 0 0; color: rgba(255, 255, 255, 0.76); font-size: 20px; line-height: 1.65; }
.catalog-section { padding: 128px 2px 20px; }
.catalog-heading { display: grid; grid-template-columns: 0.6fr 1.3fr 0.8fr; align-items: end; gap: 48px; margin-bottom: 48px; padding: 0 25px; }
.catalog-heading h2 { margin: 0; font-size: clamp(48px, 5.4vw, 78px); font-weight: 500; letter-spacing: -0.055em; line-height: 0.94; }
.catalog-heading > p:last-child { max-width: 360px; margin: 0 0 4px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.catalog-card { --catalog-accent: var(--green); --catalog-soft: var(--sage); display: flex; flex-direction: column; align-items: flex-start; min-height: 260px; padding: 34px; border-radius: 30px; background: color-mix(in srgb, var(--catalog-soft) 55%, rgba(252, 253, 252, 0.88)); }
.catalog-card h3 { margin: 0; color: color-mix(in srgb, var(--catalog-accent) 82%, var(--ink)); font-size: clamp(31px, 3vw, 48px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.96; }
.catalog-download { margin-top: auto; background: color-mix(in srgb, var(--catalog-accent) 88%, #123f23); color: #fff; }
.catalog-download svg { width: 17px; height: 17px; }

/* Product pages */
.product-page {
  background:
    radial-gradient(circle at 96% 8%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 34rem),
    radial-gradient(circle at 2% 24%, color-mix(in srgb, var(--accent-soft) 62%, transparent), transparent 32rem);
}

.product-hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 700px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.93);
  border-radius: 39px;
  background: rgba(250, 252, 250, 0.84);
  box-shadow: 0 28px 75px rgba(43, 69, 49, 0.12);
  backdrop-filter: blur(22px);
}
.product-hero-copy { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 65px 64px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #8b918b; font-size: 9px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb strong { color: color-mix(in srgb, var(--accent) 76%, black); font-weight: 650; }
.product-category { margin: 49px 0 0 !important; color: var(--accent) !important; font-size: 9px !important; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase; }
.product-hero h1 { margin: 15px 0 0; font-size: clamp(64px, 7vw, 104px); font-weight: 750; letter-spacing: -0.06em; line-height: 0.88; }
.product-hero-copy > p { max-width: 560px; margin: 29px 0 0; color: var(--muted); font-size: 20px; line-height: 1.65; }
.product-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.product-button { background: var(--accent-dark); color: #fff; font-size: 15px; box-shadow: 0 13px 35px color-mix(in srgb, var(--accent) 21%, transparent); }
.product-button-ghost { border: 1px solid color-mix(in srgb, var(--accent) 23%, transparent); background: #fff; color: var(--accent-dark); }
.product-page-counter { position: absolute; left: 64px; bottom: 46px; display: flex; align-items: baseline; gap: 7px; color: #8b938c; }
.product-page-counter span { margin-right: 9px; font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; }
.product-page-counter strong { color: var(--accent); font-size: 22px; }
.product-page-counter small { font-size: 10px; }
.product-hero-visual { position: relative; min-height: 660px; margin: 0; border-radius: 31px; background: #07110a; overflow: hidden; }
.product-hero-visual::after { content: none; }
.product-hero-media { display: block; width: 100%; height: 100%; }
.product-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-visual figcaption { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 27px; max-width: 640px; color: var(--accent-dark); font-size: 30px; font-weight: 600; line-height: 1.35; }

.product-overview { display: grid; grid-template-columns: 1.22fr 0.78fr; gap: 15px; margin-top: 18px; }
.product-description-card { min-height: 560px; padding: 68px; border-radius: 38px; }
.product-description-card h2 { max-width: 860px; margin: 34px 0 0; font-size: clamp(46px, 5vw, 73px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.95; }
.product-description-copy { display: grid; gap: 1.1em; max-width: 900px; margin: 35px 0 0; color: var(--muted); font-size: 20px; line-height: 1.75; }
.product-description-copy p { margin: 0; }
.guarantees-panel { display: flex; flex-direction: column; padding: 34px; border-radius: 38px; background: var(--accent-dark); color: #fff; box-shadow: 0 25px 65px color-mix(in srgb, var(--accent) 16%, transparent); }
.guarantees-heading { display: grid; margin-bottom: 31px; font-family: var(--font-action); font-size: 20px; }
.guarantees-heading span { color: rgba(255, 255, 255, 0.68); font-size: 20px; letter-spacing: 0.12em; text-transform: uppercase; }
.guarantees-heading strong { margin-top: 5px; font-size: 32px; font-weight: 500; letter-spacing: -0.04em; }
.guarantees-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; height: 100%; }
.guarantees-grid article { display: flex; flex-direction: column; justify-content: flex-end; min-height: 130px; padding: 22px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 24px; background: rgba(255, 255, 255, 0.08); }
.guarantees-grid article strong { color: color-mix(in srgb, var(--accent) 60%, white); font-size: clamp(56px, 6.5vw, 90px); font-weight: 500; letter-spacing: -0.05em; }
.guarantees-grid article span { width: min(352px, 100%); margin-top: 12px; padding-left: 3px; color: rgba(255, 255, 255, 0.74); font-size: 20px; line-height: 1.28; text-transform: uppercase; }
.guarantees-2 article { grid-column: 1 / 3; }

.composition-section { padding: 132px 2px 10px; }
.product-section-heading h2 { color: var(--accent-dark); }
.composition-layout { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 15px; }
.composition-core { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; min-height: 550px; padding: 38px; border-radius: 33px; background: linear-gradient(155deg, color-mix(in srgb, var(--accent) 82%, white), var(--accent-dark)); color: #fff; box-shadow: 0 22px 60px color-mix(in srgb, var(--accent) 15%, transparent); }
.composition-core > span { margin-bottom: auto; color: rgba(255, 255, 255, 0.58); font-size: 10px; letter-spacing: 0.18em; }
.composition-core strong { font-size: clamp(100px, 13vw, 180px); font-weight: 400; letter-spacing: -0.09em; line-height: 0.72; }
.composition-core small { margin-top: 23px; color: rgba(255, 255, 255, 0.76); font-size: 20px; letter-spacing: 0.12em; line-height: 1.35; text-transform: uppercase; }
.composition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.composition-grid article { display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto 1fr; column-gap: 20px; align-content: end; min-height: 320px; padding: 30px; border: 1px solid rgba(255, 255, 255, 0.87); border-radius: 29px; background: rgba(249, 251, 249, 0.78); box-shadow: 0 14px 42px rgba(42, 64, 46, 0.07); }
.composition-grid article > span { grid-row: 1 / 3; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); border-radius: 50%; color: var(--accent); font-size: 20px; }
.composition-grid h3 { align-self: end; margin: 0 0 13px; color: var(--accent-dark); font-size: 30px; font-weight: 500; letter-spacing: -0.025em; }
.composition-grid p { margin: 0; color: var(--muted); font-size: 20px; line-height: 1.55; }

.pillars-section { display: grid; grid-template-columns: 0.63fr 1.37fr; gap: 50px; margin-top: 130px; padding: 52px; border: 1px solid rgba(255, 255, 255, 0.92); border-radius: 39px; background: rgba(251, 252, 251, 0.88); box-shadow: 0 24px 70px rgba(43, 66, 47, 0.09); }
.pillars-intro { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 25px 20px 25px 10px; }
.pillars-intro h2 { margin: 34px 0 0; font-size: clamp(45px, 5vw, 69px); font-weight: 500; letter-spacing: -0.052em; line-height: 0.94; }
.pillars-intro > p:nth-of-type(2) { max-width: 480px; margin: 30px 0 0; color: var(--muted); font-size: 20px; line-height: 1.65; }
.pillars-badge { display: flex; align-items: center; gap: 20px; margin-top: 24px; padding: 0; }
.pillars-badge > span { display: grid; place-items: center; width: 120px; height: 120px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 60px; line-height: 1; }
.pillars-badge small { color: var(--muted); font-family: var(--font-action); font-size: 20px; letter-spacing: 0.1em; line-height: 1.35; text-transform: uppercase; }
.pillars-cards { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.pillars-cards > li { display: grid; grid-template-columns: 64px 1fr; gap: 22px; min-height: 230px; padding: 30px; border-radius: 27px; background: color-mix(in srgb, var(--accent-soft) 38%, white); transition: transform 0.25s ease, background 0.25s ease; }
.pillars-cards > li:hover { transform: translateX(-5px); background: color-mix(in srgb, var(--accent-soft) 68%, white); }
.pillar-number { display: grid; place-items: center; width: 60px; height: 60px; border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); border-radius: 50%; color: var(--accent); font-size: 20px; }
.pillars-cards h3 { margin: 3px 0 16px; color: var(--accent-dark); font-size: 25px; font-weight: 600; line-height: 1.2; }
.pillars-cards ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pillars-cards ul li { position: relative; padding-left: 16px; color: var(--muted); font-size: 20px; line-height: 1.5; }
.pillars-cards ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.product-image-banner { position: relative; min-height: 550px; margin-top: 18px; border-radius: 38px; background: #f0f1f0; color: var(--accent-dark); overflow: hidden; box-shadow: 0 26px 70px rgba(22, 48, 29, 0.16); }
.product-image-banner::after { content: none; }
.product-image-banner > img { width: 100%; height: 550px; object-fit: cover; object-position: center; transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1); }
.product-image-banner > div { position: absolute; z-index: 1; left: 66px; top: 50%; max-width: 600px; transform: translateY(-50%); }
.product-image-banner span { color: var(--accent); font-size: 9px; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase; }
.product-image-banner h2 { margin: 24px 0 0; color: var(--accent-dark); font-size: clamp(46px, 5vw, 72px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.95; }
.product-image-banner a { display: inline-flex; align-items: center; gap: 14px; margin-top: 31px; padding: 12px 17px; border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent); border-radius: 999px; color: var(--accent-dark); font-size: 10px; font-weight: 650; }
.product-image-banner a svg { width: 17px; height: 17px; }

@media (hover: hover) and (pointer: fine) {
  .product-image-banner:hover > img { transform: scale(1.018); }
}

.related-section { padding: 130px 2px 10px; }
.related-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 42px; padding: 0 24px; }
.related-heading h2 { margin: 0; font-size: clamp(50px, 5vw, 72px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.95; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.related-card { --related-accent: var(--green); display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 330px; border: 1px solid rgba(255, 255, 255, 0.86); border-radius: 32px; background: rgba(250, 252, 250, 0.78); box-shadow: 0 17px 48px rgba(42, 65, 46, 0.08); overflow: hidden; }
.related-card-media { display: block; width: 100%; height: 100%; overflow: hidden; }
.related-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.related-card:hover .related-card-media img { transform: scale(1.04); }
.related-card > div { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 31px; }
.related-card small { color: var(--related-accent); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.related-card strong { margin-top: 10px; font-size: 31px; letter-spacing: -0.035em; }
.related-card > div > span { position: absolute; top: 24px; right: 24px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid color-mix(in srgb, var(--related-accent) 25%, transparent); border-radius: 50%; color: var(--related-accent); }
.related-card > div > span svg { width: 17px; height: 17px; }

@media (max-width: 1180px) {
  .site-shell { width: min(100% - 28px, 1040px); }
  .desktop-nav { gap: 20px; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-copy { padding: 45px 30px 58px; }
  .home-hero-gallery { min-height: 600px; }
  .hero-banner-frame { min-height: 600px; }
  .editorial-section { padding: 48px; }
  .product-showcase { grid-template-columns: 1fr 1fr; }
  .section-heading { grid-template-columns: 0.55fr 1.45fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .technology-cards { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .product-hero { grid-template-columns: 1fr; }
  .product-hero-copy { min-height: 650px; }
  .product-hero-visual { min-height: 620px; }
  .product-overview { grid-template-columns: 1fr; }
  .guarantees-grid article { min-height: 170px; }
  .guarantees-2 article { grid-column: auto; }
  .pillars-section { grid-template-columns: 1fr; }
  .pillars-badge { margin-top: 40px; }
  .catalog-heading { grid-template-columns: 0.55fr 1.45fr; }
  .catalog-heading > p:last-child { grid-column: 2; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu { position: relative; display: block; justify-self: end; }
  .mobile-menu summary { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 16px; height: 1px; background: var(--green-dark); }
  .mobile-menu nav { position: absolute; top: 53px; right: 0; display: grid; min-width: 220px; padding: 11px; border: 1px solid rgba(255, 255, 255, 0.95); border-radius: 20px; background: rgba(250, 252, 250, 0.96); box-shadow: 0 18px 45px rgba(31, 57, 38, 0.16); backdrop-filter: blur(20px); }
  .mobile-menu nav a { padding: 11px 12px; border-radius: 11px; color: var(--green-dark); font-size: 11px; }
  .mobile-menu nav a:hover { background: #edf4ed; }
  .manifesto-section { grid-template-columns: 1fr; }
  .manifesto-note { min-height: 390px; }
  .promise-banner { grid-template-columns: 1fr; align-items: start; }
  .promise-banner > span { justify-self: start; text-align: left; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-section address { margin-top: 50px; }
  .composition-layout { grid-template-columns: 1fr; }
  .composition-core { min-height: 400px; }
  .related-card { grid-template-columns: 1fr; grid-template-rows: 280px 1fr; }
  .downloads-hero { min-height: 520px; padding: 58px 42px; }
}

@media (max-width: 640px) {
  .downloads-hero { min-height: 480px; margin-top: 9px; padding: 50px 24px; border-radius: 29px; }
  .downloads-hero h1 { margin-top: 28px; font-size: clamp(62px, 20vw, 88px); }
  .downloads-hero > p:last-child { margin-top: 34px; font-size: 17px; }
  .catalog-section { padding-top: 92px; }
  .catalog-heading { display: block; margin-bottom: 34px; padding: 0 12px; }
  .catalog-heading h2 { margin-top: 19px; font-size: 45px; }
  .catalog-heading > p:last-child { margin-top: 21px; font-size: 17px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 220px; padding: 28px; border-radius: 24px; }
  .catalog-card h3 { font-size: 42px; }
  .catalog-download { width: 100%; }
  .site-shell { width: calc(100% - 18px); padding: 9px 0 45px; }
  .topbar { top: 7px; min-height: 66px; margin-bottom: 9px; padding: 0 11px 0 15px; border-radius: 21px; }
  .home-hero { min-height: auto; padding: 0; border-radius: 29px; }
  .home-hero-copy { padding: 55px 25px 48px; }
  .home-hero h1 { font-size: clamp(49px, 14.8vw, 66px); }
  .home-hero-copy > p { font-size: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; }
  .button-outline-light { display: none; }
  .home-hero-gallery { min-height: 420px; }
  .hero-banner-frame { min-height: 420px; }
  .editorial-section { margin-top: 9px; padding: 39px 16px 16px; border-radius: 29px; }
  .editorial-heading { padding: 0 4px; }
  .editorial-section > h2 { margin: 33px 4px 38px; font-size: clamp(44px, 13.5vw, 61px); }
  .product-showcase { grid-template-columns: 1fr; }
  .showcase-card, .showcase-card:last-child { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 300px auto; min-height: 610px; border-radius: 24px; }
  .showcase-copy { padding: 24px; }
  .showcase-copy h3 { font-size: 32px; }
  .showcase-copy h3 + p { font-size: 17px; }
  .manifesto-section { margin-top: 9px; gap: 9px; }
  .manifesto-copy { min-height: 530px; padding: 44px 23px; border-radius: 29px; }
  .manifesto-copy h2 { font-size: clamp(49px, 14vw, 64px); }
  .manifesto-copy > p:last-child { font-size: 20px; }
  .manifesto-note { min-height: 380px; padding: 31px; border-radius: 29px; }
  .manifesto-note p { font-size: 17px; }
  .manifesto-note strong, .manifesto-note p { text-align: left; }
  .technology-section, .benefits-section { padding-top: 94px; }
  .section-heading { display: block; margin-bottom: 34px; padding: 0 12px; }
  .section-heading h2 { margin-top: 19px; font-size: 45px; }
  .section-heading > p:last-child { margin-top: 21px; font-size: 17px; }
  .technology-section .section-heading > p:last-child { text-align: left; }
  .benefits-heading > p:last-child { text-align: left; }
  .technology-cards { grid-template-columns: 1fr; }
  .technology-photo-card, .technology-text-card { min-height: 350px; border-radius: 24px; }
  .technology-text-card h3 { font-size: 40px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 225px; }
  .benefit-number { margin-bottom: 43px; }
  .promise-banner { min-height: 520px; margin-top: 94px; padding: 44px 23px; border-radius: 29px; }
  .promise-banner p { font-size: 52px; }
  .contact-section { display: block; min-height: auto; margin-top: 9px; padding: 47px 23px; border-radius: 29px; }
  .contact-copy h2 { font-size: clamp(47px, 13vw, 61px); }
  .contact-section address { margin-top: 70px; }
  footer { grid-template-columns: 1fr auto; padding: 30px 12px 0; }
  footer > p { display: none; }
  .product-hero { padding: 10px; border-radius: 29px; }
  .product-hero-copy { min-height: 600px; padding: 40px 17px 90px; }
  .product-category { margin-top: 41px !important; }
  .product-hero h1 { font-size: clamp(58px, 17vw, 76px); }
  .product-hero-copy > p { font-size: 18px; }
  .product-hero-actions { width: 100%; }
  .product-hero-actions .button { width: 100%; }
  .product-page-counter { left: 17px; bottom: 35px; }
  .product-hero-visual { min-height: 460px; border-radius: 22px; }
  .product-hero-visual figcaption { display: none; }
  .product-overview { gap: 9px; margin-top: 9px; }
  .product-description-card { min-height: 620px; padding: 44px 23px; border-radius: 29px; }
  .product-description-card h2 { font-size: 46px; }
  .product-description-copy { font-size: 18px; }
  .guarantees-panel { padding: 22px; border-radius: 29px; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .guarantees-grid article, .guarantees-2 article { grid-column: auto; min-height: 150px; }
  .composition-section { padding-top: 95px; }
  .composition-core { min-height: 350px; border-radius: 27px; }
  .composition-core strong { font-size: 128px; }
  .composition-grid { grid-template-columns: 1fr; }
  .composition-grid article { min-height: 230px; border-radius: 24px; }
  .pillars-section { margin-top: 94px; padding: 31px 15px 15px; border-radius: 29px; }
  .pillars-intro { padding: 18px 8px 38px; }
  .pillars-intro h2 { font-size: 48px; }
  .pillars-intro > p:nth-of-type(2) { font-size: 18px; }
  .pillars-badge { gap: 14px; margin-top: 20px; }
  .pillars-badge > span { width: 92px; height: 92px; font-size: 42px; }
  .pillars-badge small { font-size: 17px; }
  .pillars-cards > li { grid-template-columns: 1fr; padding: 22px; border-radius: 22px; }
  .pillar-number { width: 54px; height: 54px; font-size: 18px; }
  .pillars-cards h3 { font-size: 22px; }
  .pillars-cards ul li { font-size: 17px; }
  .pillars-cards > li:hover { transform: none; }
  .product-image-banner { min-height: 520px; margin-top: 9px; border-radius: 29px; }
  .product-image-banner > img { height: 520px; object-position: center; }
  .product-image-banner::after { background: linear-gradient(90deg, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.34)); }
  .product-image-banner > div { left: 24px; right: 24px; }
  .product-image-banner h2 { font-size: 47px; }
  .related-section { padding-top: 95px; }
  .related-heading { display: block; padding: 0 12px; }
  .related-heading h2 { margin-top: 18px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { grid-template-rows: 250px 170px; border-radius: 25px; }
  .related-card-media { background: #f0f1f0; }
  .related-card-media img { object-fit: cover; object-position: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html.motion-enabled .page-entry { opacity: 1; translate: none; transition: none; }
}
