:root {
  --deep: #063d25;
  --deep-2: #092f20;
  --green: #0a6b34;
  --fresh: #82b741;
  --lime: #b7dd68;
  --ink: #101812;
  --muted: #5d6a62;
  --line: #dfe8df;
  --paper: #fbfdf9;
  --soft: #f2f7ef;
  --white: #ffffff;
  --blue: #0086d1;
  --yellow: #f0b000;
  --shadow: 0 24px 70px rgba(4, 44, 27, 0.12);
  --shadow-strong: 0 34px 110px rgba(4, 44, 27, 0.2);
  --max: 1280px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Manrope, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(10, 107, 52, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(6, 61, 37, 0.09);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 44px rgba(6, 61, 37, 0.12);
}

.site-header.compact {
  position: sticky;
  top: 16px;
  transform: none;
  margin: 16px auto 0;
}

.brand-mark img {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #193823;
  font-size: 14px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: rgba(10, 107, 52, 0.08);
  color: var(--green);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(10, 107, 52, 0.18);
  border-radius: 6px;
  background: var(--white);
  color: var(--deep);
  padding: 10px 13px;
  font-weight: 750;
}

.section-full {
  min-height: 100svh;
  width: 100%;
}

.section-band {
  padding: clamp(76px, 9vw, 136px) 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding: 130px max(24px, calc((100vw - var(--max)) / 2)) 64px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 253, 248, 0.9) 48%, rgba(228, 244, 224, 0.72) 100%),
    url("assets/generated/papa-clean-man-product.jpg") right center / auto 100% no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  background: linear-gradient(180deg, rgba(251, 253, 249, 0), var(--paper));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 107, 52, 0), rgba(10, 107, 52, 0.18), rgba(10, 107, 52, 0));
  transform: rotate(-18deg);
  animation: lightSweep 8s ease-in-out infinite;
}

.hero-bg::before {
  top: 24%;
  right: 8%;
}

.hero-bg::after {
  top: 58%;
  right: 24%;
  animation-delay: 2s;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  opacity: 1;
  transform: none;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  font-size: clamp(36px, 4.6vw, 64px);
}

h2 {
  font-size: clamp(30px, 3.8vw, 52px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 32px);
}

p {
  margin: 0;
}

.hero-subtitle,
.section-copy p,
.section-head p,
.x5-panel p,
.map-copy p,
.contact-list {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 20px;
}

.hero-actions,
.uikit-row,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(6, 61, 37, 0.22);
}

.button.primary:hover {
  background: #032d1b;
  box-shadow: 0 24px 54px rgba(6, 61, 37, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  border-color: rgba(10, 107, 52, 0.22);
}

.button.disabled {
  opacity: 0.58;
  pointer-events: none;
}

.hero-stage {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(76px, 1fr));
  align-items: flex-end;
  justify-content: center;
  gap: 12px 10px;
  width: 100%;
  padding: 20px 12px 0;
}

.product-mini {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 122px;
  margin: 0;
  justify-self: center;
  transform: translateY(var(--lift, 0));
  animation: productFloat 5.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.product-mini img {
  width: 100%;
  height: clamp(205px, 21vw, 285px);
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 28px rgba(6, 61, 37, 0.18));
}

.stage-caption {
  margin: 18px auto 0;
  padding: 9px 12px;
  border: 1px solid rgba(10, 107, 52, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.section-grid,
.media-copy-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.media-copy-layout.reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.section-copy {
  max-width: 720px;
}

.section-copy.centered {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-copy p + p {
  margin-top: 18px;
}

.section-copy h2 + p,
.section-copy h1 + p {
  margin-top: 22px;
}

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

.intel-card,
.benefit-card,
.stat-card,
.market-card,
.kit-card {
  border: 1px solid rgba(10, 107, 52, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 60px rgba(6, 61, 37, 0.07);
}

.intel-card {
  padding: 24px;
  color: var(--deep);
  font-weight: 720;
}

.about {
  background: var(--white);
}

.about-media,
.wide-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.about-media img,
.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-showcase {
  background: linear-gradient(180deg, var(--paper), #eef6ec);
}

.wide-image {
  width: min(100%, 1420px);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, var(--max));
  margin: 0 auto 36px;
}

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

.catalog {
  background: var(--paper);
}

.catalog-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(10, 107, 52, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(6, 61, 37, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 52%, white);
  box-shadow: var(--shadow-strong);
}

.product-media {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 18px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 245, 0.92)),
    radial-gradient(circle at center bottom, color-mix(in srgb, var(--accent) 16%, transparent), transparent 62%);
}

.product-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 24px rgba(4, 48, 28, 0.14));
}

.category-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 6px;
  padding: 7px 10px;
  background: color-mix(in srgb, var(--accent) 88%, black);
  color: white;
  font-size: 12px;
  font-weight: 850;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-content h3 {
  color: var(--deep);
  font-size: 23px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 720;
}

.product-benefits {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  color: #395243;
  list-style: none;
}

.product-benefits li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.product-benefits li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-1px);
  flex: 0 0 auto;
}

.price-line {
  margin-top: auto;
  color: var(--deep);
  font-size: 20px;
  font-weight: 780;
}

.product-content .button {
  margin-top: 16px;
  width: 100%;
}

.advantages {
  background: var(--white);
}

.advantage-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 243, 0.88));
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, white);
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, white), white);
}

.benefit-card h3 {
  max-width: 80%;
}

.benefit-card p {
  margin-top: 18px;
  color: var(--muted);
}

.buy {
  display: grid;
  place-items: center;
  padding: 110px 24px;
  background:
    linear-gradient(125deg, rgba(6, 61, 37, 0.94), rgba(8, 64, 36, 0.86)),
    url("assets/generated/papa-clean-marketplaces.jpg") center / cover no-repeat;
  color: var(--white);
}

.buy-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  width: min(100%, var(--max));
}

.buy .eyebrow,
.buy h2,
.buy p {
  color: var(--white);
}

.buy p {
  opacity: 0.84;
}

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

.market-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.market-card strong {
  color: var(--deep);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.market-card span {
  color: var(--muted);
  font-weight: 720;
}

.market-card .market-line {
  width: 100%;
  height: 5px;
  border-radius: 4px;
  background: var(--market);
}

.x5 {
  background: #eef6ec;
}

.x5-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(10, 107, 52, 0.14);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.x5-status {
  width: 220px;
  border-radius: 8px;
  padding: 18px;
  background: var(--deep);
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.map-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: 118px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #f9fcf8, #edf5ea);
}

.map-copy {
  max-width: 540px;
}

.map-copy h2 {
  margin-bottom: 20px;
}

.search-field {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--deep);
  font-weight: 850;
}

.search-field input,
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 107, 52, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-field input:focus,
.lead-form input:focus,
.lead-form textarea:focus,
.cms-editor:focus {
  border-color: rgba(10, 107, 52, 0.55);
  box-shadow: 0 0 0 4px rgba(10, 107, 52, 0.09);
}

.map-result {
  min-height: 74px;
  margin-top: 18px;
  color: var(--muted);
}

.russia-map {
  position: relative;
  border: 1px solid rgba(10, 107, 52, 0.14);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(160deg, #ffffff, #f4faf2);
  box-shadow: var(--shadow);
}

.russia-map svg {
  width: 100%;
  height: auto;
}

.map-land {
  fill: #dbeada;
  stroke: rgba(10, 107, 52, 0.36);
  stroke-width: 2;
}

.map-line {
  fill: none;
  stroke: rgba(10, 107, 52, 0.18);
  stroke-width: 3;
}

.map-point {
  cursor: pointer;
}

.map-point circle:first-child {
  fill: rgba(10, 107, 52, 0.12);
  animation: pulse 2.8s ease-in-out infinite;
}

.map-point circle:nth-of-type(2) {
  fill: var(--green);
  stroke: white;
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(10, 107, 52, 0.55));
}

.map-point.active circle:nth-of-type(2) {
  fill: var(--yellow);
}

.map-notice {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.stats {
  background: var(--white);
}

.stats-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 26px;
}

.stat-value {
  color: var(--deep);
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 820;
  line-height: 1;
}

.stat-label {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 850;
}

.stat-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.partners {
  background: #f7fbf5;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(10, 107, 52, 0.13);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 850;
}

.lead-form .full,
.lead-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  color: var(--green);
  font-weight: 760;
}

.contacts {
  background: var(--white);
}

.contact-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  color: var(--deep);
}

.footer-marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-marketplaces span {
  border: 1px solid rgba(10, 107, 52, 0.16);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px 24px 46px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 138px;
  padding: 8px;
  border-radius: 6px;
  background: white;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - 120px);
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));
}

.product-hero-media {
  border: 1px solid rgba(10, 107, 52, 0.13);
  border-radius: 8px;
  background: linear-gradient(160deg, white, #f5fbf2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-page-copy h1 {
  font-size: clamp(40px, 5.8vw, 84px);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.product-tags span {
  border-radius: 6px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--deep);
  font-weight: 850;
}

.product-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px 110px;
}

.product-info-card {
  border: 1px solid rgba(10, 107, 52, 0.13);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: white;
  box-shadow: 0 20px 70px rgba(6, 61, 37, 0.07);
}

.product-info-card.full {
  grid-column: 1 / -1;
}

.product-info-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #395243;
}

.product-info-card li {
  display: flex;
  gap: 10px;
}

.product-info-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.market-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.admin-body {
  background: #f3f8f0;
}

.admin,
.uikit {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 46px 0 80px;
}

.admin-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-panel h1,
.uikit h1 {
  color: var(--deep);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
}

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

