/* ==========================================================================
   NutriNan — design system
   Подача в стиле reference (Mulish, крупные CAPS-заголовки, лёгкий текст,
   жёлтые pill-кнопки, blob-фигуры, стикеры, scroll-reveal).
   Цвета и контент — NutriNan.
   ========================================================================== */

/* ============== TOKENS ============== */
:root {
  --bg: #f7f3e7;
  --bg-soft: #efeadc;
  --bg-card: #ffffff;
  --ink: #141414;
  --ink-soft: #3c3c3c;
  --ink-muted: #7a786f;
  --line: #e3dccc;
  --green: #257046;
  --green-dark: #1c5637;
  --green-deep: #123a25;
  --green-tint: #e7efe9;
  --accent: #d4a464;
  --accent-soft: #efd5a8;
  --cta: #f3c64e;          /* жёлтая pill-кнопка как на рефе */
  --cta-dark: #e7b531;
  --warning: #f0c75a;
  --radius-card: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 24px 48px -20px rgba(20,20,20,0.16);
  --shadow-soft: 0 14px 30px -12px rgba(80,50,20,0.22);
  --maxw: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============== RESET / BASE ============== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============== TYPOGRAPHY HELPERS ============== */
.display,
.section-title,
.hero h1 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.94;
}
/* выделение ключевого слова цветом — чисто, без плашки.
   фирменный зелёный на светлом фоне, жёлтый на тёмном/зелёном. */
.hl { color: var(--green); }
.on-dark .hl,
.final-cta .hl { color: var(--cta); }
.hl--green  { color: var(--green); }
.hl--accent { color: var(--accent); }