.cms-editor {
  width: 100%;
  min-height: 70vh;
  border: 1px solid rgba(10, 107, 52, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: white;
  color: #142018;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  outline: none;
  box-shadow: var(--shadow);
}

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

.kit-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.swatch {
  width: 100%;
  height: 56px;
  border-radius: 6px;
}

.swatch.deep { background: var(--deep); }
.swatch.green { background: var(--green); }
.swatch.lime { background: var(--fresh); }
.swatch.blue { background: var(--blue); }
.swatch.yellow { background: var(--yellow); }

.lead-form.sample {
  width: min(100%, 760px);
}

.uikit-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.uikit-showcase .product-card {
  min-height: 640px;
}

.uikit-showcase .lead-form {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes lightSweep {
  0%, 100% { opacity: 0.3; transform: translateX(0) rotate(-18deg); }
  50% { opacity: 0.9; transform: translateX(-10vw) rotate(-18deg); }
}

@keyframes productFloat {
  0%, 100% { transform: translateY(var(--lift, 0)); }
  50% { transform: translateY(calc(var(--lift, 0) - 10px)); }
}

@keyframes pulse {
  0%, 100% { r: 13; opacity: 0.52; }
  50% { r: 23; opacity: 0.12; }
}

@media (max-width: 1100px) {
  .hero,
  .buy-inner,
  .map-section,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
    background-size: auto 80%;
    background-position: right top;
  }

  .hero-stage {
    min-height: 400px;
  }

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

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav:not(.static) {
    position: fixed;
    inset: 74px 10px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(10, 107, 52, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav:not(.static) {
    display: flex;
  }

  .site-nav.static {
    gap: 0;
  }

  .site-nav.static a {
    padding: 8px;
    font-size: 13px;
  }

  .brand-mark img {
    width: 138px;
  }

  .section-grid,
  .media-copy-layout,
  .media-copy-layout.reverse,
  .contact-layout,
  .section-head,
  .x5-panel {
    grid-template-columns: 1fr;
  }

  .section-head,
  .admin-panel {
    display: grid;
    align-items: start;
  }

  .intel-list,
  .advantage-grid,
  .market-grid,
  .product-sections,
  .uikit-grid {
    grid-template-columns: 1fr;
  }

  .hero-products {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .hero-products::-webkit-scrollbar {
    display: none;
  }

  .product-mini {
    flex: 0 0 76px;
  }

  .product-mini img {
    height: 310px;
  }

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

  .x5-status {
    width: 100%;
  }

  .product-info-card.full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .section-band {
    padding: 68px 18px;
  }

  .hero,
  .map-section,
  .product-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions,
  .market-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .catalog-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium redesign */
:root {
  --deep: #05351f;
  --deep-2: #071f18;
  --green: #087237;
  --fresh: #92c83e;
  --lime: #c8e978;
  --ink: #0b1711;
  --muted: #617169;
  --muted-2: #8b9a93;
  --line: #d7e5dc;
  --paper: #f7fbf5;
  --soft: #edf5ea;
  --white: #ffffff;
  --blue: #0086d1;
  --yellow: #f0b000;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --glass-line: rgba(255, 255, 255, 0.64);
  --shadow: 0 28px 80px rgba(7, 31, 24, 0.12);
  --shadow-strong: 0 42px 120px rgba(7, 31, 24, 0.2);
  --max: 1360px;
}

body {
  background:
    linear-gradient(90deg, rgba(8, 114, 55, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fbfdf9 0%, #eff7ed 42%, #fbfdf9 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.14) 44%, rgba(7, 97, 48, 0.07)),
    repeating-linear-gradient(90deg, rgba(5, 53, 31, 0.025) 0 1px, transparent 1px 160px);
}

.site-shell {
  isolation: isolate;
}

.site-header {
  top: 22px;
  width: min(calc(100% - 40px), 1440px);
  min-height: 74px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-bottom-color: rgba(8, 114, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 84px rgba(7, 31, 24, 0.11);
  backdrop-filter: blur(24px) saturate(1.25);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 70px rgba(7, 31, 24, 0.14);
}

.brand-mark img {
  width: 180px;
}

.site-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(8, 114, 55, 0.08);
  border-radius: 8px;
  background: rgba(247, 251, 245, 0.62);
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 10px 14px;
  color: rgba(7, 31, 24, 0.78);
  font-size: 13px;
  font-weight: 760;
}

.site-nav a:hover {
  background: var(--deep);
  color: white;
  transform: translateY(-1px);
}

.menu-toggle {
  min-height: 54px;
  border-color: rgba(8, 114, 55, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
  padding: 12px 20px;
  font-size: 17px;
  font-weight: 850;
}

.section-band {
  padding: clamp(90px, 11vw, 170px) clamp(18px, 3vw, 32px);
}

.section-full {
  min-height: 100svh;
}

.hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.88fr) minmax(620px, 1.12fr);
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(126px, 12vw, 172px) max(24px, calc((100vw - var(--max)) / 2)) clamp(52px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(250, 253, 247, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(222, 238, 218, 0.78) 100%),
    url("assets/generated/papa-clean-man-product.jpg") right center / auto 104% no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 98px -8vw auto auto;
  width: min(780px, 56vw);
  height: 70svh;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(241, 248, 237, 0.3)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.08) 1px, transparent 1px) 0 0 / 92px 92px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 50px 140px rgba(7, 31, 24, 0.11);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero::after {
  height: 20vh;
  background: linear-gradient(180deg, rgba(247, 251, 245, 0), var(--paper));
}

.hero-bg::before,
.hero-bg::after {
  width: 60vw;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.88), rgba(8,114,55,0));
  opacity: 0.6;
}

.hero-copy {
  max-width: 690px;
  animation: heroTextIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(8, 114, 55, 0.16);
  border-radius: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
}

h1 {
  max-width: 780px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  font-weight: 780;
}

h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.04;
  font-weight: 760;
}

h3 {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.12;
  font-weight: 780;
}

.hero-subtitle,
.section-copy p,
.section-head p,
.x5-panel p,
.map-copy p,
.contact-list {
  color: rgba(11, 23, 17, 0.62);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.58;
}

.hero-subtitle {
  max-width: 590px;
  margin-top: 26px;
  color: rgba(11, 23, 17, 0.66);
}

.hero-actions {
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 820;
  letter-spacing: 0;
}

.button.primary {
  background: linear-gradient(180deg, #0a5a31, #042a1a);
  color: #fff;
  box-shadow: 0 22px 50px rgba(5, 53, 31, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button.primary:hover {
  background: linear-gradient(180deg, #0e713d, #042a1a);
  box-shadow: 0 28px 70px rgba(5, 53, 31, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(5, 53, 31, 0.16);
  color: var(--deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button.secondary:hover {
  border-color: rgba(5, 53, 31, 0.26);
  background: white;
}

.hero-proofbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(8, 114, 55, 0.14);
  border-radius: 8px;
  background: rgba(8, 114, 55, 0.12);
  box-shadow: 0 18px 60px rgba(7, 31, 24, 0.08);
}

.hero-proofbar span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--deep);
  font-weight: 780;
  text-align: center;
}

.hero-stage {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 34px 20px 22px;
  animation: heroStageIn 1s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stage-glass {
  position: absolute;
  inset: 8% 0 4%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.08) 1px, transparent 1px) 0 0 / 92px 92px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 42px 120px rgba(7, 31, 24, 0.13);
  backdrop-filter: blur(8px);
}

.hero-products {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  align-items: end;
  gap: 4px 12px;
  width: min(100%, 800px);
  padding: 40px 22px 72px;
  perspective: 1100px;
}

.hero-products::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 46px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(5, 53, 31, 0), rgba(5, 53, 31, 0.18), rgba(5, 53, 31, 0));
  filter: blur(8px);
}

.product-mini {
  max-width: 132px;
  transform: translateY(var(--lift, 0)) rotateY(-4deg);
  animation: productFloatPremium 6.2s ease-in-out infinite;
}

.product-mini img {
  height: clamp(240px, 24vw, 350px);
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 26px rgba(7, 31, 24, 0.24));
}

.product-mini:nth-child(2),
.product-mini:nth-child(4),
.product-mini:nth-child(7),
.product-mini:nth-child(9) {
  transform: translateY(calc(var(--lift, 0) + 20px)) rotateY(3deg);
}

.stage-caption {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 44px rgba(7, 31, 24, 0.11);
  backdrop-filter: blur(18px);
}

.section-grid,
.media-copy-layout,
.contact-layout {
  width: min(100%, var(--max));
  gap: clamp(44px, 7vw, 110px);
}

.brand-intel {
  position: relative;
  background: linear-gradient(180deg, var(--paper), #ffffff 58%, #f2f8ef);
}

.brand-intel::before,
.about::before,
.catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 114, 55, 0.05) 1px, transparent 1px) 0 0 / 96px 96px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.section-copy {
  position: relative;
  z-index: 1;
}

.intel-list {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intel-card,
.benefit-card,
.stat-card,
.market-card,
.kit-card {
  border-color: rgba(8, 114, 55, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(7, 31, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.intel-card {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  font-size: 18px;
  line-height: 1.38;
}

.about {
  position: relative;
  background: #fff;
}

.about-media,
.wide-image {
  border-radius: 8px;
  border: 1px solid rgba(8, 114, 55, 0.1);
  box-shadow: 0 38px 110px rgba(7, 31, 24, 0.12);
}

.about-media {
  min-height: 620px;
}

.about-media img {
  object-position: 60% center;
  transform: scale(1.01);
}

.lineup-showcase {
  background: linear-gradient(180deg, #f3f8ef, #ffffff);
}

.wide-image {
  max-width: 1500px;
  transform: translateZ(0);
}

.section-head {
  width: min(100%, var(--max));
  margin-bottom: 44px;
}

.catalog {
  position: relative;
  background:
    linear-gradient(180deg, #fff, #f2f8ef 48%, #fff 100%);
}

.catalog-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  min-height: 720px;
  border-color: rgba(8, 114, 55, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 11%, white), #fff 58%);
  box-shadow: 0 32px 100px rgba(7, 31, 24, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 42%, white);
  box-shadow: 0 48px 130px rgba(7, 31, 24, 0.16);
}

.product-card:nth-child(5n) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 560px;
}

.product-media {
  height: 430px;
  align-items: center;
  padding: 34px 34px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.78)),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 10%, white) 1px, transparent 1px) 0 0 / 58px 58px;
}

.product-card:nth-child(5n) .product-media {
  height: 100%;
  min-height: 520px;
}

.product-media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18px;
  height: 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 26%, transparent);
  filter: blur(10px);
}

.product-media img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  width: 88%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 32px rgba(7, 31, 24, 0.17));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

.product-card:hover .product-media img {
  transform: translateY(-10px) scale(1.04);
  filter: drop-shadow(0 38px 40px rgba(7, 31, 24, 0.2));
}

.sku-index {
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 2;
  color: color-mix(in srgb, var(--accent) 48%, white);
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 780;
  line-height: 0.8;
}

.category-pill {
  top: 22px;
  left: 22px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent) 82%, #082b1a);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 16%, transparent);
}

.product-content {
  padding: 34px;
}

.product-content h3 {
  max-width: 520px;
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.08;
  font-weight: 760;
}

.product-slogan {
  max-width: 440px;
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--accent) 72%, #063d25);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 760;
  line-height: 1.18;
}

.product-meta {
  margin-top: 20px;
  color: rgba(11, 23, 17, 0.58);
  font-size: 16px;
}

.product-benefits {
  margin: 26px 0 30px;
  gap: 12px;
  color: rgba(11, 23, 17, 0.7);
  font-size: 15px;
}

.product-benefits li::before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 11%, transparent);
}

.price-line {
  font-size: 22px;
}

.product-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.market-mini span {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 114, 55, 0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.62);
  color: rgba(5, 53, 31, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.advantages {
  background: #fff;
}

.advantage-grid {
  gap: 20px;
}

.benefit-card {
  min-height: 320px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.66)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, white), #fff);
}

.benefit-card::before {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 48%, white), rgba(255,255,255,0.86));
}

.benefit-card h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.buy {
  position: relative;
  min-height: 100svh;
  background:
    linear-gradient(110deg, rgba(5, 28, 20, 0.96), rgba(5, 53, 31, 0.88)),
    url("assets/generated/papa-clean-marketplaces.jpg") right center / cover no-repeat;
}

.buy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%, rgba(255,255,255,0.06));
  pointer-events: none;
}

.buy-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.buy .section-copy {
  max-width: 620px;
}

.buy .eyebrow {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
}

.buy p {
  color: rgba(255,255,255,0.72);
}

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

.market-card {
  min-height: 250px;
  padding: 28px;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.13);
  color: white;
  backdrop-filter: blur(18px);
}

.market-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.18);
}

.market-card strong {
  color: white;
  font-size: clamp(28px, 3vw, 46px);
}

.market-card span {
  color: rgba(255,255,255,0.68);
}

.market-card .market-line {
  height: 6px;
  box-shadow: 0 0 28px var(--market);
}

.x5 {
  background: linear-gradient(180deg, #ffffff, #edf5ea);
}

.x5-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  min-height: 640px;
  overflow: hidden;
  border-color: rgba(8, 114, 55, 0.11);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.94), rgba(255,255,255,0.62)),
    linear-gradient(90deg, rgba(8,114,55,0.06) 1px, transparent 1px) 0 0 / 86px 86px;
}

.x5-panel h2 {
  max-width: 820px;
}

.x5-visual {
  position: relative;
  min-height: 480px;
}

.retail-card {
  position: absolute;
  left: 0;
  top: 32px;
  z-index: 2;
  width: min(100%, 430px);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(5, 53, 31, 0.94), rgba(7, 31, 24, 0.96));
  color: white;
  box-shadow: 0 40px 120px rgba(7, 31, 24, 0.28);
}

.retail-card strong {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.04;
}

.retail-card span {
  color: rgba(255,255,255,0.72);
  font-weight: 850;
}

.retail-label {
  text-transform: uppercase;
  font-size: 11px;
}

.retail-map {
  position: absolute;
  inset: 92px 0 0 40px;
  border: 1px solid rgba(8, 114, 55, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.72), rgba(240,248,236,0.48)),
    linear-gradient(90deg, rgba(8,114,55,0.08) 1px, transparent 1px) 0 0 / 60px 60px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}

.retail-map::before {
  content: "";
  position: absolute;
  inset: 25% 7% 18% 10%;
  border: 2px solid rgba(8, 114, 55, 0.22);
  clip-path: polygon(4% 42%, 16% 22%, 32% 26%, 44% 19%, 58% 28%, 70% 23%, 86% 34%, 96% 55%, 86% 72%, 66% 68%, 54% 78%, 38% 69%, 22% 73%, 10% 61%);
}

.retail-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(8,114,55,0.13), 0 0 26px rgba(8,114,55,0.44);
}

.map-section {
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  background:
    linear-gradient(120deg, #071f18, #05351f 52%, #0a2c20);
  color: white;
}

.map-section .eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #c8e978;
}

.map-copy h2,
.map-copy p {
  color: white;
}

.map-copy p {
  color: rgba(255,255,255,0.72);
}

.search-field {
  color: white;
}

.search-field input {
  min-height: 58px;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
  color: white;
}

.search-field input::placeholder {
  color: rgba(255,255,255,0.54);
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.map-filters button {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.76);
  font-weight: 850;
}

.map-filters button.active {
  background: rgba(255,255,255,0.92);
  color: var(--deep);
}

.map-result {
  display: flex;
  align-items: center;
  min-height: 92px;
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.76);
}

.russia-map {
  border-color: rgba(255,255,255,0.14);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 72px 72px;
  box-shadow: 0 42px 130px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.2);
}

.map-land {
  fill: rgba(255,255,255,0.1);
  stroke: rgba(200, 233, 120, 0.42);
}

.map-line {
  stroke: rgba(200, 233, 120, 0.24);
}

.map-point circle:first-child {
  fill: rgba(200, 233, 120, 0.12);
}

.map-point circle:nth-of-type(2) {
  fill: #c8e978;
  stroke: rgba(7, 31, 24, 0.9);
}

.map-point text {
  fill: #c8e978;
}

.map-notice {
  color: rgba(255,255,255,0.58);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.city-list button {
  display: grid;
  gap: 4px;
  min-height: 74px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.07);
  color: white;
  text-align: left;
  cursor: pointer;
}

.city-list button.active,
.city-list button:hover {
  background: rgba(200,233,120,0.16);
  border-color: rgba(200,233,120,0.34);
}

.city-list span {
  color: rgba(255,255,255,0.56);
  font-size: 12px;
}

.stats {
  background: linear-gradient(180deg, #fff, #eef7ec);
}

.stats-grid {
  gap: 20px;
}

.stat-card {
  min-height: 230px;
  padding: 30px;
}

.stat-value {
  font-size: clamp(32px, 3.8vw, 56px);
}

.partners {
  background:
    linear-gradient(180deg, #f7fbf5, #ffffff),
    linear-gradient(90deg, rgba(8,114,55,0.05) 1px, transparent 1px) 0 0 / 80px 80px;
}

.lead-form {
  border-color: rgba(8, 114, 55, 0.11);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 34px 110px rgba(7, 31, 24, 0.12);
}

.lead-form input,
.lead-form textarea {
  min-height: 54px;
  background: rgba(247,251,245,0.8);
}

.contacts {
  background: #fff;
}

.site-footer {
  background:
    linear-gradient(180deg, #082a1c, #061b14);
}

.product-body {
  background:
    linear-gradient(90deg, rgba(8,114,55,0.04) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(180deg, #fbfdf9, #eef7ec 48%, #fff);
}

.product-hero {
  min-height: calc(100svh - 112px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  padding-top: clamp(76px, 8vw, 120px);
}

.product-landing {
  position: relative;
}

.product-landing::before {
  content: "";
  position: absolute;
  inset: 16% 3% auto 42%;
  height: 52%;
  border: 1px solid rgba(8,114,55,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.42);
  transform: skewX(-7deg);
}

.product-hero-media {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-cutout-stage {
  width: min(100%, 600px);
  min-height: 620px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.34)),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 9%, white) 1px, transparent 1px) 0 0 / 72px 72px;
  box-shadow: 0 42px 130px rgba(7,31,24,0.15), inset 0 1px 0 rgba(255,255,255,0.88);
}

.product-cutout-stage img {
  width: 72%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(7,31,24,0.22));
}

.product-hero-media img {
  aspect-ratio: auto;
  mix-blend-mode: normal;
}

.product-page-copy {
  position: relative;
  z-index: 1;
}

.product-page-copy h1 {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.02;
  font-weight: 760;
}

.product-page-slogan {
  max-width: 720px;
  margin: 18px 0 0;
  color: color-mix(in srgb, var(--accent) 76%, #063d25);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 720;
  line-height: 1.16;
}

.product-tags span {
  border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  border-radius: 6px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--accent) 12%, white);
}

.product-spec-image {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 36px;
  overflow: hidden;
  border: 1px solid rgba(8,114,55,0.11);
  border-radius: 8px;
  background: white;
  box-shadow: 0 34px 110px rgba(7,31,24,0.11);
}

.product-spec-image img {
  width: 100%;
}

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

.product-info-card {
  border-color: rgba(8,114,55,0.11);
  background: rgba(255,255,255,0.84);
}

.product-info-card h2 {
  font-size: clamp(24px, 2.35vw, 36px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.related-grid a {
  min-height: 290px;
  display: grid;
  align-content: end;
  gap: 10px;
  border: 1px solid rgba(8,114,55,0.11);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, white), white);
}

.related-grid img {
  height: 180px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7,31,24,0.13));
}

.related-grid strong {
  color: var(--deep);
  font-size: 18px;
  line-height: 1.12;
}

.related-grid span {
  color: var(--muted);
  font-weight: 760;
}

.admin,
.uikit {
  width: min(calc(100% - 36px), var(--max));
}

.admin-panel,
.uikit .section-copy {
  border: 1px solid rgba(8,114,55,0.1);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 28px 90px rgba(7,31,24,0.1);
}

.cms-editor {
  min-height: 68vh;
  border-color: rgba(8,114,55,0.14);
}

.uikit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kit-card {
  min-height: 170px;
  justify-content: end;
}

.swatch {
  height: 82px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroStageIn {
  from { opacity: 0; transform: translateY(26px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes productFloatPremium {
  0%, 100% { transform: translateY(var(--lift, 0)) rotateY(-4deg); }
  50% { transform: translateY(calc(var(--lift, 0) - 12px)) rotateY(3deg); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .buy-inner,
  .x5-panel,
  .map-section,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(5n) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 12px;
    width: min(calc(100% - 24px), var(--max));
    min-height: 68px;
  }

  .brand-mark img {
    width: 154px;
  }

  .site-nav:not(.static) {
    inset: 84px 12px auto;
    border-radius: 8px;
    padding: 14px;
  }

  .site-nav:not(.static) a {
    justify-content: center;
    min-height: 52px;
    font-size: 16px;
  }

  .hero {
    padding-top: 116px;
    background:
      linear-gradient(180deg, rgba(250,253,247,0.97), rgba(241,248,237,0.78)),
      url("assets/generated/papa-clean-man-product.jpg") center top / auto 72% no-repeat;
  }

  .hero::before {
    inset: 96px 12px auto;
    width: auto;
    height: 62svh;
    transform: none;
  }

  h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.08;
  }

  .hero-proofbar,
  .market-mini,
  .city-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 470px;
    padding: 0;
  }

  .stage-glass {
    inset: 4% -18px 4%;
  }

  .hero-products {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    width: calc(100vw - 24px);
    padding: 56px 24px 84px;
    scrollbar-width: none;
  }

  .hero-products::-webkit-scrollbar {
    display: none;
  }

  .product-mini {
    flex: 0 0 128px;
    max-width: 128px;
  }

  .product-mini img {
    height: 292px;
  }

  .stage-caption {
    left: 24px;
    right: 24px;
    text-align: center;
  }

  .catalog-grid,
  .advantage-grid,
  .stats-grid,
  .product-sections,
  .uikit-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(5n) {
    min-height: auto;
    grid-column: auto;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 390px;
    min-height: 390px;
  }

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

  .x5-visual {
    min-height: 560px;
  }

  .retail-card {
    position: relative;
    width: 100%;
    top: 0;
  }

  .retail-map {
    inset: auto 0 0 0;
    height: 330px;
  }

  .product-cutout-stage {
    min-height: 520px;
  }

  .product-cutout-stage img {
    max-height: 460px;
  }
}

@media (max-width: 560px) {
  .section-band {
    padding: 78px 18px;
  }

  .site-header {
    width: calc(100% - 24px);
    padding: 10px;
  }

  .brand-mark img {
    width: 138px;
  }

  .menu-toggle {
    min-height: 48px;
    padding: 10px 15px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

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

  .hero-proofbar span {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .hero-proofbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-products {
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .product-mini {
    flex-basis: 108px;
    max-width: 108px;
  }

  .product-mini img {
    height: 236px;
  }

  .button {
    width: 100%;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 350px;
    min-height: 350px;
  }

  .product-content {
    padding: 26px;
  }

  .product-content h3 {
    font-size: 26px;
  }

  .product-slogan {
    font-size: 16px;
  }

  .x5-panel,
  .russia-map,
  .lead-form,
  .product-info-card,
  .admin-panel,
  .uikit .section-copy {
    padding: 24px;
  }

  .product-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-page-copy h1 {
    font-size: 34px;
  }

  .product-page-slogan {
    font-size: 20px;
  }

.product-spec-image {
    width: calc(100% - 36px);
  }
}

/* Premium layout locks after visual QA */
@media (min-width: 861px) {
  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1;
  }

  .hero-subtitle {
    max-width: 560px;
    margin-top: 22px;
  }

  .hero-proofbar {
    margin-top: 32px;
  }

  .hero-proofbar span {
    min-height: 56px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-products {
    padding: 30px 22px 64px;
  }

  .product-mini img {
    height: clamp(220px, 21vw, 305px);
  }

  .product-card,
  .product-card:nth-child(5n) {
    grid-column: auto;
    display: flex;
    min-height: 650px;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 380px;
    min-height: 380px;
  }
}

/* Executive brand layer */
:root {
  --deep: #04351f;
  --deep-2: #071f18;
  --green: #087237;
  --fresh: #8fbf38;
  --lime: #c7e875;
  --ink: #101611;
  --muted: #65736b;
  --line: #dfe9df;
  --paper: #f8fbf4;
  --soft: #eef6ea;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 24, 0.09);
  --shadow-strong: 0 44px 130px rgba(7, 31, 24, 0.16);
  --max: 1440px;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

body {
  background:
    linear-gradient(90deg, rgba(4, 53, 31, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, #fbfdf9 0%, #f2f8ef 48%, #fbfdf9 100%);
  color: var(--ink);
}

body::before {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.92), rgba(255,255,255,0.18) 54%, rgba(8,114,55,0.06)),
    repeating-linear-gradient(90deg, rgba(4,53,31,0.026) 0 1px, transparent 1px 180px);
}

.site-header {
  top: 18px;
  width: min(calc(100% - 42px), 1480px);
  min-height: 66px;
  border: 1px solid rgba(255,255,255,0.78);
  border-bottom-color: rgba(8,114,55,0.12);
  border-radius: 8px;
  padding: 10px 12px 10px 16px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 22px 76px rgba(7,31,24,0.10);
  backdrop-filter: blur(26px) saturate(1.18);
}

.brand-mark img {
  width: 150px;
}

.site-nav {
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(8,114,55,0.08);
  border-radius: 8px;
  background: rgba(248,251,244,0.76);
}

.site-nav a {
  min-height: 38px;
  border-radius: 6px;
  padding: 8px 13px;
  color: rgba(7,31,24,0.76);
  font-size: 12px;
  font-weight: 720;
}

.site-nav a:hover {
  background: var(--deep);
  color: #fff;
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 4.75vw, 72px);
  line-height: 0.98;
  font-weight: 760;
}

h2 {
  font-size: clamp(32px, 3.55vw, 56px);
  line-height: 1.03;
  font-weight: 730;
}

h3 {
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.13;
  font-weight: 730;
}

.section-band {
  padding: clamp(92px, 9vw, 154px) clamp(18px, 3vw, 34px);
}

.eyebrow {
  min-height: 26px;
  margin-bottom: 16px;
  border-color: rgba(8,114,55,0.15);
  border-radius: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.72);
  color: rgba(8,114,55,0.86);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.hero {
  min-height: 100svh;
  grid-template-columns: minmax(340px, 0.78fr) minmax(660px, 1.22fr);
  gap: clamp(28px, 5vw, 86px);
  padding: clamp(124px, 11vw, 168px) max(24px, calc((100vw - var(--max)) / 2)) clamp(56px, 6vw, 88px);
  background:
    linear-gradient(116deg, rgba(251,253,249,0.99) 0%, rgba(255,255,255,0.96) 43%, rgba(232,243,227,0.82) 100%) !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px max(24px, calc((100vw - var(--max)) / 2)) 44px auto;
  width: min(58vw, 880px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.22)),
    linear-gradient(90deg, rgba(8,114,55,0.07) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(8,114,55,0.09), rgba(255,255,255,0.16));
  box-shadow: 0 52px 150px rgba(7,31,24,0.11), inset 0 1px 0 rgba(255,255,255,0.92);
  transform: none;
}

.hero::after {
  height: 18vh;
  background: linear-gradient(180deg, rgba(248,251,244,0), var(--paper));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(44px, 4.65vw, 76px);
  line-height: 0.98;
  font-weight: 760;
}

.hero-subtitle,
.section-copy p,
.section-head p,
.x5-panel p,
.map-copy p,
.contact-list {
  color: rgba(16,22,17,0.64);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.62;
}

.hero-subtitle {
  max-width: 500px;
  margin-top: 22px;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  border-radius: 6px;
  padding: 13px 19px;
  font-size: 14px;
  font-weight: 760;
}

.button.primary {
  background: linear-gradient(180deg, #0b6737, #042719);
  box-shadow: 0 20px 48px rgba(4,53,31,0.24), inset 0 1px 0 rgba(255,255,255,0.22);
}

.button.primary:hover {
  background: linear-gradient(180deg, #0d7d42, #042719);
}

.button.secondary {
  background: rgba(255,255,255,0.78);
  border-color: rgba(4,53,31,0.16);
}

.hero-proofbar {
  max-width: 560px;
  margin-top: 34px;
  border-radius: 8px;
  border: 1px solid rgba(8,114,55,0.12);
  background: rgba(255,255,255,0.62);
}

.hero-proofbar span {
  min-height: 52px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 740;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 650px;
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(241,248,237,0.62)),
    linear-gradient(90deg, rgba(8,114,55,0.07) 1px, transparent 1px) 0 0 / 76px 76px;
  box-shadow: 0 42px 140px rgba(7,31,24,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
}

.stage-glass {
  inset: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.68);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.52), rgba(255,255,255,0.18)),
    linear-gradient(180deg, rgba(8,114,55,0.05), rgba(8,114,55,0));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}

.hero-products {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 100%;
  padding: 64px 36px 92px;
}

.product-mini {
  flex: 0 0 clamp(92px, 7.2vw, 128px);
  max-width: clamp(92px, 7.2vw, 128px);
  margin: -10px -2px;
}

.product-mini img {
  height: clamp(250px, 19vw, 360px);
  width: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 30px rgba(7,31,24,0.16));
}

.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  height: clamp(285px, 21vw, 405px);
}

.stage-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  border-color: rgba(255,255,255,0.66);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 54px rgba(7,31,24,0.10);
  backdrop-filter: blur(18px);
}

.section-grid,
.media-copy-layout,
.contact-layout {
  width: min(100%, var(--max));
  gap: clamp(44px, 7vw, 112px);
}

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

.intel-card,
.benefit-card,
.stat-card,
.kit-card {
  border-color: rgba(8,114,55,0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.68)),
    linear-gradient(135deg, rgba(8,114,55,0.04), rgba(255,255,255,0));
  box-shadow: 0 26px 82px rgba(7,31,24,0.08);
}

.intel-card {
  min-height: 128px;
  display: flex;
  align-items: end;
  padding: 22px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.about-media,
.wide-image {
  border-radius: 8px;
  border: 1px solid rgba(8,114,55,0.1);
  box-shadow: 0 34px 110px rgba(7,31,24,0.11);
}

.about-media {
  min-height: 620px;
}

.about-media img {
  object-position: 58% center;
  transform: none;
}

.wide-image {
  width: min(100%, 1500px);
}

.wide-image img {
  object-fit: cover;
}

.catalog {
  background:
    linear-gradient(180deg, #fff, #f2f8ef 55%, #fff),
    linear-gradient(90deg, rgba(8,114,55,0.04) 1px, transparent 1px) 0 0 / 84px 84px;
}

.catalog-grid {
  width: min(100%, var(--max));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.product-card:nth-child(5n) {
  grid-column: auto;
  display: flex;
  min-height: 650px;
  border-radius: 8px;
  border-color: rgba(8,114,55,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, white), #fff 62%);
  box-shadow: 0 28px 92px rgba(7,31,24,0.09);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 120px rgba(7,31,24,0.14);
}

.product-media,
.product-card:nth-child(5n) .product-media {
  height: 372px;
  min-height: 372px;
  padding: 34px 28px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.84)),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 8%, white) 1px, transparent 1px) 0 0 / 64px 64px;
}

.product-media img {
  width: 82%;
  filter: drop-shadow(0 26px 30px rgba(7,31,24,0.15));
}

.sku-index {
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 720;
}

.category-pill {
  top: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 740;
}

.product-content {
  padding: 28px;
}

.product-content h3 {
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 720;
}

.product-slogan {
  margin-top: 12px;
  color: color-mix(in srgb, var(--accent) 68%, #063d25);
  font-size: 15px;
  font-weight: 660;
}

.product-benefits {
  margin: 22px 0 26px;
  gap: 10px;
  font-size: 15px;
}

.price-line {
  font-size: 22px;
  font-weight: 760;
}

.advantage-grid {
  width: min(100%, var(--max));
  gap: 18px;
}

.benefit-card {
  min-height: 240px;
  padding: 28px;
}

.benefit-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 720;
}

.buy {
  min-height: 92svh;
  background:
    linear-gradient(135deg, #041f18, #07351f 58%, #0a5c31),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 86px 86px;
}

.market-grid {
  gap: 18px;
}

.market-card {
  min-height: 220px;
  border-radius: 8px;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
}

.market-card strong {
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 720;
}

.x5-panel,
.russia-map,
.lead-form,
.product-info-card,
.admin-panel,
.uikit .section-copy {
  border-radius: 8px;
}

.x5-panel {
  min-height: 560px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.95), rgba(255,255,255,0.62)),
    linear-gradient(90deg, rgba(8,114,55,0.055) 1px, transparent 1px) 0 0 / 78px 78px;
}

.retail-card strong {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 720;
}

.map-section {
  background:
    linear-gradient(135deg, #041f18, #07351f 55%, #0a6234),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 86px 86px;
}

.stat-card {
  min-height: 190px;
  padding: 26px;
}

.stat-value {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 760;
}

.partners {
  background:
    linear-gradient(180deg, #f7fbf5, #ffffff),
    linear-gradient(90deg, rgba(8,114,55,0.045) 1px, transparent 1px) 0 0 / 84px 84px;
}

.product-hero {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.96), rgba(239,247,235,0.86)),
    linear-gradient(90deg, rgba(8,114,55,0.055) 1px, transparent 1px) 0 0 / 86px 86px;
}

.product-page-copy h1 {
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 730;
}

.product-page-slogan {
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 680;
}