/* ============== CONTAINER ============== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .container { padding: 0 18px; } }

/* ============== BLOB SHAPES ============== */
.blob {
  position: absolute;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.9;
}
.blob--spin { animation: blobSpin 26s linear infinite; }
.blob--spin-rev { animation: blobSpin 32s linear infinite reverse; }
@keyframes blobSpin {
  0%   { transform: rotate(0deg)   scale(1); }
  50%  { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ============== HEADER / NAV ============== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: background 0.35s, backdrop-filter 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
  color: #fff;
}
.header.scrolled {
  background: rgba(247, 243, 231, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding: 12px 32px;
  color: var(--ink);
}
.header.is-light { color: var(--ink); }                 /* для страниц со светлым верхом */

.nav-left, .nav-right { display: flex; align-items: center; gap: 6px; }
.nav-right { justify-content: flex-end; gap: 14px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 14px;
  border-radius: 100px;
  color: currentColor;
  opacity: 0.92;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; background: rgba(255,255,255,0.14); }
.header.scrolled .nav-links a:hover,
.header.is-light .nav-links a:hover { background: rgba(20,20,20,0.06); }

.logo {
  justify-self: center;
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -0.03em;
  color: currentColor;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo span { color: var(--cta); }
.header.scrolled .logo span,
.header.is-light .logo span { color: var(--green); }
/* логотип-картинка: белый на тёмном верху, зелёный после скролла/на светлом */
.logo-img { height: 21px; width: auto; display: block; }
.logo-img--dark { display: none; }
.header.scrolled .logo-img--light,
.header.is-light .logo-img--light { display: none; }
.header.scrolled .logo-img--dark,
.header.is-light .logo-img--dark { display: block; }
.footer-logo-img { height: 28px; width: auto; display: block; margin-bottom: 16px; }

.nav-loc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.92;
  white-space: nowrap;
}
.nav-loc svg { width: 15px; height: 15px; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid currentColor;
  color: currentColor;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-phone:hover { background: var(--cta); border-color: var(--cta); color: var(--ink); }
.btn-phone svg { width: 15px; height: 15px; }

.nav-burger {
  display: none;
  width: 44px; height: 40px;
  border: none; background: transparent; cursor: pointer;
  position: relative; color: currentColor;
}
.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-burger span { top: 19px; }
.nav-burger::before { top: 13px; }
.nav-burger::after { top: 25px; }
body.menu-open .nav-burger span { opacity: 0; }
body.menu-open .nav-burger::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger::after  { transform: translateY(-6px) rotate(-45deg); }

/* мобильное меню-оверлей */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-deep);
  color: #fff;
  padding: 96px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu a.is-cta { color: var(--cta); }

@media (max-width: 980px) {
  .header { grid-template-columns: auto 1fr auto; padding: 14px 18px; gap: 12px; }
  .nav-links, .nav-loc { display: none; }
  .logo { justify-self: start; }
  .nav-burger { display: block; }
  .nav-right { gap: 8px; }
}
@media (max-width: 600px) {
  .header { padding: 12px 16px; gap: 8px; }
  .logo-img { height: 19px; }
}
@media (max-width: 520px) {
  .btn-phone span.phone-num { display: none; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn-arrow::after { content: '→'; font-size: 16px; transition: transform 0.3s; }
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-primary { background: var(--cta); color: var(--ink); box-shadow: 0 12px 26px -10px rgba(243,198,78,0.8); }
.btn-primary:hover { background: var(--cta-dark); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green); transform: translateY(-2px); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn-ghost:hover { background: currentColor; }
.btn-ghost:hover { color: var(--ink); }       /* текст инвертируется */
.on-dark .btn-ghost:hover { color: var(--green-deep); }

.btn-wa { background: #25613f; color: #fff; padding: 12px 20px; font-size: 13px; letter-spacing: 0.02em; }
.btn-wa:hover { background: var(--green); transform: translateY(-2px); }
.btn-wa svg { width: 15px; height: 15px; }

.btn-block { width: 100%; justify-content: center; }

/* мини-кнопки в карточках */
.btn-mini {
  flex: 1;
  text-align: center;
  padding: 13px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-mini.dark { background: var(--ink); color: #fff; }
.btn-mini.dark:hover { background: var(--green); }
.btn-mini.out { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-mini.out:hover { background: var(--ink); color: #fff; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============== STICKERS / BADGES ============== */
.sticker {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cta);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-soft);
}
.sticker small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.sticker-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(20,20,20,0.1);
  display: grid; place-items: center;
  margin-bottom: 8px;
  font-weight: 900;
  font-size: 13px;
}
.sticker--accent { background: var(--accent); }
.sticker--soft   { background: var(--accent-soft); }
.sticker--green  { background: var(--green); color: #fff; }
.sticker--green small { opacity: 0.8; }
.sticker--green .sticker-icon { background: rgba(255,255,255,0.16); }
.sticker--rot    { transform: rotate(-6deg); }
.sticker--rot-r  { transform: rotate(6deg); }

/* eyebrow-метка */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; }
.on-dark .eyebrow { color: var(--cta); }

/* ============== SECTION PRIMITIVES ============== */
.section { padding: 110px 0; position: relative; }
/* шапка секции центрирована: eyebrow, заголовок и подзаголовок имеют общий
   центр (sub центрируется auto-маргинами, поэтому не разъезжается с заголовком). */
.section-head { margin: 0 auto 56px; max-width: 860px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .section-title { text-align: center; }
.section-head .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(32px, 4.6vw, 66px);
  margin-bottom: 22px;
  color: var(--ink);
}
.on-dark .section-title { color: #fff; }
.section-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  font-weight: 400;
}
.on-dark .section-sub { color: rgba(255,255,255,0.82); }
@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 38px; }
}
/* декоративный стикер в шапке секции прячем на узких экранах,
   чтобы он не наезжал на заголовок */
@media (max-width: 920px) {
  .section-head > .sticker { display: none; }
}

/* секции с фоном */
.section--soft { background: var(--bg-soft); }
.section--green { background: var(--green); color: #fff; overflow: hidden; }
.section--deep { background: var(--green-deep); color: #fff; overflow: hidden; }

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
}
.hero--filled { background: var(--green); color: #fff; }
.hero--deep   { background: var(--green-deep); color: #fff; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr minmax(420px, 0.98fr);
  gap: 48px;
  align-items: center;
}
/* min-width:0 не даёт огромному слову заголовка раздувать текстовую колонку
   и съедать место под фото хлеба */
.hero-text { min-width: 0; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero--light .hero-tag { background: var(--bg-card); border-color: var(--line); color: var(--ink-soft); }
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 4px rgba(243,198,78,0.3);
}
.hero h1 {
  font-size: clamp(38px, 4.4vw, 64px);
  margin-bottom: 26px;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.9);
}
.hero--light .hero-sub { color: var(--ink-soft); }
.hero-stickers { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.hero-product {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.45));
  animation: floatY 8s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero-mini-badge {
  position: absolute;
  z-index: 2;
  background: var(--cta);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-soft);
}
.hero-mini-badge small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 3px;
}
.hero-mini-badge.top-right { top: 4%; right: 4%; transform: rotate(6deg); }
.hero-mini-badge.bottom-left { bottom: 6%; left: 4%; transform: rotate(-5deg); background: var(--accent); }

/* blob-фигуры героя */
.hero-blob { width: 60vw; max-width: 820px; aspect-ratio: 1; }
.hero-blob--1 { top: -22%; left: -14%; background: rgba(255,255,255,0.06); }
.hero-blob--2 { bottom: -34%; right: -12%; background: var(--green-deep); opacity: 0.5; }
.hero--deep .hero-blob--2 { background: var(--green-dark); }

@media (max-width: 980px) {
  .hero { padding: 124px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { min-height: 360px; order: -1; }
  .hero-product { max-width: 340px; }
  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
}

/* ============== STATS STRIP ============== */
.stats-strip { background: var(--ink); color: #fff; padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  display: flex; align-items: center; gap: 18px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-weight: 900;
  font-size: clamp(34px, 3.4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--cta);
}
.stat-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 8px; }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 460px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 12px 0; }
  .stat:last-child { border-bottom: none; }
}

/* ============== CARD PRIMITIVE ============== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.card-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 14px;
}
.card h3 {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; font-weight: 400; }

/* ============== FEATURE CARDS (green block) ============== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-card);
  padding: 38px 30px;
  position: relative;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card .card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  font-size: 13px; margin: 0 auto 18px;
}
.feature-card h3 { font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============== PRODUCT TABS / CARDS ============== */
.tabs-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; margin-bottom: 44px; }
.tabs-head > div:first-child { max-width: 100% !important; }
.tabs-head .eyebrow { justify-content: center; }
.tab-buttons {
  display: flex; gap: 6px; flex-wrap: wrap;
  background: var(--bg-card);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.tab-btn {
  background: none; border: none;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 12px 22px; border-radius: 100px;
  cursor: pointer; color: var(--ink-soft);
  transition: all 0.3s;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--ink); color: #fff; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card.is-bg { background: var(--green-tint); border-color: rgba(33,113,65,0.18); }
.product-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 6px 11px; border-radius: 100px;
}
.product-img {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; aspect-ratio: 1;
  display: grid; place-items: center;
  margin-bottom: 18px; overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(20,20,20,0.2));
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.08) rotate(-2deg); }
.product-img-placeholder {
  font-size: 12px; color: var(--ink-muted);
  text-align: center; padding: 28px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.product-meta { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.product-pill {
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--ink-soft); background: var(--bg);
  padding: 4px 10px; border-radius: 100px;
}
.product-card h3 { font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 14px; font-weight: 400; }
.product-composition {
  font-size: 11.5px; color: var(--ink-muted); line-height: 1.55;
  padding: 14px 0; margin-bottom: 16px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.product-card.is-bg .product-composition { border-color: rgba(33,113,65,0.18); }
.product-cta {
  margin-top: auto;
  background: var(--ink); color: #fff;
  padding: 13px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; justify-content: space-between;
  transition: background 0.25s;
}
.product-cta:hover { background: var(--green); }
.product-cta::after { content: '→'; transition: transform 0.3s; }
.product-cta:hover::after { transform: translateX(3px); }

/* фильтрация табами */
.product-card[data-cat] { display: none; }
.tabs-all .product-card[data-cat] { display: flex; }
.tab-tartin .product-card[data-cat~="tartin"] { display: flex; }
.tab-ryzh .product-card[data-cat~="ryzh"] { display: flex; }
.tab-bg .product-card[data-cat~="bg"] { display: flex; }
.tab-suh .product-card[data-cat~="suh"] { display: flex; }

@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .products-grid { grid-template-columns: 1fr; } }

/* ============== FAQ ============== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); padding: 24px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-weight: 800; font-size: 17px; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.25; color: var(--ink);
}
.faq-q-ic {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 700; color: var(--ink);
  transition: all 0.3s;
}
.faq-item.open .faq-q-ic { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s ease; }
.faq-item.open .faq-a { max-height: 340px; margin-top: 14px; }
.faq-a p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); padding-right: 48px; font-weight: 400; }
.faq-a a { color: var(--green); font-weight: 700; text-decoration: underline; }
/* на тёмном фоне (b2b faq-form) */
.on-dark .faq-item { border-color: rgba(255,255,255,0.16); }
.on-dark .faq-q { color: #fff; }
.on-dark .faq-q-ic { background: rgba(255,255,255,0.12); color: #fff; }
.on-dark .faq-item.open .faq-q-ic { background: var(--cta); color: var(--ink); }
.on-dark .faq-a p { color: rgba(255,255,255,0.78); }
.on-dark .faq-a a { color: var(--cta); }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } .faq-a p { padding-right: 0; } }

/* ============== FORM ============== */
.cta-form {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.3);
}
.cta-form h3 { font-weight: 800; font-size: 24px; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; font-weight: 400; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); font-weight: 800; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px;
  font-size: 15px; font-family: inherit; font-weight: 500;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); transition: border-color 0.25s, box-shadow 0.25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(33,113,65,0.12);
}
.form-row select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23141414' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-row textarea { resize: vertical; min-height: 78px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.btn-submit {
  width: 100%; background: var(--cta); color: var(--ink);
  padding: 18px 24px; font-size: 14px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em;
  border: none; border-radius: 100px; cursor: pointer; margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; box-shadow: 0 12px 26px -10px rgba(243,198,78,0.8);
}
.btn-submit:hover { background: var(--cta-dark); transform: translateY(-2px); }
.btn-submit::after { content: '→'; }
.form-disc { font-size: 11px; color: var(--ink-muted); margin-top: 12px; line-height: 1.4; }
.form-disc a { color: var(--green); font-weight: 700; }
@media (max-width: 700px) { .cta-form { padding: 30px 22px; } .form-grid-2 { grid-template-columns: 1fr; } }