.product-info-card h2 {
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 720;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero::before {
    inset: auto 18px 30px;
    width: auto;
    height: 48%;
  }

  .hero-stage {
    min-height: 540px;
  }

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

@media (max-width: 860px) {
  .site-header {
    top: 12px;
    min-height: 62px;
  }

  .brand-mark img {
    width: 134px;
  }

  .menu-toggle {
    min-height: 44px;
    font-size: 14px;
  }

  .hero {
    padding: 108px 18px 52px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-products {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    width: calc(100vw - 36px);
    padding: 52px 22px 76px;
  }

  .product-mini {
    flex: 0 0 104px;
    max-width: 104px;
    margin: 0 -4px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 240px;
  }

  .catalog-grid,
  .advantage-grid,
  .stats-grid,
  .market-grid,
  .product-sections,
  .related-grid,
  .intel-list {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(5n) {
    min-height: auto;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 330px;
    min-height: 330px;
  }

  .product-content h3 {
    font-size: 24px;
  }

  .product-page-copy h1 {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .section-band {
    padding: 76px 18px;
  }

  .hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-proofbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proofbar span {
    min-height: 42px;
    font-size: 11px;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 310px;
    min-height: 310px;
  }

  .product-slogan,
  .product-benefits {
    font-size: 14px;
  }
}

/* Hero stage QA refinements */
.hero-stage {
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-products {
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 58px 28px 82px;
}

.product-mini {
  flex: 0 0 clamp(58px, 5.25vw, 82px);
  max-width: clamp(58px, 5.25vw, 82px);
  margin: 0 -2px;
}

.product-mini img {
  height: clamp(245px, 20vw, 355px);
}

.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  height: clamp(280px, 23vw, 410px);
}

@media (max-width: 1120px) {
  .hero-stage {
    min-height: 430px;
  }

  .hero-products {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 42px 26px 72px;
    scrollbar-width: none;
  }

  .hero-products::-webkit-scrollbar {
    display: none;
  }

  .product-mini {
    flex-basis: 86px;
    max-width: 86px;
  }
}

@media (max-width: 560px) {
  .hero {
    gap: 24px;
    padding-bottom: 34px;
  }

  .hero-stage {
    min-height: 300px;
  }

  .hero-products {
    width: calc(100vw - 36px);
    padding: 28px 18px 58px;
  }

  .product-mini {
    flex-basis: 76px;
    max-width: 76px;
    margin: 0 -3px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 188px;
  }

  .stage-caption {
    left: 18px;
    right: 18px;
    bottom: 16px;
    font-size: 11px;
  }
}

/* Product stage final scale */
.hero-stage {
  min-height: 515px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,248,235,0.72)),
    linear-gradient(90deg, rgba(8,114,55,0.09) 1px, transparent 1px) 0 0 / 72px 72px;
}

.hero-products {
  padding: 30px 24px 74px;
}

.product-mini {
  flex-basis: clamp(54px, 5.8vw, 74px);
  max-width: clamp(54px, 5.8vw, 74px);
  margin: 0 -3px;
}

.product-mini img {
  height: clamp(300px, 25vw, 430px);
  filter: drop-shadow(0 34px 34px rgba(7,31,24,0.19));
}

.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  height: clamp(340px, 29vw, 500px);
}

@media (max-width: 1120px) {
  .hero-stage {
    min-height: 360px;
  }

  .hero-products {
    padding: 22px 22px 62px;
  }

  .product-mini {
    flex-basis: 76px;
    max-width: 76px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 268px;
  }

  .hero-products {
    padding: 18px 16px 50px;
  }

  .product-mini {
    flex-basis: 70px;
    max-width: 70px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 202px;
  }
}

/* Hero product theater contrast */
.hero-stage {
  border-color: rgba(255,255,255,0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(145deg, #05281b, #0a4f2b 58%, #0f703c);
  box-shadow: 0 48px 150px rgba(7,31,24,0.22), inset 0 1px 0 rgba(255,255,255,0.16);
}

.stage-glass {
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(199,232,117,0.10), rgba(255,255,255,0));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.product-mini img {
  opacity: 1;
  filter: drop-shadow(0 38px 38px rgba(0,0,0,0.34)) drop-shadow(0 8px 14px rgba(0,0,0,0.14));
}

.stage-caption {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.88);
  color: var(--deep);
  box-shadow: 0 18px 56px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.92);
}

/* Million-dollar brand pass */
:root {
  --deep: #032719;
  --green: #087237;
  --green-2: #0d8a42;
  --lime: #b7ec38;
  --mint: #edf8ea;
  --porcelain: #fbfdf8;
  --paper: #ffffff;
  --ink: #061f16;
  --muted: #53665c;
  --line: rgba(6, 52, 32, 0.12);
  --soft-shadow: 0 30px 90px rgba(4, 33, 22, 0.11);
  --brand-shadow: 0 54px 160px rgba(4, 33, 22, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 114, 55, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #ffffff 0%, #f5faf2 42%, #ffffff 100%);
  text-rendering: geometricPrecision;
}

.site-shell {
  overflow: clip;
}

.site-header {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 70px rgba(4, 33, 22, 0.12);
  backdrop-filter: blur(24px) saturate(1.25);
}

.site-nav a,
.menu-toggle {
  letter-spacing: 0;
}

.site-nav a {
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover {
  background: rgba(8, 114, 55, 0.08);
  transform: translateY(-1px);
}

.eyebrow {
  letter-spacing: 0.02em;
  color: var(--green);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 240, 0.92) 48%, rgba(231, 246, 225, 0.82) 100%),
    url("assets/generated/papa-clean-man-product.jpg") right top / auto 100% no-repeat;
}

.hero::after {
  content: "PAPA CLEAN";
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: clamp(22px, 4vw, 54px);
  z-index: -1;
  color: rgba(3, 39, 25, 0.045);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 900;
  line-height: 0.78;
  white-space: nowrap;
  pointer-events: none;
}

.hero-copy {
  padding-top: clamp(18px, 5vw, 62px);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 760;
}

.hero-subtitle,
.section-copy p,
.section-head > p {
  color: var(--muted);
}

.button {
  border-radius: 8px;
  min-height: 52px;
  padding: 15px 22px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background:
    linear-gradient(135deg, #0b8b43, #032719 92%);
  box-shadow: 0 18px 46px rgba(8, 114, 55, 0.24);
}

.button.secondary {
  border-color: rgba(6, 52, 32, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--deep);
}

.hero-proofbar {
  gap: 10px;
}

.hero-proofbar span {
  border: 1px solid rgba(8, 114, 55, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(4, 33, 22, 0.08);
}

.hero-stage {
  overflow: hidden;
  min-height: clamp(440px, 45vw, 640px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(145deg, #021f15, #074527 56%, #108043);
  box-shadow: var(--brand-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 6% 18%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: skewX(-6deg);
  pointer-events: none;
}

.hero-products {
  gap: 0;
  padding: 26px 24px 76px;
}

.product-mini {
  transform-style: preserve-3d;
}

.product-mini img {
  opacity: 1;
  filter: drop-shadow(0 42px 42px rgba(0, 0, 0, 0.36)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.14));
}

.stage-caption {
  backdrop-filter: blur(18px) saturate(1.2);
}

.section-band {
  position: relative;
  padding-top: clamp(96px, 9vw, 150px);
  padding-bottom: clamp(96px, 9vw, 150px);
}

.section-copy h2,
.section-head h2 {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 740;
}

.section-copy.centered h2,
.section-copy.centered p {
  margin-left: auto;
  margin-right: auto;
}

.brand-intel {
  background:
    linear-gradient(180deg, #fbfdf8, #ffffff);
}

.intel-card {
  position: relative;
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(6, 52, 32, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 56px rgba(4, 33, 22, 0.07);
}

.intel-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 30px;
  height: 3px;
  background: var(--green);
}

.about {
  background: #ffffff;
}

.about-media,
.wide-image,
.product-spec-image {
  border-radius: 8px;
  box-shadow: var(--brand-shadow);
}

.about-media {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(3, 39, 25, 0.08), rgba(255, 255, 255, 0)),
    #f6faf3;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: linear-gradient(90deg, rgba(247, 251, 245, 1), rgba(247, 251, 245, 0.98) 62%, rgba(247, 251, 245, 0.72) 84%, rgba(247, 251, 245, 0));
  pointer-events: none;
}

.about-media img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.52);
  transform-origin: 88% center;
}

.lineup-showcase {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef8eb 100%);
}

.wide-image {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #062719;
}

.wide-image::after {
  content: "10 SKU / DAILY CLEAN SYSTEM";
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.catalog {
  background:
    linear-gradient(180deg, #f7fbf4 0%, #ffffff 40%, #f5faf2 100%);
}

.section-head {
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.catalog-grid {
  gap: clamp(16px, 2vw, 24px);
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 52, 32, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 244, 0.92));
  box-shadow: 0 28px 86px rgba(4, 33, 22, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, rgba(6, 52, 32, 0.14));
  box-shadow: 0 46px 120px rgba(4, 33, 22, 0.16);
  transform: translateY(-8px);
}

.product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 62px 62px,
    linear-gradient(145deg, #062719, color-mix(in srgb, var(--accent) 58%, #062719));
}

.product-media::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 24px;
  height: 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  filter: blur(14px);
}

.product-media img {
  z-index: 1;
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.34));
}

.sku-index,
.category-pill {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep);
  backdrop-filter: blur(14px);
}

.product-content {
  background: rgba(255, 255, 255, 0.74);
}

.product-content h3 {
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.06;
  font-weight: 780;
}

.product-slogan {
  color: color-mix(in srgb, var(--accent) 70%, var(--deep));
  font-weight: 760;
}

.product-benefits li {
  color: #344c40;
}

.price-line {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, rgba(6, 52, 32, 0.12));
  border-radius: 8px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--accent) 11%, white);
  color: var(--deep);
  font-size: 22px;
  font-weight: 900;
}

.market-mini span {
  border-color: rgba(6, 52, 32, 0.11);
  background: rgba(255, 255, 255, 0.76);
}

.advantage-grid {
  gap: clamp(14px, 1.7vw, 22px);
}

.benefit-card {
  min-height: 250px;
  border: 1px solid rgba(6, 52, 32, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 249, 238, 0.86));
  box-shadow: 0 24px 76px rgba(4, 33, 22, 0.09);
}

.benefit-card::before {
  background:
    linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0));
}

.benefit-card h3 {
  font-size: clamp(23px, 2vw, 32px);
}

.buy {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(145deg, #021c13, #062719 48%, #0b6d38);
}

.buy .section-copy h2,
.buy .section-copy p,
.buy .eyebrow {
  color: #ffffff;
}

.buy .section-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.market-card {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, color-mix(in srgb, var(--market) 28%, #062719), rgba(255, 255, 255, 0.02));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.market-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.32);
}

.market-card span {
  color: rgba(255, 255, 255, 0.72);
}

.market-line {
  background: rgba(255, 255, 255, 0.78);
}

.x5 {
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f8ef 100%);
}

.x5-panel {
  overflow: hidden;
  border: 1px solid rgba(6, 52, 32, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 235, 0.86));
  box-shadow: var(--brand-shadow);
}

.x5-panel::before {
  content: "RETAIL READY";
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  top: clamp(18px, 4vw, 52px);
  color: rgba(3, 39, 25, 0.06);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.86;
}

.x5-visual {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(145deg, #032719, #0a6b34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.retail-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.retail-map {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 58px 58px;
}

.map-section {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(135deg, #021d14, #052d1d 52%, #0a7439);
  color: #ffffff;
}

.map-copy h2,
.map-copy p,
.map-copy .eyebrow {
  color: #ffffff;
}

.map-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.search-field,
.map-result {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.search-field span,
.map-result {
  color: rgba(255, 255, 255, 0.72);
}

.search-field input {
  color: #ffffff;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.map-filters button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.map-filters button.active {
  background: #ffffff;
  color: var(--deep);
}

.russia-map {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 46px 130px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.map-land {
  fill: rgba(255, 255, 255, 0.18);
  stroke: rgba(255, 255, 255, 0.72);
}

.map-line {
  stroke: rgba(183, 236, 56, 0.7);
}

.map-point circle:first-child {
  fill: rgba(183, 236, 56, 0.18);
}

.map-point circle:nth-child(2) {
  fill: var(--lime);
}

.map-point text {
  fill: #ffffff;
}

.map-notice {
  color: rgba(255, 255, 255, 0.68);
}

.city-list button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.city-list button span {
  color: rgba(255, 255, 255, 0.62);
}

.stats {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
}

.stat-card {
  border: 1px solid rgba(6, 52, 32, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 239, 0.88));
  box-shadow: 0 24px 74px rgba(4, 33, 22, 0.09);
}

.stat-value {
  color: var(--deep);
}

.partners {
  background:
    linear-gradient(180deg, #f7fbf4 0%, #ffffff 100%);
}

.lead-form {
  border: 1px solid rgba(6, 52, 32, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 243, 0.86));
  box-shadow: var(--soft-shadow);
}

.lead-form label {
  color: #31493d;
}

.lead-form input,
.lead-form textarea {
  border-color: rgba(6, 52, 32, 0.14);
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lead-form input:focus,
.lead-form textarea:focus,
.search-field input:focus {
  outline: none;
  border-color: rgba(8, 114, 55, 0.42);
  box-shadow: 0 0 0 4px rgba(8, 114, 55, 0.11);
}

.contacts {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faf2 100%);
}

.contact-item,
.footer-marketplaces span {
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background:
    linear-gradient(180deg, #032719, #02150f);
}

/* Product landing: flagship presentation */
.product-body {
  background:
    linear-gradient(90deg, rgba(8, 114, 55, 0.034) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, #fbfdf8 0%, #eef7eb 48%, #ffffff 100%);
}

.product-hero.product-landing {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(122px, 11vw, 168px) max(24px, calc((100vw - var(--max)) / 2)) clamp(60px, 7vw, 96px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 235, 0.9)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.05) 1px, transparent 1px) 0 0 / 86px 86px;
  isolation: isolate;
}

.product-landing::before {
  display: none;
}

.product-hero.product-landing::after {
  content: "PAPA CLEAN";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: clamp(28px, 4vw, 64px);
  z-index: -1;
  color: rgba(3, 39, 25, 0.05);
  font-size: clamp(82px, 13vw, 190px);
  font-weight: 900;
  line-height: 0.82;
  pointer-events: none;
}

.product-hero-media {
  min-height: clamp(560px, 55vw, 720px);
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-cutout-stage {
  position: relative;
  width: min(100%, 640px);
  min-height: clamp(560px, 52vw, 710px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(145deg, #032719, color-mix(in srgb, var(--accent) 56%, #032719));
  box-shadow: 0 52px 150px rgba(4, 33, 22, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.product-cutout-stage::before {
  content: "";
  position: absolute;
  inset: 8% 10% 12%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: skewX(-7deg);
}

.product-cutout-stage::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 58px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(18px);
}

.product-cutout-stage img {
  position: relative;
  z-index: 1;
  width: min(68%, 430px);
  max-height: clamp(470px, 46vw, 630px);
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 44px 42px rgba(0, 0, 0, 0.38)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

.product-page-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  border: 1px solid rgba(6, 52, 32, 0.11);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 96px rgba(4, 33, 22, 0.1);
  backdrop-filter: blur(18px) saturate(1.14);
}

.product-page-copy h1 {
  max-width: 620px;
  color: var(--deep);
  font-size: clamp(36px, 3.8vw, 60px);
  line-height: 1.02;
  font-weight: 780;
}

.product-page-slogan {
  margin-top: 18px;
  color: color-mix(in srgb, var(--accent) 72%, var(--deep));
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.16;
  font-weight: 780;
}

.product-page-copy .hero-subtitle {
  max-width: 560px;
  margin-top: 14px;
  color: #41584c;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}

.product-tags {
  margin: 24px 0 0;
}

.product-tags span {
  border: 1px solid color-mix(in srgb, var(--accent) 26%, rgba(6, 52, 32, 0.12));
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--deep);
  font-weight: 880;
}

.product-page-copy .market-buttons {
  margin-top: 28px;
}

.market-buttons .button {
  min-width: 150px;
}

.product-spec-image {
  margin-top: 0;
}

.product-info-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 244, 0.88));
  box-shadow: 0 24px 78px rgba(4, 33, 22, 0.08);
}

.product-info-card h2 {
  color: var(--deep);
  font-size: clamp(23px, 2vw, 32px);
}

.related-grid a {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.related-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 76px rgba(4, 33, 22, 0.1);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 248, 235, 0.9)),
      url("assets/generated/papa-clean-man-product.jpg") center top / auto 64% no-repeat;
  }

  .hero::after {
    font-size: clamp(68px, 18vw, 150px);
  }

  .product-hero.product-landing {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-page-copy {
    max-width: none;
  }
}

@media (max-width: 860px) {
  body {
    background:
      linear-gradient(180deg, #ffffff, #f5faf2);
  }

  .site-header {
    backdrop-filter: blur(20px) saturate(1.2);
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-products {
    width: calc(100vw - 24px);
  }

  .section-band {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-media {
    min-height: 420px;
  }

  .about-media::after {
    width: 44%;
  }

  .about-media img {
    object-position: right center;
    transform: scale(1.64);
    transform-origin: 90% center;
  }

  .section-head {
    align-items: start;
  }

  .buy,
  .map-section {
    min-height: auto;
  }

  .market-card {
    min-height: 210px;
  }

  .product-hero.product-landing {
    min-height: auto;
    padding: 108px 18px 58px;
  }

  .product-hero-media {
    min-height: 430px;
  }

  .product-cutout-stage {
    min-height: 430px;
    width: 100%;
  }

  .product-cutout-stage img {
    width: min(64%, 300px);
    max-height: 370px;
  }

  .product-page-copy {
    padding: 24px;
  }

  .product-page-copy h1 {
    font-size: 32px;
  }

  .product-page-slogan {
    font-size: 19px;
  }

  .market-buttons .button {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hero::after,
  .product-hero.product-landing::after,
  .x5-panel::before {
    display: none;
  }

  .hero-actions,
  .market-buttons,
  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 292px;
  }

  .hero-products {
    padding-top: 18px;
    padding-bottom: 54px;
  }

  .product-mini {
    flex-basis: 76px;
    max-width: 76px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 204px;
  }

  .stage-caption {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .wide-image::after {
    left: 14px;
    right: 14px;
    width: fit-content;
    max-width: calc(100% - 28px);
    font-size: 10px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 330px;
    min-height: 330px;
  }

  .price-line {
    font-size: 20px;
  }

  .product-hero.product-landing {
    padding-top: 96px;
  }

  .product-hero-media,
  .product-cutout-stage {
    min-height: 370px;
  }

  .product-cutout-stage img {
    width: min(68%, 250px);
    max-height: 318px;
  }

  .product-page-copy h1 {
    font-size: 30px;
  }

  .product-page-copy .hero-subtitle {
    font-size: 15px;
  }
}

/* Product landing visual correction after QA */
.site-header.compact {
  min-height: 82px;
}

.site-header.compact .brand-mark img {
  width: 154px;
}

.product-hero.product-landing {
  min-height: calc(100svh - 92px);
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
  align-items: center;
}

.product-hero-media {
  min-height: clamp(470px, 42vw, 560px);
}

.product-cutout-stage {
  width: min(100%, 560px);
  min-height: clamp(470px, 42vw, 560px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(145deg, #02140e 0%, #032319 58%, color-mix(in srgb, var(--accent) 10%, #064326) 100%);
}

.product-cutout-stage::after {
  bottom: 42px;
}

.product-cutout-stage img {
  width: min(62%, 360px);
  max-height: clamp(395px, 36vw, 490px);
}

.product-page-copy {
  max-width: 620px;
  padding: clamp(28px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.84);
}

.product-landing .reveal {
  transition-duration: 0.55s;
}

.product-page-copy h1 {
  font-size: clamp(34px, 3.4vw, 54px);
}

.product-page-slogan {
  color: color-mix(in srgb, var(--accent) 52%, var(--deep));
}

.about-media::after {
  display: none;
}

.about-media img {
  object-position: center;
  transform: none;
}

@media (max-width: 860px) {
  .site-header.compact {
    min-height: 68px;
  }

  .site-header.compact .brand-mark img {
    width: 136px;
  }

  .product-hero.product-landing {
    padding-top: 32px;
  }
}

@media (max-width: 560px) {
  .product-hero-media,
  .product-cutout-stage {
    min-height: 340px;
  }

  .product-cutout-stage img {
    width: min(62%, 220px);
    max-height: 292px;
  }
}

/* Clean studio reset: removes presentation-like raster scenes */
#brand,
#catalog,
#buy,
#map,
#partners,
#contacts {
  scroll-margin-top: 116px;
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(183, 236, 56, 0.16), transparent 34%),
    radial-gradient(circle at 42% 78%, rgba(8, 114, 55, 0.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4faf1 100%);
}

.hero::before {
  display: none;
}

.hero h1 {
  max-width: 690px;
}

.hero-stage {
  min-height: clamp(390px, 35vw, 505px);
  border: 1px solid rgba(6, 52, 32, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 237, 0.9)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.055) 1px, transparent 1px) 0 0 / 72px 72px;
  box-shadow: 0 38px 120px rgba(4, 33, 22, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero-stage::before {
  inset: 9% 6% 18%;
  border-color: rgba(8, 114, 55, 0.12);
}

.stage-glass {
  inset: 7% 5% 14%;
  border-color: rgba(8, 114, 55, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 248, 234, 0.46));
}

.hero-products {
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2px, 0.55vw, 8px);
  padding: 30px 28px 72px;
}

.product-mini {
  flex-basis: clamp(58px, 5.7vw, 84px);
  max-width: clamp(58px, 5.7vw, 84px);
  margin: 0;
}

.product-mini img,
.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  height: clamp(260px, 24vw, 382px);
  image-rendering: auto;
  filter: drop-shadow(0 28px 28px rgba(4, 33, 22, 0.16));
}

.stage-caption {
  border-color: rgba(6, 52, 32, 0.11);
  background: rgba(255, 255, 255, 0.84);
  color: var(--deep);
  box-shadow: 0 18px 50px rgba(4, 33, 22, 0.1);
}

.brand-product-studio {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(6, 52, 32, 0.1);
  background:
    radial-gradient(circle at 72% 24%, rgba(183, 236, 56, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(8, 114, 55, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(145deg, #ffffff, #eef8eb);
  box-shadow: 0 34px 110px rgba(4, 33, 22, 0.13);
}

.brand-product-studio::before {
  content: "";
  position: absolute;
  inset: 9% 11% 14% 17%;
  border: 1px solid rgba(8, 114, 55, 0.12);
  border-radius: 8px;
  transform: skewX(-7deg);
}

.brand-product-studio::after {
  display: none;
}

.brand-product-studio .studio-product {
  position: absolute;
  z-index: 2;
  width: auto;
  object-fit: contain;
  opacity: 1;
  image-rendering: auto;
  transform: none;
  filter: drop-shadow(0 28px 30px rgba(4, 33, 22, 0.18));
}

.studio-product-main {
  right: 23%;
  bottom: 58px;
  height: min(70%, 470px);
}

.studio-product-side {
  right: 8%;
  bottom: 70px;
  height: min(52%, 350px);
  opacity: 0.92;
}

.studio-note {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 3;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100% - 44px));
  border: 1px solid rgba(6, 52, 32, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(4, 33, 22, 0.1);
  backdrop-filter: blur(16px);
}

.studio-note span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-note strong {
  color: var(--deep);
  font-size: 20px;
  line-height: 1.08;
}

.lineup-showcase {
  background:
    radial-gradient(circle at 50% 30%, rgba(183, 236, 56, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f1f8ee 100%);
}

.lineup-theater {
  position: relative;
  min-height: clamp(420px, 42vw, 540px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(6, 52, 32, 0.1);
  border-radius: 8px;
  padding: clamp(34px, 5vw, 60px) clamp(18px, 3vw, 38px) clamp(30px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 235, 0.92)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.05) 1px, transparent 1px) 0 0 / 76px 76px;
  box-shadow: 0 40px 130px rgba(4, 33, 22, 0.14);
}

.lineup-theater::before {
  content: "";
  position: absolute;
  inset: 10% 5% 18%;
  border: 1px solid rgba(8, 114, 55, 0.11);
  border-radius: 8px;
  transform: skewX(-5deg);
}

.lineup-theater::after {
  content: "10 SKU / фактическая линейка Papa Clean";
  left: clamp(18px, 3vw, 34px);
  right: auto;
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  width: auto;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(6, 52, 32, 0.12);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.lineup-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 1vw, 16px);
  width: 100%;
  padding-bottom: 36px;
}

.lineup-product {
  position: relative;
  flex: 0 1 clamp(68px, 7.2vw, 112px);
  max-width: clamp(68px, 7.2vw, 112px);
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
}

.lineup-product img {
  height: clamp(210px, 22vw, 320px);
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 26px 28px rgba(4, 33, 22, 0.16));
}

.lineup-product figcaption {
  display: grid;
  gap: 4px;
  width: 154px;
  min-height: 66px;
  border: 1px solid rgba(6, 52, 32, 0.1);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(4, 33, 22, 0.07);
}

.lineup-product figcaption span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.lineup-product figcaption strong {
  color: var(--deep);
  font-size: 12px;
  line-height: 1.08;
}

.product-media,
.product-card:nth-child(5n) .product-media {
  background:
    radial-gradient(circle at 54% 18%, color-mix(in srgb, var(--accent) 16%, white), transparent 34%),
    linear-gradient(180deg, #ffffff, #f1f8ee);
}

.product-media::after {
  background: rgba(4, 33, 22, 0.15);
  filter: blur(18px);
}

.product-media img {
  image-rendering: auto;
  filter: drop-shadow(0 26px 30px rgba(4, 33, 22, 0.16));
}

.product-card:hover .product-media img {
  filter: drop-shadow(0 30px 34px rgba(4, 33, 22, 0.18));
}

.sku-index,
.category-pill {
  border-color: rgba(6, 52, 32, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.buy {
  background:
    radial-gradient(circle at 76% 22%, rgba(183, 236, 56, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(145deg, #021c13, #062719 48%, #0b6d38);
}

.product-cutout-stage {
  border: 1px solid rgba(6, 52, 32, 0.1);
  background:
    radial-gradient(circle at 54% 18%, color-mix(in srgb, var(--accent) 12%, white), transparent 34%),
    linear-gradient(90deg, rgba(8, 114, 55, 0.045) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(180deg, #ffffff, #eef8eb);
  box-shadow: 0 38px 120px rgba(4, 33, 22, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-cutout-stage::before {
  border-color: rgba(8, 114, 55, 0.12);
}

.product-cutout-stage::after {
  background: rgba(4, 33, 22, 0.16);
}

.product-cutout-stage img {
  image-rendering: auto;
  filter: drop-shadow(0 30px 32px rgba(4, 33, 22, 0.18));
}

@media (max-width: 1180px) {
  .hero {
    background:
      radial-gradient(circle at 78% 20%, rgba(183, 236, 56, 0.14), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f4faf1 100%);
  }

  .lineup-rail {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 8px;
    scrollbar-width: none;
  }

  .lineup-rail::-webkit-scrollbar {
    display: none;
  }

  .lineup-product {
    flex-basis: 104px;
    max-width: 104px;
  }
}

@media (max-width: 860px) {
  #brand,
  #catalog,
  #buy,
  #map,
  #partners,
  #contacts {
    scroll-margin-top: 92px;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-products {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 28px 20px 64px;
    scrollbar-width: none;
  }

  .product-mini {
    flex-basis: 88px;
    max-width: 88px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 236px;
  }

  .brand-product-studio {
    min-height: 440px;
  }

  .studio-product-main {
    right: 30%;
    bottom: 44px;
    height: 310px;
  }

  .studio-product-side {
    right: 12%;
    bottom: 56px;
    height: 226px;
  }

  .studio-note {
    left: 18px;
    bottom: 18px;
    width: min(240px, calc(100% - 36px));
  }

  .lineup-theater {
    min-height: 430px;
    padding-inline: 14px;
  }

  .lineup-product img {
    height: 260px;
  }

  .lineup-product figcaption {
    width: 132px;
  }

  .map-section {
    padding-top: 108px;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 316px;
  }

  .product-mini {
    flex-basis: 76px;
    max-width: 76px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 204px;
  }

  .brand-product-studio {
    min-height: 390px;
  }

  .studio-product-main {
    right: 33%;
    bottom: 52px;
    height: 236px;
  }

  .studio-product-side {
    right: 10%;
    bottom: 62px;
    height: 178px;
  }

  .studio-note {
    padding: 13px;
  }

  .studio-note strong {
    font-size: 17px;
  }

  .lineup-theater {
    min-height: 390px;
  }

  .lineup-product {
    flex-basis: 88px;
    max-width: 88px;
  }

  .lineup-product img {
    height: 226px;
  }

  .lineup-product figcaption {
    width: 118px;
    min-height: 60px;
  }

  .lineup-product figcaption strong {
    font-size: 11px;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 300px;
    min-height: 300px;
  }

  .product-cutout-stage img {
    max-height: 280px;
  }
}

/* Hero product row fit fix */
.hero-products {
  gap: clamp(4px, 0.55vw, 8px);
}

.product-mini {
  flex-basis: clamp(48px, 4.55vw, 66px);
  max-width: clamp(48px, 4.55vw, 66px);
}

.product-mini img,
.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  height: clamp(232px, 21vw, 314px);
}

@media (max-width: 860px) {
  .hero-products {
    gap: 10px;
  }

  .product-mini {
    flex-basis: 82px;
    max-width: 82px;
  }
}

@media (max-width: 560px) {
  .product-mini {
    flex-basis: 72px;
    max-width: 72px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 196px;
  }
}

/* Final responsive lock */
section[id],
.section-band,
.section-full {
  scroll-margin-top: 118px;
}

.map-section {
  overflow: hidden;
}

.map-copy {
  position: relative;
  z-index: 2;
}

.russia-map {
  overflow: hidden;
}

.russia-map::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.russia-map svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.16));
}

.map-point {
  outline: none;
}

.map-point:focus circle:first-child,
.map-point.active circle:first-child {
  fill: rgba(183, 236, 56, 0.28);
}

.map-point:focus circle:nth-child(2),
.map-point.active circle:nth-child(2) {
  fill: #ffffff;
}

.x5-panel,
.russia-map,
.lead-form,
.product-page-copy,
.product-card,
.market-card,
.stat-card,
.benefit-card,
.intel-card {
  border-radius: 8px;
}

.product-card .button.secondary,
.market-buttons .button.secondary {
  background: rgba(255, 255, 255, 0.86);
}

.product-card .button.secondary:hover,
.market-buttons .button.secondary:hover {
  border-color: color-mix(in srgb, var(--accent, var(--green)) 34%, rgba(6, 52, 32, 0.16));
  box-shadow: 0 18px 50px rgba(4, 33, 22, 0.09);
}

.admin-panel,
.uikit .section-copy,
.kit-card,
.uikit-showcase {
  border-radius: 8px;
}

@media (min-width: 1181px) {
  .map-copy {
    align-self: center;
  }

  .russia-map {
    min-height: 620px;
    display: grid;
    align-content: center;
  }
}

@media (max-width: 1180px) {
  section[id],
  .section-band,
  .section-full {
    scroll-margin-top: 100px;
  }

  .x5-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .x5-visual {
    min-height: 470px;
  }

  .map-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .map-copy {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  section[id],
  .section-band,
  .section-full {
    scroll-margin-top: 92px;
  }

  .section-copy h2,
  .section-head h2,
  .map-copy h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .x5-panel {
    padding: 28px;
  }

  .x5-visual {
    min-height: 430px;
  }

  .retail-card {
    width: 100%;
  }

  .retail-map {
    left: 0;
    right: 0;
    height: 280px;
  }

  .map-section {
    min-height: auto;
    padding: 104px 18px 76px;
    gap: 22px;
  }

  .map-copy {
    max-width: none;
  }

  .map-copy p {
    font-size: 16px;
  }

  .search-field {
    margin-top: 22px;
  }

  .search-field input {
    min-height: 54px;
  }

  .map-result {
    min-height: auto;
    padding: 16px;
  }

  .russia-map {
    width: 100%;
    padding: 16px;
  }

  .russia-map svg {
    min-height: 260px;
  }

  .city-list {
    grid-template-columns: 1fr;
  }

  .city-list button {
    min-height: 66px;
  }

  .product-sections {
    padding-bottom: 76px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
  }

  .brand-mark img {
    width: 132px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-stage {
    width: 100%;
  }

  .section-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-media {
    min-height: 390px;
  }

  .lineup-showcase .section-copy.centered {
    text-align: left;
  }

  .wide-image img {
    min-height: 360px;
    object-fit: cover;
    object-position: center;
  }

  .catalog-grid {
    gap: 18px;
  }

  .product-content {
    padding: 22px;
  }

  .product-content h3 {
    font-size: 23px;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-actions {
    gap: 12px;
  }

  .market-mini {
    grid-template-columns: 1fr;
  }

  .buy {
    padding: 76px 18px;
  }

  .market-card {
    min-height: 184px;
    padding: 22px;
  }

  .x5-panel {
    padding: 22px;
  }

  .x5-visual {
    min-height: 390px;
  }

  .retail-card {
    padding: 22px;
  }

  .retail-map {
    height: 250px;
  }

  .map-section {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .russia-map svg {
    min-height: 224px;
  }

  .lead-form {
    gap: 14px;
  }

  .contact-layout,
  .media-copy-layout,
  .media-copy-layout.reverse {
    gap: 28px;
  }
}

/* Green premium product theater, without clipped SKU edges */
.hero-stage {
  min-height: clamp(470px, 39vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(145deg, #032719 0%, #07572f 58%, #0b7a3d 100%);
  box-shadow: 0 48px 150px rgba(4, 33, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-stage::before {
  inset: 8% 6% 17%;
  border-color: rgba(255, 255, 255, 0.12);
}

.stage-glass {
  inset: 8% 5% 13%;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 248, 235, 0.82));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-products {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  margin: 0 auto;
  gap: clamp(5px, 0.55vw, 9px);
  padding: 38px 30px 84px;
}

.product-mini {
  flex: 0 0 clamp(46px, 4.25vw, 62px);
  max-width: clamp(46px, 4.25vw, 62px);
}

.product-mini img,
.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  width: 100%;
  height: clamp(235px, 20vw, 305px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 26px rgba(4, 33, 22, 0.2));
}

.stage-caption {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.lineup-showcase {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #032719 0%, #07572f 62%, #0b7a3d 100%);
  color: #ffffff;
}

.lineup-showcase .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #d8f48c;
}

.lineup-showcase .section-copy h2 {
  color: #ffffff;
}

.lineup-theater {
  min-height: clamp(470px, 42vw, 600px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: clamp(34px, 4vw, 56px) clamp(22px, 3vw, 42px) clamp(30px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 235, 0.86)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.045) 1px, transparent 1px) 0 0 / 76px 76px;
  box-shadow: 0 46px 140px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lineup-theater::before {
  inset: 10% 4% 17%;
  border-color: rgba(8, 114, 55, 0.11);
}

.lineup-rail {
  align-items: end;
  justify-content: space-between;
  gap: clamp(6px, 0.75vw, 14px);
  width: 100%;
  padding: 0 8px 50px;
}

.lineup-product {
  flex: 0 1 clamp(70px, 7vw, 102px);
  max-width: clamp(70px, 7vw, 102px);
}

.lineup-product img {
  width: 100%;
  height: clamp(255px, 24vw, 360px);
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 26px rgba(4, 33, 22, 0.16));
}

.lineup-product figcaption {
  width: clamp(102px, 8.8vw, 132px);
  min-height: 58px;
  border-color: rgba(6, 52, 32, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(4, 33, 22, 0.08);
}

.lineup-product figcaption strong {
  font-size: 11px;
}

@media (max-width: 1180px) {
  .hero-stage {
    min-height: 410px;
  }

  .hero-products {
    width: calc(100vw - 64px);
    justify-content: flex-start;
    overflow-x: auto;
    padding: 34px 24px 74px;
    scrollbar-width: none;
  }

  .hero-products::-webkit-scrollbar {
    display: none;
  }

  .product-mini {
    flex-basis: 72px;
    max-width: 72px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 236px;
  }

  .lineup-rail {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 10px;
    scrollbar-width: none;
  }

  .lineup-product {
    flex-basis: 96px;
    max-width: 96px;
  }
}

@media (max-width: 860px) {
  .hero-stage {
    min-height: 360px;
  }

  .hero-products {
    width: calc(100vw - 36px);
    padding: 28px 20px 66px;
  }

  .product-mini {
    flex-basis: 78px;
    max-width: 78px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 218px;
  }

  .lineup-theater {
    min-height: 450px;
  }

  .lineup-product img {
    height: 270px;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 330px;
  }

  .hero-products {
    padding: 26px 18px 62px;
  }

  .product-mini {
    flex-basis: 72px;
    max-width: 72px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 198px;
  }

  .lineup-theater {
    min-height: 408px;
    padding-inline: 14px;
  }

  .lineup-product {
    flex-basis: 86px;
    max-width: 86px;
  }

  .lineup-product img {
    height: 236px;
  }

  .lineup-product figcaption {
    width: 112px;
  }
}

/* Agency direction v2: premium federal brand */
:root {
  --agency-deep: #021b12;
  --agency-green: #06492a;
  --agency-green-2: #087237;
  --agency-lime: #c8e978;
  --agency-panel: #f7fbf3;
}

body {
  background:
    linear-gradient(90deg, rgba(6, 73, 42, 0.035) 1px, transparent 1px) 0 0 / 112px 112px,
    linear-gradient(180deg, #fbfdf8 0%, #eef7eb 44%, #ffffff 100%);
}

.site-header {
  top: 18px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 70px rgba(2, 27, 18, 0.14);
}

.brand-mark img {
  width: 178px;
}

.site-nav:not(.static) a,
.site-nav.static a {
  min-height: 46px;
  padding: 12px 16px;
  color: var(--agency-deep);
  font-size: 14px;
  font-weight: 820;
}

.hero {
  min-height: 100svh;
  padding-top: clamp(132px, 10vw, 172px);
  padding-bottom: clamp(58px, 6vw, 92px);
  background:
    radial-gradient(circle at 82% 20%, rgba(200, 233, 120, 0.22), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(11, 122, 61, 0.26), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(145deg, #021b12 0%, #04351f 58%, #087237 100%);
  color: #ffffff;
}

.hero::after {
  z-index: 0;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 2vw;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(96px, 15vw, 220px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(2, 27, 18, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(2, 27, 18, 0) 100%);
  opacity: 0.8;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--agency-lime);
}

.hero h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(52px, 5.9vw, 94px);
  line-height: 0.92;
  font-weight: 820;
}

.hero-subtitle {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.25vw, 21px);
}

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

.hero .button.primary {
  background: #ffffff;
  color: var(--agency-deep);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.hero-proofbar {
  max-width: 620px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.hero-proofbar span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 42vw, 690px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 50% 8%, rgba(200, 233, 120, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 58px 170px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stage::before {
  content: "10 SKU";
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  transform: none;
}

.stage-glass {
  position: absolute;
  inset: 74px 38px 92px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 248, 235, 0.9)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.045) 1px, transparent 1px) 0 0 / 62px 62px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-products {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  justify-items: center;
  gap: 18px 18px;
  margin: 0 auto;
  padding: 96px 58px 118px;
}

.product-mini {
  width: 100%;
  max-width: 96px;
  margin: 0;
  display: grid;
  place-items: end center;
  animation: none;
}

.product-mini img,
.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  width: auto;
  max-width: 100%;
  height: clamp(178px, 14vw, 230px);
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 22px 24px rgba(2, 27, 18, 0.18));
}

.stage-caption {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 34px;
  z-index: 3;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--agency-deep);
  text-align: center;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
}

.brand-intel {
  background:
    linear-gradient(180deg, #f7fbf3 0%, #ffffff 100%);
}

.section-copy h2,
.section-head h2 {
  font-weight: 800;
  letter-spacing: 0;
}

.intel-card,
.benefit-card,
.stat-card {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 86px rgba(2, 27, 18, 0.08);
}

.brand-product-studio {
  background:
    radial-gradient(circle at 72% 18%, rgba(200, 233, 120, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(145deg, #032719 0%, #07572f 72%, #0b7a3d 100%);
}

.brand-product-studio::before {
  inset: 9% 8% 12%;
  border-color: rgba(255, 255, 255, 0.16);
}

.studio-note {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.studio-product-main,
.studio-product-side {
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.24));
}

.catalog {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef7eb 44%, #ffffff 100%);
}

.catalog-grid {
  gap: 28px;
}

.product-card {
  border: 1px solid rgba(2, 27, 18, 0.08);
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(2, 27, 18, 0.1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 48px 130px rgba(2, 27, 18, 0.16);
}

.product-media,
.product-card:nth-child(5n) .product-media {
  min-height: 390px;
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 233, 120, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #edf8e9 100%);
}

.product-media img {
  max-height: 82%;
  filter: drop-shadow(0 28px 28px rgba(2, 27, 18, 0.16));
}

.sku-index {
  color: var(--agency-deep);
  font-size: clamp(42px, 4.6vw, 64px);
}

.product-content h3 {
  color: var(--agency-deep);
  font-size: clamp(24px, 2.1vw, 34px);
}

.lineup-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(200, 233, 120, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #021b12 0%, #06492a 60%, #087237 100%);
}

.lineup-showcase::before {
  content: "PAPA CLEAN";
  position: absolute;
  left: 50%;
  bottom: -0.15em;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(90px, 16vw, 230px);
  font-weight: 900;
  white-space: nowrap;
}

.lineup-theater {
  position: relative;
  z-index: 1;
  min-height: clamp(500px, 43vw, 640px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 235, 0.88)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.04) 1px, transparent 1px) 0 0 / 76px 76px;
  box-shadow: 0 52px 150px rgba(0, 0, 0, 0.22);
}

.lineup-rail {
  justify-content: center;
  gap: clamp(8px, 0.85vw, 16px);
  padding: 0 18px 56px;
}

.lineup-product {
  flex: 0 1 clamp(72px, 7vw, 104px);
  max-width: clamp(72px, 7vw, 104px);
}

.lineup-product img {
  width: auto;
  max-width: 100%;
  height: clamp(250px, 23vw, 350px);
}

.lineup-product figcaption {
  width: clamp(106px, 8.8vw, 136px);
}

.buy {
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 233, 120, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #021b12 0%, #06492a 56%, #087237 100%);
}

.market-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

/* Agency force layer: overrides older important prototype rules */
.hero {
  min-height: 100svh !important;
  padding-top: clamp(132px, 10vw, 172px) !important;
  padding-bottom: clamp(58px, 6vw, 92px) !important;
  background:
    radial-gradient(circle at 82% 20%, rgba(200, 233, 120, 0.22), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(11, 122, 61, 0.26), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(145deg, #021b12 0%, #04351f 58%, #087237 100%) !important;
  color: #ffffff !important;
}

.hero::before {
  display: none !important;
}

.hero h1 {
  color: #ffffff !important;
  font-size: clamp(52px, 5.9vw, 94px) !important;
  line-height: 0.92 !important;
  font-weight: 820 !important;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.72) !important;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--agency-lime) !important;
}

.hero-stage {
  min-height: clamp(560px, 42vw, 690px) !important;
  background:
    radial-gradient(circle at 50% 8%, rgba(200, 233, 120, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)) !important;
}

.stage-glass {
  inset: 74px 38px 92px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 248, 235, 0.9)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.045) 1px, transparent 1px) 0 0 / 62px 62px !important;
}

.hero-products {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  width: min(100%, 760px) !important;
  gap: 18px 18px !important;
  padding: 96px 58px 118px !important;
  overflow: visible !important;
}

.product-mini {
  width: 100% !important;
  max-width: 96px !important;
  flex: initial !important;
}

.product-mini img,
.product-mini:nth-child(6) img,
.product-mini:nth-child(7) img {
  width: auto !important;
  max-width: 100% !important;
  height: clamp(178px, 14vw, 230px) !important;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 126px;
  }

  .hero h1 {
    max-width: 850px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-products {
    width: min(100%, 760px);
    overflow: visible;
    padding: 96px 58px 118px;
  }
}

@media (max-width: 860px) {
  .brand-mark img {
    width: 150px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-stage {
    min-height: 560px;
  }

  .stage-glass {
    inset: 62px 18px 88px;
  }

  .hero-products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px 10px;
    width: 100%;
    padding: 86px 32px 112px;
  }

  .product-mini {
    max-width: 74px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 168px;
  }

  .stage-caption {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .lineup-theater {
    min-height: 470px;
  }

  .lineup-rail {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 12px;
    scrollbar-width: none;
  }

  .lineup-rail::-webkit-scrollbar {
    display: none;
  }

  .lineup-product {
    flex-basis: 96px;
    max-width: 96px;
  }

  .lineup-product img {
    height: 270px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .brand-mark img {
    width: 128px;
  }

  .hero {
    padding-top: 102px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1;
  }

  .hero-stage {
    min-height: 500px;
  }

  .stage-glass {
    inset: 58px 14px 84px;
  }

  .hero-products {
    gap: 10px 8px;
    padding: 82px 24px 104px;
  }

  .product-mini {
    max-width: 60px;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 145px;
  }

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

  .product-media,
  .product-card:nth-child(5n) .product-media {
    min-height: 320px;
  }

  .lineup-theater {
    min-height: 430px;
  }

  .lineup-product {
    flex-basis: 86px;
    max-width: 86px;
  }

  .lineup-product img {
    height: 236px;
  }
}

/* Studio-grade final polish: premium federal brand presentation */
:root {
  --studio-deep: #02170f;
  --studio-green: #063d25;
  --studio-green-2: #087237;
  --studio-lime: #c9ef6d;
  --studio-paper: #f8fbf4;
  --studio-ink: #061c13;
  --studio-muted: #66766b;
}

body {
  background:
    linear-gradient(90deg, rgba(6, 61, 37, 0.028) 1px, transparent 1px) 0 0 / 112px 112px,
    linear-gradient(180deg, #fbfdf8 0%, #f2f8ee 48%, #ffffff 100%);
}

.site-header {
  top: 18px !important;
  min-height: 74px;
  width: min(calc(100% - 44px), 1320px);
  padding: 9px 10px 9px 16px !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 20px 72px rgba(2, 23, 15, 0.15) !important;
  backdrop-filter: blur(24px) saturate(1.22);
}

.brand-mark img {
  width: 154px !important;
}

.site-nav {
  border: 1px solid rgba(6, 61, 37, 0.08);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.55);
}

.site-nav a {
  min-height: 42px !important;
  padding: 10px 14px !important;
  color: var(--studio-ink) !important;
  font-size: 13px !important;
  font-weight: 820 !important;
}

.site-nav a:hover {
  background: rgba(6, 61, 37, 0.08) !important;
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr) !important;
  align-items: center !important;
  gap: clamp(42px, 5vw, 82px) !important;
  min-height: 100svh !important;
  padding-top: clamp(116px, 8vw, 142px) !important;
  padding-bottom: clamp(38px, 4vw, 58px) !important;
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 239, 109, 0.22), transparent 29%),
    radial-gradient(circle at 11% 76%, rgba(14, 143, 69, 0.28), transparent 31%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #02170f 0%, #042c1d 54%, #087237 100%) !important;
  color: #ffffff !important;
}

.hero::after {
  content: "PAPA CLEAN" !important;
  z-index: 0 !important;
  left: max(24px, calc((100vw - var(--max)) / 2)) !important;
  bottom: 0.12em !important;
  color: rgba(255, 255, 255, 0.052) !important;
  font-size: clamp(86px, 13vw, 188px) !important;
  line-height: 0.78 !important;
}

.hero-copy {
  max-width: 680px !important;
  padding-top: 0 !important;
}

.hero h1 {
  max-width: 680px !important;
  color: #ffffff !important;
  font-size: clamp(48px, 5.2vw, 82px) !important;
  line-height: 0.98 !important;
  font-weight: 760 !important;
}

.hero .hero-subtitle {
  max-width: 560px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: clamp(17px, 1.22vw, 20px) !important;
  line-height: 1.55 !important;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  color: var(--studio-lime) !important;
}

.hero .button.primary {
  background: #ffffff !important;
  color: var(--studio-deep) !important;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24) !important;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.26) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.hero-proofbar {
  margin-top: 30px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

.hero-proofbar span {
  min-height: 58px !important;
  background: rgba(255, 255, 255, 0.09) !important;
  color: #ffffff !important;
}

.hero-stage {
  position: relative !important;
  min-height: clamp(510px, 38vw, 610px) !important;
  display: block !important;
  overflow: hidden !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background:
    radial-gradient(circle at 50% 10%, rgba(201, 239, 109, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)) !important;
  box-shadow: 0 52px 160px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.hero-stage::before {
  content: "10 SKU" !important;
  position: absolute !important;
  top: 22px !important;
  right: 24px !important;
  z-index: 4 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 10px 13px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  transform: none !important;
}

.stage-glass {
  inset: 64px 34px 82px !important;
  border-color: rgba(255, 255, 255, 0.76) !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 239, 109, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 235, 0.9)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.04) 1px, transparent 1px) 0 0 / 62px 62px !important;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.stage-glass::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 42px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(2, 23, 15, 0.24), transparent);
  filter: blur(14px);
}

@media (min-width: 1181px) {
  .hero-products {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .product-mini {
    position: absolute !important;
    left: var(--x) !important;
    bottom: var(--b) !important;
    z-index: var(--z, 2) !important;
    width: var(--w, 76px) !important;
    max-width: none !important;
    transform: translateX(-50%) translateY(var(--lift, 0)) !important;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    width: auto !important;
    max-width: none !important;
    height: var(--h) !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    filter: drop-shadow(0 30px 28px rgba(2, 23, 15, 0.2)) !important;
  }

  .product-mini:nth-child(1) { --x: 7%; --b: 118px; --w: 76px; --h: 292px; --z: 2; }
  .product-mini:nth-child(2) { --x: 15%; --b: 120px; --w: 72px; --h: 276px; --z: 2; }
  .product-mini:nth-child(3) { --x: 24%; --b: 114px; --w: 76px; --h: 306px; --z: 3; }
  .product-mini:nth-child(4) { --x: 33%; --b: 118px; --w: 74px; --h: 292px; --z: 3; }
  .product-mini:nth-child(5) { --x: 42%; --b: 114px; --w: 76px; --h: 306px; --z: 4; }
  .product-mini:nth-child(6) { --x: 52%; --b: 98px; --w: 80px; --h: 346px; --z: 5; }
  .product-mini:nth-child(7) { --x: 62%; --b: 94px; --w: 84px; --h: 350px; --z: 5; }
  .product-mini:nth-child(8) { --x: 72%; --b: 104px; --w: 80px; --h: 326px; --z: 4; }
  .product-mini:nth-child(9) { --x: 81%; --b: 116px; --w: 70px; --h: 304px; --z: 3; }
  .product-mini:nth-child(10) { --x: 86.5%; --b: 124px; --w: 70px; --h: 260px; --z: 2; }
}

.stage-caption {
  left: 38px !important;
  right: 38px !important;
  bottom: 28px !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--studio-deep) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16) !important;
}

.brand-intel,
.about,
.catalog,
.advantages,
.partners,
.contacts,
.stats {
  background:
    linear-gradient(90deg, rgba(6, 61, 37, 0.028) 1px, transparent 1px) 0 0 / 112px 112px,
    linear-gradient(180deg, #fbfdf8, #ffffff) !important;
}

.section-copy h2,
.section-head h2 {
  color: var(--studio-green) !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

.section-copy p,
.section-head > p {
  color: var(--studio-muted) !important;
}

.about-media {
  min-height: clamp(520px, 44vw, 650px) !important;
  border-color: rgba(6, 61, 37, 0.1) !important;
  background: #f3f8f0 !important;
  box-shadow: 0 34px 110px rgba(2, 23, 15, 0.12) !important;
}

.about-media img {
  object-position: 62% center !important;
}

.lineup-showcase {
  padding-top: clamp(118px, 10vw, 166px) !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 52% 23%, rgba(201, 239, 109, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #02170f 0%, #063d25 62%, #087237 100%) !important;
}

.lineup-showcase .section-copy h2 {
  color: #ffffff !important;
  font-size: clamp(42px, 5vw, 76px) !important;
}

.lineup-showcase .eyebrow {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--studio-lime) !important;
}

.lineup-theater {
  min-height: clamp(520px, 42vw, 620px) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 50px) clamp(34px, 4vw, 52px) !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 239, 109, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 235, 0.9)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.04) 1px, transparent 1px) 0 0 / 76px 76px !important;
  box-shadow: 0 48px 150px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.lineup-rail {
  align-items: end !important;
  gap: clamp(8px, 0.75vw, 14px) !important;
  padding: 0 8px 48px !important;
}

.lineup-product {
  flex: 0 1 clamp(72px, 7vw, 104px) !important;
  max-width: clamp(72px, 7vw, 104px) !important;
}

.lineup-product img {
  width: 100% !important;
  height: clamp(268px, 23vw, 354px) !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: drop-shadow(0 28px 28px rgba(2, 23, 15, 0.17)) !important;
}

.lineup-product figcaption {
  border-color: rgba(6, 61, 37, 0.1) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 12px 34px rgba(2, 23, 15, 0.08) !important;
}

.catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.5vw, 34px) !important;
}

.product-card,
.product-card:nth-child(5n) {
  min-height: 680px !important;
  border-color: rgba(6, 61, 37, 0.1) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 244, 0.9)),
    radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--accent) 10%, white), transparent 38%) !important;
  box-shadow: 0 34px 104px rgba(2, 23, 15, 0.1) !important;
}

.product-card:nth-child(5n) {
  grid-column: span 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  min-height: 560px !important;
}

.product-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 48px 140px rgba(2, 23, 15, 0.16) !important;
}

.product-media,
.product-card:nth-child(5n) .product-media {
  min-height: 400px !important;
  height: 430px !important;
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--accent) 14%, white), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eff8eb 100%) !important;
}