/* ============== FINAL CTA ============== */
.final-cta { background: var(--green); color: #fff; padding: 110px 0 90px; position: relative; overflow: hidden; }
.final-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: flex-start; }
.final-cta h2 { font-weight: 900; font-size: clamp(34px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 22px; }
.final-cta > .container > .final-grid > div > p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.55; margin-bottom: 28px; max-width: 480px; }
.final-contacts { display: flex; flex-direction: column; margin-top: 24px; }
.final-contact {
  display: flex; align-items: center; gap: 16px;
  font-size: 15px; font-weight: 800;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.16);
  transition: padding 0.3s;
}
.final-contact:hover { padding-left: 6px; }
.final-contact-lbl {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55); min-width: 90px;
}
@media (max-width: 900px) { .final-cta { padding: 72px 0 60px; } .final-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============== FOOTER ============== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 0; overflow: hidden; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-weight: 900; font-size: 26px; letter-spacing: -0.03em; color: #fff; text-transform: uppercase; margin-bottom: 14px; display: inline-block; }
.footer-logo span { color: var(--cta); }
.footer-tagline { font-size: 13px; line-height: 1.55; max-width: 280px; margin-bottom: 20px; font-weight: 400; }
.footer-cross { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cta); }
.footer-h4 { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 800; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { color: rgba(255,255,255,0.75); font-size: 13px; transition: color 0.25s; font-weight: 400; }
.footer-list a:hover { color: var(--cta); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.42); flex-wrap: wrap; gap: 12px; padding: 24px 0; font-weight: 400; }
.footer-bottom a { color: rgba(255,255,255,0.55); margin-left: 14px; }
.footer-bottom a:hover { color: #fff; }
.footer-watermark {
  font-weight: 900; font-size: clamp(80px, 18vw, 240px); line-height: 0.85; letter-spacing: -0.05em;
  text-align: center; color: rgba(255,255,255,0.05);
  margin: 24px 0 -1.5%; user-select: none; pointer-events: none; white-space: nowrap; overflow: hidden;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; gap: 24px; } }