.product-card:nth-child(5n) .product-media {
  height: 100% !important;
}

.product-media img {
  width: 86% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  filter: drop-shadow(0 28px 30px rgba(2, 23, 15, 0.16)) !important;
}

.product-content {
  padding: clamp(24px, 2.6vw, 38px) !important;
}

.product-content h3 {
  color: var(--studio-green) !important;
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1.08 !important;
  font-weight: 760 !important;
}

.product-slogan {
  color: color-mix(in srgb, var(--accent) 62%, var(--studio-green)) !important;
}

.price-line {
  border-color: color-mix(in srgb, var(--accent) 28%, rgba(6, 61, 37, 0.12)) !important;
  background: color-mix(in srgb, var(--accent) 9%, white) !important;
}

.buy,
.map-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 239, 109, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.048) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #02170f 0%, #063d25 58%, #087237 100%) !important;
}

.buy .section-copy h2,
.buy .section-copy p,
.buy .eyebrow,
.map-copy h2,
.map-copy p,
.map-copy .eyebrow {
  color: #ffffff !important;
}

.buy .section-copy p,
.map-copy p {
  color: rgba(255, 255, 255, 0.74) !important;
}

.buy .eyebrow,
.map-copy .eyebrow {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

#brand,
#catalog,
#buy,
#map,
#partners,
#contacts,
section[id],
.section-full,
.section-band {
  scroll-margin-top: 132px !important;
}

#about-title,
#lineup-title,
#catalog-title,
#advantages-title,
#buy-title,
#x5-title,
#map-title,
#stats-title,
#partners-title,
#contacts-title {
  scroll-margin-top: 148px !important;
}