/* ============== REVEAL ANIMATIONS ============== */
.js .reveal { opacity: 0; transform: translateY(36px) scale(0.98); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: 0.08s; }
.js .reveal-d2 { transition-delay: 0.16s; }
.js .reveal-d3 { transition-delay: 0.24s; }
.js .reveal-d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero-product { animation: none !important; }
  .blob--spin, .blob--spin-rev { animation: none !important; }
  .hero-blob { animation: none !important; }
}

/* ============== FAMILY SET ============== */
.family-card {
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.family-card::before {
  content: '';
  position: absolute;
  top: -25%; right: -10%;
  width: 60%; height: 150%;
  background: radial-gradient(circle, rgba(212,164,100,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.family-text { position: relative; z-index: 1; text-align: center; }
.family-title { font-size: clamp(34px, 4.6vw, 62px); margin-bottom: 20px; }
.family-text p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.55; max-width: 460px; margin: 0 auto 26px; font-weight: 400; }
.family-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-bottom: 24px; }
.family-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.family-list li::before { content: ''; width: 6px; height: 6px; background: var(--cta); border-radius: 50%; flex-shrink: 0; }
.family-note { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 26px; letter-spacing: 0.01em; }
.family-visual { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.family-img { background: var(--bg); border-radius: 14px; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; }
.family-img img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 16px 24px rgba(0,0,0,0.24)); }
/* лёгкая «диагональ» без схождения: верх-левый чуть вверх, низ-правый чуть вниз */
.family-img:nth-child(1) { transform: translateY(-14px); }
.family-img:nth-child(4) { transform: translateY(14px); }
@media (max-width: 900px) {
  .family-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .family-img:nth-child(1), .family-img:nth-child(4) { transform: none; }
}
@media (max-width: 500px) { .family-list { grid-template-columns: 1fr; } }

/* ============== WHERE ============== */
.where-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.where-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 36px; display: flex; flex-direction: column; }
.where-city { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.where-card h3 { font-weight: 900; font-size: 28px; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.05; }
.where-addr { font-size: 17px; color: var(--ink-soft); margin-bottom: 24px; font-weight: 400; }
.where-info { display: flex; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); margin-bottom: 24px; }
.where-info-item { flex: 1; }
.where-info-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); margin-bottom: 6px; font-weight: 800; }
.where-info-val { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.where-actions { margin-top: auto; gap: 10px; }
.where-note { margin-top: 28px; padding: 20px 24px; background: var(--bg-card); border-left: 4px solid var(--green); border-radius: 0 14px 14px 0; display: flex; align-items: center; gap: 18px; }
.where-note-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--green-tint); border-radius: 12px; display: grid; place-items: center; font-size: 20px; }
.where-note p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; font-weight: 400; }
.where-note strong { color: var(--ink); font-weight: 800; }
@media (max-width: 900px) { .where-grid { grid-template-columns: 1fr; } .where-card { padding: 28px 24px; } }