#buy,
#map {
  scroll-margin-top: 0 !important;
}

.market-card,
.x5-panel,
.russia-map,
.lead-form,
.stat-card,
.benefit-card,
.intel-card,
.product-info-card,
.product-page-copy {
  box-shadow: 0 30px 96px rgba(2, 23, 15, 0.1) !important;
}

.product-hero.product-landing {
  min-height: calc(100svh - 88px) !important;
  padding-top: clamp(46px, 5vw, 72px) !important;
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 32%),
    linear-gradient(90deg, rgba(6, 61, 37, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #fbfdf8, #eef7eb) !important;
}

.product-cutout-stage {
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--accent) 14%, white), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #edf8e9 100%) !important;
}

.product-cutout-stage img {
  filter: drop-shadow(0 32px 34px rgba(2, 23, 15, 0.18)) !important;
}

@media (max-width: 1180px) {
  .site-header {
    width: min(calc(100% - 28px), 1320px) !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    padding-top: 116px !important;
  }

  .hero-stage {
    min-height: 430px !important;
  }

  .hero-products {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: calc(100vw - 64px) !important;
    overflow-x: auto !important;
    padding: 48px 28px 78px !important;
    scrollbar-width: none;
  }

  .hero-products::-webkit-scrollbar {
    display: none;
  }

  .product-mini {
    flex: 0 0 82px !important;
    max-width: 82px !important;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 238px !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px !important;
    padding: 8px 10px !important;
  }

  .brand-mark img {
    width: 132px !important;
  }

  .site-nav {
    border: 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
  }

  .hero {
    padding: 102px 18px 64px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 54px) !important;
    line-height: 1 !important;
  }

  .hero-stage {
    min-height: 380px !important;
  }

  .stage-glass {
    inset: 58px 16px 78px !important;
  }

  .hero-products {
    width: calc(100vw - 36px) !important;
    padding: 76px 22px 88px !important;
  }

  .product-mini {
    flex-basis: 76px !important;
    max-width: 76px !important;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 210px !important;
  }

  .catalog-grid,
  .product-card:nth-child(5n) {
    grid-template-columns: 1fr !important;
  }

  .product-card:nth-child(5n) {
    grid-column: span 1 !important;
  }

  .lineup-rail {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-inline: 10px !important;
    scrollbar-width: none;
  }

  .lineup-rail::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px !important;
    width: calc(100% - 22px) !important;
  }

  .hero {
    padding-top: 92px !important;
  }

  .hero-proofbar {
    display: none !important;
  }

  .hero-stage {
    min-height: 328px !important;
    margin-top: 10px !important;
  }

  .hero-products {
    padding: 58px 18px 76px !important;
  }

  .product-mini {
    flex-basis: 68px !important;
    max-width: 68px !important;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 188px !important;
  }

  .stage-caption {
    left: 14px !important;
    right: 14px !important;
    bottom: 16px !important;
  }

  .lineup-showcase {
    padding-top: 92px !important;
  }

  .lineup-showcase .section-copy h2 {
    font-size: 36px !important;
  }

  .lineup-product {
    flex-basis: 86px !important;
    max-width: 86px !important;
  }

  .lineup-product img {
    height: 230px !important;
  }

  .product-media,
  .product-card:nth-child(5n) .product-media {
    height: 310px !important;
    min-height: 310px !important;
  }

  .product-body .site-header.compact {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-items: start !important;
    padding: 10px !important;
  }

  .product-body .site-header.compact .brand-mark {
    width: fit-content !important;
  }

  .product-body .site-header.compact .brand-mark img {
    width: 128px !important;
    max-width: none !important;
  }

  .product-body .site-header.compact .site-nav.static {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 4px !important;
    padding: 4px !important;
  }

  .product-body .site-header.compact .site-nav.static a {
    min-height: 38px !important;
    padding: 7px 5px !important;
    font-size: 12px !important;
    line-height: 1.05 !important;
    text-align: center !important;
  }
}