/* ============== REVIEWS ============== */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), background 0.4s;
}
.review-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.review-quote-mark { font-weight: 900; font-size: 46px; color: var(--cta); line-height: 0.6; margin-bottom: 14px; }
.review-quote { font-weight: 700; font-size: 18px; line-height: 1.3; margin-bottom: 22px; color: #fff; letter-spacing: -0.01em; }
.review-author { margin-top: auto; font-size: 12px; color: rgba(255,255,255,0.62); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.video-soon { margin-top: 40px; background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.22); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; }
.video-soon-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; background: rgba(255,255,255,0.1); border-radius: 50%; margin-bottom: 16px; font-size: 18px; color: var(--cta); }
.video-soon h3 { font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 6px; color: #fff; }
.video-soon p { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 400; }
@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   B2B-СЕКЦИИ
   ===================================================================== */

/* ---------- HERO BOTTOM BAR ---------- */
.hero-bottom {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-bottom-stat { display: flex; flex-direction: column; }
.hero-bottom-num { font-weight: 900; font-size: 30px; letter-spacing: -0.02em; color: var(--cta); line-height: 1; }
.hero-bottom-lbl { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 600; letter-spacing: 0.01em; }
.hero-bottom-sep { width: 1px; height: 42px; background: rgba(255,255,255,0.18); }
.hero-partners { margin-left: auto; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-partners-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); font-weight: 800; }
.hero-partner-name { font-size: 15px; font-weight: 800; color: rgba(255,255,255,0.88); letter-spacing: -0.01em; }
@media (max-width: 760px) {
  .hero-bottom { gap: 22px; }
  .hero-partners { margin-left: 0; width: 100%; gap: 16px; }
  .hero-bottom-sep { display: none; }
}

/* ---------- NUMBERS / COUNTERS ---------- */
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.num-cell {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 44px 28px; text-align: center;
}
.num-big {
  font-weight: 900; font-size: clamp(46px, 6vw, 74px); letter-spacing: -0.03em;
  line-height: 0.9; color: var(--green);
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.num-suffix { font-size: 0.42em; color: var(--accent); font-weight: 800; }
.num-lbl { font-size: 14px; color: var(--ink-soft); margin-top: 16px; font-weight: 600; line-height: 1.35; }
@media (max-width: 900px) { .num-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- SKU CARDS (текстовые карточки продукта) ---------- */
.products-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.products-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 100px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
}
.products-meta-item b { color: var(--green); font-weight: 800; }
.sku-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sku-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 30px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.sku-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--accent-soft); }
.sku-tag {
  align-self: flex-start; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--green);
  background: var(--green-tint); padding: 6px 12px; border-radius: 100px; margin-bottom: 18px;
}
.sku-name { font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; }
.sku-weight { font-size: 13px; color: var(--ink-muted); font-weight: 700; margin: 7px 0 14px; }
.sku-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; font-weight: 400; }
.products-cta { margin-top: 36px; text-align: center; }
@media (max-width: 900px) { .sku-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sku-grid { grid-template-columns: 1fr; } }

/* ---------- SHELF (выкладка из packshot'ов) ---------- */
.shelf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.shelf-visual {
  position: relative; background: var(--bg-soft);
  border-radius: var(--radius-lg); padding: 40px 34px 30px; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.shelf-visual::before {
  content: ''; position: absolute; left: -10%; top: -30%;
  width: 70%; height: 160%; border-radius: 50%;
  background: radial-gradient(circle, rgba(33,113,65,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.shelf-row {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-items: end;
}
.shelf-pack {
  background: var(--bg-card); border-radius: 14px; aspect-ratio: 0.86;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 16px 30px -16px rgba(20,20,20,0.35);
}
.shelf-pack img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 16px 24px rgba(20,20,20,0.22)); }
.shelf-pack:nth-child(2) { transform: translateY(-14px); }
.shelf-board {
  position: relative; z-index: 1; height: 12px; margin-top: 10px;
  background: linear-gradient(var(--accent), var(--accent-soft));
  border-radius: 4px; box-shadow: 0 10px 18px -10px rgba(120,80,30,0.5);
}
.shelf-caption {
  position: absolute; z-index: 2; top: 22px; right: 22px;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 9px 14px; border-radius: 100px;
}
.shelf-quote { position: relative; }
.shelf-quote .review-quote-mark { color: var(--accent); }
.shelf-q-text { font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 22px; }
.shelf-q-author { font-size: 13px; color: var(--ink-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 900px) { .shelf-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- CONDITIONS ---------- */
.conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.condition-cell {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 38px 32px;
}
.condition-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--green-tint); color: var(--green);
  display: grid; place-items: center; margin-bottom: 22px;
}
.condition-icon svg { width: 28px; height: 28px; }
.condition-cell h3 { font-weight: 900; font-size: 21px; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1; }
.condition-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.condition-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-soft); font-weight: 500; line-height: 1.4; }
.condition-list li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.on-dark .condition-cell { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.on-dark .condition-cell h3 { color: #fff; }
.on-dark .condition-icon { background: rgba(255,255,255,0.12); color: var(--cta); }
.on-dark .condition-list li { color: rgba(255,255,255,0.82); }
.on-dark .condition-list li::before { color: var(--cta); }
@media (max-width: 900px) { .conditions-grid { grid-template-columns: 1fr; } }

/* ---------- PROCESS ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; padding-top: 6px; }
.process-num { font-weight: 900; font-size: 56px; letter-spacing: -0.04em; color: var(--accent-soft); line-height: 1; margin-bottom: 16px; }
.process-step h3 { font-weight: 900; font-size: 19px; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; font-weight: 400; }
.on-dark .process-num { color: rgba(255,255,255,0.22); }
.on-dark .process-step p { color: rgba(255,255,255,0.75); }
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 28px 18px; } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- PARTNERS + DOCS ---------- */
.partners-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.partner-cell {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 20px; display: grid; place-items: center; min-height: 98px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.partner-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.partner-cell img { max-width: 82%; max-height: 60px; width: auto; object-fit: contain; }
.partner-cell.is-text { font-weight: 900; font-size: 17px; letter-spacing: -0.02em; color: var(--green); text-transform: uppercase; }
.docs-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.doc-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px;
}
.doc-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--green-tint); color: var(--green); display: grid; place-items: center;
}
.doc-icon svg { width: 24px; height: 24px; }
.doc-item h4 { font-weight: 800; font-size: 15px; letter-spacing: -0.01em; }
.doc-item p { font-size: 12px; color: var(--ink-muted); font-weight: 500; margin-top: 3px; }
@media (max-width: 1000px) { .partners-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .docs-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .partners-logos { grid-template-columns: 1fr 1fr; } .docs-strip { grid-template-columns: 1fr; } }

/* ---------- FAQ + FORM (две колонки) ---------- */
.faq-form-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .faq-form-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- STATS STRIP: 6-bullet вариант (B2B) ---------- */
.stats-grid--6 { grid-template-columns: repeat(6, 1fr); }
.stats-grid--6 .stat { flex-direction: column; align-items: flex-start; gap: 8px; padding-right: 20px; }
.stats-grid--6 .stat-num { font-size: clamp(26px, 2.4vw, 40px); }
.stats-grid--6 .stat-lbl { font-size: 11px; }
@media (max-width: 1100px) {
  .stats-grid--6 { grid-template-columns: repeat(3, 1fr); gap: 26px 16px; }
  .stats-grid--6 .stat:nth-child(3n) { border-right: none; }
}
@media (max-width: 600px) {
  .stats-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid--6 .stat:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stats-grid--6 .stat:nth-child(even) { border-right: none; }
}
@media (max-width: 380px) { .stats-grid--6 { grid-template-columns: 1fr; } }

/* ============================================================
   SHOP: каталог, карточки, степпер, корзина (drawer), оформление
   ============================================================ */

/* плашка про выпечку под заказ / 48 ч */
.note-48 {
  display: flex; align-items: center; gap: 16px;
  background: var(--green-tint); border: 1px solid rgba(33,113,65,0.22);
  border-radius: var(--radius-card); padding: 18px 22px;
  margin: 0 auto 40px; max-width: 920px;
}
.note-48 svg { width: 26px; height: 26px; color: var(--green); flex-shrink: 0; }
.note-48 p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); font-weight: 500; }
.note-48 b { color: var(--green); font-weight: 800; }

/* сетка каталога */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1080px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .shop-grid { grid-template-columns: 1fr; } }