/* Anchor visibility guard for direct menu/hash openings */
section:target .reveal,
.buy:target .reveal,
.map-section:target .reveal,
.catalog:target .reveal,
.about:target .reveal,
.partners:target .reveal,
.contacts:target .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.buy .section-copy h2,
.buy .section-copy p,
.buy .eyebrow,
.map-section .map-copy h2,
.map-section .map-copy p,
.map-section .map-copy .eyebrow {
  color: #ffffff !important;
}

.buy .section-copy p,
.map-section .map-copy p,
.map-section .map-result,
.map-section .search-field span {
  color: rgba(255, 255, 255, 0.76) !important;
}

/* Header logo blend: keep the top bar as one clean surface */
.site-header {
  background: #ffffff !important;
  backdrop-filter: none !important;
}

.site-nav {
  background: #ffffff !important;
}

/* Premium X5 / federal shelf block */
.x5 {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(96px, 8vw, 142px) 24px !important;
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 239, 109, 0.16), transparent 30%),
    radial-gradient(circle at 18% 74%, rgba(8, 114, 55, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.048) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #02170f 0%, #063d25 58%, #087237 100%) !important;
  color: #ffffff !important;
}

.x5::before {
  content: "RETAIL READY";
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(86px, 15vw, 220px);
  font-weight: 900;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.x5-panel {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 1320px) !important;
  min-height: clamp(620px, 48vw, 720px) !important;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr) !important;
  gap: clamp(34px, 5vw, 78px) !important;
  align-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  padding: clamp(42px, 5vw, 74px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 86px 86px !important;
  box-shadow: 0 50px 160px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(12px) saturate(1.08);
}

.x5-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: transparent !important;
  pointer-events: none !important;
}

.x5-panel > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.x5-panel .eyebrow {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--studio-lime) !important;
}

.x5-panel h2 {
  max-width: 700px !important;
  color: #ffffff !important;
  font-size: clamp(44px, 5vw, 78px) !important;
  line-height: 0.98 !important;
  font-weight: 760 !important;
}

.x5-panel p {
  max-width: 610px !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.58 !important;
}

.x5-visual {
  position: relative !important;
  min-height: clamp(500px, 39vw, 590px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 74% 24%, rgba(201, 239, 109, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(145deg, rgba(2, 23, 15, 0.35), rgba(255, 255, 255, 0.04)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 34px 100px rgba(0, 0, 0, 0.2) !important;
}

.x5-visual::before {
  content: none;
  display: none;
}

.x5-visual::after {
  content: "партнёрская розница / маркетплейсы / дистрибуция";
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.retail-card {
  position: absolute !important;
  left: 30px !important;
  top: 30px !important;
  z-index: 6 !important;
  width: min(430px, calc(100% - 60px)) !important;
  display: grid !important;
  gap: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 8px !important;
  padding: 26px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--studio-deep) !important;
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(18px) saturate(1.18);
}

.retail-card::after {
  content: "";
  width: min(100%, 300px);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--studio-green), var(--studio-lime));
  box-shadow: 0 0 26px rgba(201, 239, 109, 0.42);
}

.retail-card span {
  color: rgba(2, 23, 15, 0.6) !important;
  font-weight: 850 !important;
}

.retail-card strong {
  color: var(--studio-deep) !important;
  font-size: clamp(30px, 3vw, 48px) !important;
  line-height: 1 !important;
}

.retail-card [data-x5-status] {
  width: fit-content;
  border: 1px solid rgba(6, 61, 37, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: #eef8eb;
  color: var(--studio-green) !important;
  font-size: 13px;
}

.retail-label {
  color: var(--studio-green) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.retail-map {
  position: absolute !important;
  inset: 190px 30px 30px 30px !important;
  z-index: 2 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 58% 48%, rgba(201, 239, 109, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 56px 56px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.retail-map::before {
  content: "" !important;
  position: absolute !important;
  inset: 21% 9% 26% 8% !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  clip-path: polygon(3% 45%, 16% 22%, 32% 28%, 45% 18%, 58% 29%, 70% 22%, 86% 34%, 97% 56%, 87% 74%, 68% 69%, 54% 80%, 39% 70%, 23% 74%, 10% 62%) !important;
}

.retail-map::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 14%;
  top: 48%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(201, 239, 109, 0.9), transparent);
  transform: rotate(8deg);
  filter: drop-shadow(0 0 16px rgba(201, 239, 109, 0.46));
}

.retail-map span {
  position: absolute !important;
  z-index: 3 !important;
  left: var(--x) !important;
  top: var(--y) !important;
  width: 15px !important;
  height: 15px !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  background: var(--studio-lime) !important;
  box-shadow: 0 0 0 9px rgba(201, 239, 109, 0.12), 0 0 28px rgba(201, 239, 109, 0.48) !important;
}

@media (max-width: 1180px) {
  .x5-panel {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .x5-visual {
    min-height: 540px !important;
  }
}

@media (max-width: 720px) {
  .x5 {
    padding: 82px 18px !important;
  }

  .x5-panel {
    padding: 24px !important;
    gap: 26px !important;
  }

  .x5-panel h2 {
    font-size: 38px !important;
  }

  .x5-visual {
    min-height: 500px !important;
  }

  .retail-card {
    left: 18px !important;
    top: 18px !important;
    width: calc(100% - 36px) !important;
    padding: 20px !important;
  }

  .retail-card strong {
    font-size: 30px !important;
  }

  .retail-map {
    inset: 190px 18px 28px 18px !important;
  }

  .x5-visual::before {
    right: 12px;
    width: 190px;
    height: 280px;
    opacity: 0.9;
  }

  .x5-visual::after {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
  }
}

/* Catalog normalization: every SKU card has the same footprint */
.catalog-grid .product-card,
.catalog-grid .product-card:nth-child(5n) {
  grid-column: auto !important;
  display: flex !important;
  grid-template-columns: none !important;
  min-height: 680px !important;
}

.catalog-grid .product-card .product-media,
.catalog-grid .product-card:nth-child(5n) .product-media {
  height: 430px !important;
  min-height: 400px !important;
}

@media (max-width: 860px) {
  .catalog-grid .product-card,
  .catalog-grid .product-card:nth-child(5n) {
    min-height: auto !important;
  }

  .catalog-grid .product-card .product-media,
  .catalog-grid .product-card:nth-child(5n) .product-media {
    height: 310px !important;
    min-height: 310px !important;
  }
}

/* Final publication polish: no draft artifacts, no stray products in retail block */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 239, 109, 0.2), transparent 31%),
    radial-gradient(circle at 18% 78%, rgba(42, 156, 83, 0.26), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #07331f 0%, #0a4f2b 56%, #0b7a3d 100%) !important;
}

.hero::after {
  content: none !important;
  display: none !important;
}

.hero-stage {
  background:
    radial-gradient(circle at 52% 12%, rgba(201, 239, 109, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)) !important;
  box-shadow: 0 46px 140px rgba(6, 61, 37, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.stage-glass {
  inset: 72px 56px 94px !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 239, 109, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 238, 0.92)),
    linear-gradient(90deg, rgba(8, 114, 55, 0.035) 1px, transparent 1px) 0 0 / 62px 62px !important;
  box-shadow: 0 30px 84px rgba(6, 61, 37, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

.stage-glass::after {
  background: linear-gradient(90deg, transparent, rgba(6, 61, 37, 0.16), transparent) !important;
}

@media (min-width: 1181px) {
  .product-mini:nth-child(1) { --x: 13%; --b: 124px; --w: 66px; --h: 238px; --z: 2; }
  .product-mini:nth-child(2) { --x: 21%; --b: 124px; --w: 62px; --h: 228px; --z: 2; }
  .product-mini:nth-child(3) { --x: 30%; --b: 120px; --w: 68px; --h: 252px; --z: 3; }
  .product-mini:nth-child(4) { --x: 39%; --b: 124px; --w: 64px; --h: 238px; --z: 3; }
  .product-mini:nth-child(5) { --x: 48%; --b: 120px; --w: 68px; --h: 252px; --z: 4; }
  .product-mini:nth-child(6) { --x: 57%; --b: 108px; --w: 74px; --h: 292px; --z: 5; }
  .product-mini:nth-child(7) { --x: 66%; --b: 104px; --w: 80px; --h: 306px; --z: 5; }
  .product-mini:nth-child(8) { --x: 75%; --b: 112px; --w: 72px; --h: 272px; --z: 4; }
  .product-mini:nth-child(9) { --x: 83%; --b: 124px; --w: 62px; --h: 248px; --z: 3; }
  .product-mini:nth-child(10) { --x: 89%; --b: 130px; --w: 58px; --h: 222px; --z: 2; }
}

.x5-visual::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}

.x5-visual::after {
  content: "партнёрская розница / маркетплейсы / дистрибуция" !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.x5-panel {
  box-shadow: 0 50px 150px rgba(6, 61, 37, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.x5-visual {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 34px 96px rgba(6, 61, 37, 0.2) !important;
}

@media (max-width: 1180px) {
  .stage-glass {
    inset: 58px 22px 86px !important;
  }
}

@media (max-width: 860px) {
  .hero-products {
    padding: 82px 22px 96px !important;
  }

  .product-mini {
    flex-basis: 64px !important;
    max-width: 64px !important;
  }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    height: 188px !important;
  }
}

/* Hero lineup reset: make the first-screen products read as a clean shelf, not a collage */
@media (min-width: 1181px) {
  .hero-stage {
    min-height: clamp(500px, 36vw, 580px) !important;
  }

  .stage-glass {
    inset: 76px 52px 102px !important;
    overflow: hidden !important;
  }

  .hero-products {
    position: absolute !important;
    left: 82px !important;
    right: 82px !important;
    top: 146px !important;
    bottom: 146px !important;
    z-index: 3 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: clamp(2px, 0.34vw, 7px) !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .product-mini,
  .product-mini:nth-child(1),
  .product-mini:nth-child(2),
  .product-mini:nth-child(3),
  .product-mini:nth-child(4),
  .product-mini:nth-child(5),
  .product-mini:nth-child(6),
  .product-mini:nth-child(7),
  .product-mini:nth-child(8),
  .product-mini:nth-child(9),
  .product-mini:nth-child(10) {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    flex: 0 1 clamp(44px, 5.2vw, 72px) !important;
    width: clamp(44px, 5.2vw, 72px) !important;
    max-width: 72px !important;
    margin: 0 !important;
    transform: translateY(var(--shelf-lift, 0)) !important;
    animation: none !important;
  }

  .product-mini:nth-child(1) { --hero-h: clamp(218px, 16.2vw, 260px); --shelf-lift: 0px; }
  .product-mini:nth-child(2) { --hero-h: clamp(204px, 15.2vw, 244px); --shelf-lift: 0px; }
  .product-mini:nth-child(3) { --hero-h: clamp(222px, 16.5vw, 266px); --shelf-lift: 0px; }
  .product-mini:nth-child(4) { --hero-h: clamp(208px, 15.5vw, 248px); --shelf-lift: 0px; }
  .product-mini:nth-child(5) { --hero-h: clamp(222px, 16.5vw, 266px); --shelf-lift: 0px; }
  .product-mini:nth-child(6) { --hero-h: clamp(242px, 18vw, 292px); --shelf-lift: 0px; }
  .product-mini:nth-child(7) { --hero-h: clamp(258px, 19.2vw, 310px); --shelf-lift: 0px; }
  .product-mini:nth-child(8) { --hero-h: clamp(228px, 17vw, 274px); --shelf-lift: 0px; }
  .product-mini:nth-child(9) { --hero-h: clamp(214px, 16vw, 256px); --shelf-lift: 0px; }
  .product-mini:nth-child(10) { --hero-h: clamp(208px, 15.5vw, 248px); --shelf-lift: 0px; }

  .product-mini img,
  .product-mini:nth-child(6) img,
  .product-mini:nth-child(7) img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: var(--hero-h) !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    mix-blend-mode: normal !important;
    filter: drop-shadow(0 24px 22px rgba(6, 61, 37, 0.16)) !important;
  }

  .stage-caption {
    left: 52px !important;
    right: 52px !important;
    bottom: 32px !important;
  }
}

@media (max-width: 1180px) {
  .hero-products {
    overflow-x: auto !important;
    align-items: flex-end !important;
  }

  .product-mini {
    transform: none !important;
    animation: none !important;
  }
}

/* Hero lifestyle visual: replace the SKU collage with one premium composed image */
.hero-stage::before {
  content: "PAPA CLEAN" !important;
  position: absolute !important;
  inset: auto !important;
  top: 28px !important;
  left: 42px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 5 !important;
  width: auto !important;
  height: auto !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  padding: 10px 13px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  transform: none !important;
  pointer-events: none !important;
}

.hero-lifestyle-image {
  position: absolute !important;
  inset: 62px 34px 96px !important;
  z-index: 3 !important;
  display: block !important;
  width: calc(100% - 68px) !important;
  height: calc(100% - 158px) !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  object-position: center center !important;
  box-shadow: 0 30px 82px rgba(6, 61, 37, 0.18) !important;
}

.hero-stage .hero-products {
  display: none !important;
}

.hero-stage .stage-glass {
  inset: 62px 34px 96px !important;
  background:
    radial-gradient(circle at 50% 12%, rgba(201, 239, 109, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 238, 0.92)) !important;
}

@media (max-width: 1180px) {
  .hero-stage::before {
    top: 24px !important;
    left: 28px !important;
  }

  .hero-stage .stage-glass {
    inset: 56px 18px 84px !important;
  }

  .hero-lifestyle-image {
    inset: 56px 18px 84px !important;
    width: calc(100% - 36px) !important;
    height: calc(100% - 140px) !important;
  }
}

@media (max-width: 720px) {
  .hero-stage::before {
    top: 20px !important;
    left: 22px !important;
  }

  .hero-stage .stage-glass {
    inset: 54px 14px 82px !important;
  }

  .hero-lifestyle-image {
    inset: 54px 14px 82px !important;
    width: calc(100% - 28px) !important;
    height: calc(100% - 136px) !important;
    object-position: center center !important;
  }
}