.pcard {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pcard-media {
  position: relative; background: var(--bg-soft); border-radius: 16px;
  aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; margin-bottom: 16px;
}
.pcard-media img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(20,20,20,0.2));
  transition: transform 0.5s var(--ease);
}
.pcard:hover .pcard-media img { transform: scale(1.07) rotate(-2deg); }
.pcard-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 11px; border-radius: 100px;
}
.pcard-body { display: flex; flex-direction: column; flex: 1; }
.pcard-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.pcard-head h3 { font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.12; }
.pcard-weight { font-size: 12px; font-weight: 700; color: var(--ink-muted); white-space: nowrap; }
.pcard-tagline { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 12px; font-weight: 400; }
.pcard-toggle {
  align-self: flex-start; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 800; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.04em; padding: 0; margin-bottom: 10px;
}
.pcard-toggle::after { content: ' ▾'; font-size: 10px; }
.pcard-toggle.is-open::after { content: ' ▴'; }
.pcard-details { border-top: 1px solid var(--line); padding-top: 12px; margin-bottom: 14px; }
.pcard-details p { font-size: 12px; line-height: 1.5; color: var(--ink-muted); margin-bottom: 7px; font-weight: 400; }
.pcard-details b { color: var(--ink-soft); font-weight: 800; }
.pcard-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pcard-price { font-size: 19px; font-weight: 900; color: var(--ink); letter-spacing: -0.01em; }

/* степпер количества */
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.stepper button {
  width: 32px; height: 32px; border: none; background: var(--bg-soft); cursor: pointer;
  font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1;
  display: grid; place-items: center; transition: background 0.2s;
}
.stepper button:hover { background: var(--cta); }
.stepper .qty, .stepper span { min-width: 30px; text-align: center; font-weight: 800; font-size: 14px; }
.stepper--sm button { width: 26px; height: 26px; font-size: 15px; }
.stepper--sm span { min-width: 24px; font-size: 13px; }

.pcard-add {
  flex: 1; min-width: 110px; background: var(--ink); color: #fff; border: none; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 12px 14px; border-radius: 100px; transition: background 0.25s, transform 0.2s;
}
.pcard-add:hover { background: var(--green); }
.pcard-add.is-added { background: var(--green); }

/* кнопка-корзина в шапке */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 100px; border: 1px solid currentColor;
  background: transparent; color: inherit; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.cart-btn svg { width: 19px; height: 19px; }
.cart-btn:hover { background: var(--cta); color: var(--ink); border-color: var(--cta); }
.cart-btn.pulse { animation: cartPulse 0.4s var(--ease); }
@keyframes cartPulse { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
[data-cart-count] {
  position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--cta); color: var(--ink); border-radius: 100px;
  font-size: 11px; font-weight: 900; display: grid; place-items: center;
}
[data-cart-count].is-empty { display: none; }

/* drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(10,20,14,0.5); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s; z-index: 90; backdrop-filter: blur(2px);
}
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: var(--bg); z-index: 91; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.4);
}
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }
body.cart-open .cart-drawer { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-card);
  cursor: pointer; font-size: 16px; color: var(--ink); display: grid; place-items: center;
}
.cart-close:hover { background: var(--ink); color: #fff; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.cart-empty { text-align: center; color: var(--ink-muted); font-weight: 600; padding: 48px 0; }
.cart-item { display: grid; grid-template-columns: 52px 1fr auto auto; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 52px; height: 52px; object-fit: contain; background: var(--bg-soft); border-radius: 10px; }
.cart-item-name { font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.cart-item-name span { color: var(--ink-muted); font-weight: 600; }
.cart-item-price { font-size: 12px; color: var(--ink-muted); font-weight: 600; margin-top: 3px; }
.cart-item-del { background: none; border: none; cursor: pointer; color: var(--ink-muted); font-size: 14px; padding: 4px; }
.cart-item-del:hover { color: #c0392b; }
.cart-foot { border-top: 1px solid var(--line); padding: 20px 26px 26px; background: var(--bg-card); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); font-weight: 800; }
.cart-total b { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; }
.cart-form { display: flex; flex-direction: column; gap: 10px; }
.cart-form .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cart-form input, .cart-form select, .cart-form textarea {
  width: 100%; padding: 12px 14px; font-size: 14px; font-family: inherit; font-weight: 500;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px; color: var(--ink);
}
.cart-form input:focus, .cart-form select:focus, .cart-form textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(33,113,65,0.12);
}
.cart-form textarea { resize: vertical; min-height: 56px; }
.cart-error { font-size: 12px; color: #c0392b; font-weight: 700; }
.cart-submit {
  background: var(--cta); color: var(--ink); border: none; cursor: pointer; margin-top: 4px;
  font-family: inherit; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 16px; border-radius: 100px; box-shadow: 0 12px 26px -10px rgba(243,198,78,0.8);
  transition: background 0.2s, transform 0.2s;
}
.cart-submit:hover { background: var(--cta-dark); transform: translateY(-2px); }
.cart-hint { font-size: 11px; color: var(--ink-muted); text-align: center; margin-top: 4px; }
.cart-terms {
  display: flex; gap: 8px; align-items: flex-start;
  background: var(--green-tint); border: 1px solid rgba(33,113,65,0.22); border-radius: 12px;
  padding: 12px 14px; font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); font-weight: 500; margin-bottom: 4px;
}
.cart-terms::before { content: '🚚'; font-size: 15px; line-height: 1.2; flex-shrink: 0; }
@media (max-width: 460px) { .cart-head, .cart-body, .cart-foot { padding-left: 18px; padding-right: 18px; } }

/* B2B: список выгод рядом с формой заявки */
.apply-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.apply-benefits li {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 4px;
}
.apply-benefits b { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.apply-benefits span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; font-weight: 400; }

/* бейдж «Хит продаж» на карточке товара */
.pcard-hit {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--cta); color: var(--ink);
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 6px 11px; border-radius: 100px;
}

/* B2B: фото полки вместо макета (с обрезкой) */
.shelf-visual--photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.shelf-visual--photo::before { content: none; }
.shelf-visual--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shelf-visual--photo .shelf-caption {
  position: absolute; top: 16px; right: 16px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 14px; border-radius: 100px;
}

/* B2B: SKU-карточка со свайп-галереей (упаковка / без / в разрезе) */
.sku-media { position: relative; aspect-ratio: 1.05; background: var(--bg-soft); border-radius: 14px; overflow: hidden; margin-bottom: 16px; }
.sku-track { display: flex; height: 100%; transition: transform 0.4s var(--ease); }
.sku-slide { min-width: 100%; height: 100%; display: grid; place-items: center; padding: 14px; }
.sku-slide img { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(20,20,20,0.18)); }
.sku-slide--soon span {
  border: 2px dashed var(--line); border-radius: 12px; padding: 22px 26px; text-align: center;
  color: var(--ink-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; line-height: 1.4;
}
.sku-slide--soon small { display: block; font-weight: 600; text-transform: none; letter-spacing: 0; margin-top: 4px; opacity: 0.8; }
.sku-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.9); color: var(--ink); font-size: 18px; line-height: 1;
  display: grid; place-items: center; opacity: 0; transition: opacity 0.2s; box-shadow: var(--shadow-soft);
}
.sku-media:hover .sku-nav { opacity: 1; }
.sku-nav.prev { left: 8px; } .sku-nav.next { right: 8px; }
.sku-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.sku-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); cursor: pointer; transition: background 0.2s; }
.sku-dots i.active { background: var(--green); }
@media (hover: none) { .sku-nav { display: none; } }

/* B2B: кейсы — две карточки в ряд */
.cases-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .cases-row { grid-template-columns: 1fr; } }

/* B2B: кейсы клиентов (фото полки + карточки) */
.cases-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: stretch; }
.case-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; margin: 0; background: var(--bg-soft); }
.case-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; font-size: 13px; font-weight: 700;
}
/* плейсхолдер, пока файл фото не добавлен */
.case-photo.no-img { display: grid; place-items: center; border: 2px dashed var(--line); }
.case-photo.no-img img { display: none; }
.case-photo.no-img figcaption { position: static; background: none; color: var(--ink-muted); text-align: center; }
.case-photo.no-img::before { content: '📷 фото полки'; color: var(--ink-muted); font-weight: 800; font-size: 14px; }
.case-list { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.case-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px 26px; }
.case-name { font-weight: 900; font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--green); margin-bottom: 8px; }
.case-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 400; }
.case-card b { color: var(--ink); font-weight: 800; }
@media (max-width: 820px) { .cases-grid { grid-template-columns: 1fr; } .case-photo { min-height: 240px; } }

/* плашки героя: ограничиваем ширину (чтобы длинный состав переносился),
   и делаем крупнее на десктопе (на мобиле были норм) */
.hero-mini-badge { max-width: 210px; }
@media (min-width: 981px) {
  .hero-mini-badge { padding: 15px 20px; font-size: 15px; }
  .hero-mini-badge small { font-size: 10.5px; margin-bottom: 4px; }
}
/* на узких экранах плашки не накрывают хлеб: статичной стопкой по центру
   (чип → хлеб → чип), а не плавающими поверх картинки */
@media (max-width: 980px) {
  .hero-visual { flex-direction: column; gap: 14px; }
  .hero-mini-badge {
    position: static; transform: none !important;
    top: auto; right: auto; bottom: auto; left: auto;
    max-width: 86%; text-align: center;
  }
}

/* защита от случайного горизонтального переполнения на мобиле (декоративные blob/анимации) */
html, body { overflow-x: hidden; }
