/* ============================================================
   MamaRent — дизайн-система по мотивам momcozy.com
   Montserrat · винный #6a2b3a · розовый #9c5455 · карточки #f7f7f7 r16
   ============================================================ */

:root {
  /* motion-токены: power3.out по умолчанию, expo.out для появлений; выход = 75% входа */
  --ease-out: cubic-bezier(.215, .61, .355, 1);   /* power3.out */
  --ease-expo: cubic-bezier(.16, 1, .3, 1);       /* expo.out */
  --dur: .9s;
  --dur-exit: .675s;
  --dur-ui: .42s;
  --dur-ui-exit: .32s;

  /* Палитра. Каркас (винный/розовый) — из референса momcozy, заданного ТЗ.
     Сигнальный слой — Medela-жёлтый: цвет крышек, воронок и упаковки на 60 фото клиента. */
  --brand: #9c5455;
  --brand-rgb: 156, 84, 85;
  --wine: #6a2b3a;
  --wine-rgb: 106, 43, 58;
  --medela: #ffcb00;          /* жёлтый Medela — только факты и статусы, не декор */
  --medela-soft: #fff3c4;
  --badge: #b27a7e;
  --text: #2b2124;            /* тёплый графит вместо чистого чёрного */
  --title: #241a1d;
  --muted: #766a6d;
  --soft: #f6f1ef;            /* нейтраль с примесью брендового тона */
  --soft-pink: #f9f0ed;
  --pink-2: #f3e2dd;
  --border: #e9e0dd;
  --white: #fdfbfa;           /* тёплый белый — без чистого #fff */
  --on-dark: #fdfbfa;         /* текст на тёмных заливках */
  --on-dark-70: rgba(253, 251, 250, .72);
  --on-dark-15: rgba(253, 251, 250, .16);
  --dark-btn: #241a1d;
  --r-card: 16px;
  --r-big: 18px;
  --r-btn: 9px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --container: 1280px;
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* нативный smooth — только когда Lenis не управляет скроллом (reduced-motion, нет JS):
   иначе браузерное сглаживание накладывается на Lenis и скролл «желейнит» */
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { color: var(--title); font-weight: 600; line-height: 1.3; text-wrap: balance; }
p, .lead, .section-sub { text-wrap: pretty; }
.h-wine { color: var(--wine); }

.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px 24px; margin-bottom: 28px; flex-wrap: wrap; }

/* сетки-утилиты (вместо inline-стилей — чтобы работал адаптив) */
.cols-2x { grid-template-columns: 1fr 1fr; }
.cols-3x { grid-template-columns: repeat(3, 1fr); }
.cols-5x { grid-template-columns: repeat(5, 1fr); }
.section-title { font-size: 32px; font-weight: 600; letter-spacing: -0.3px; }
.section-title.sm { font-size: 28px; }
.section-sub { color: var(--muted); font-size: 15px; margin-top: 8px; max-width: 640px; }
.section-link { font-size: 14px; font-weight: 600; color: var(--wine); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; }
.section-link:hover { color: var(--brand); }
.section-link svg { transition: transform .2s; }
.section-link:hover svg { transform: translateX(3px); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wine); color: var(--on-dark); border-radius: 999px;
  padding: 12px 28px; font-size: 15px; font-weight: 600; line-height: 1.2;
  transition: background var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out),
    transform var(--dur-ui) var(--ease-out), box-shadow var(--dur-ui) var(--ease-out);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn:hover { background: #55212e; box-shadow: 0 8px 22px rgba(var(--wine-rgb),.32); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn.sm { padding: 8px 20px; font-size: 13.5px; }
.btn.lg { padding: 16px 36px; font-size: 16px; }
.btn.dark { background: var(--dark-btn); border-radius: var(--r-btn); }
.btn.dark:hover { background: #000; box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.btn.light { background: var(--white); color: var(--title); }
.btn.light:hover { background: var(--white); color: var(--wine); box-shadow: 0 10px 26px rgba(35,12,18,.18); }
.btn.outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn.outline:hover { background: var(--wine); color: var(--on-dark); box-shadow: none; }
.btn.ghost { background: var(--soft); color: var(--title); }
.btn.ghost:hover { background: var(--pink-2); }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* ---------- Шапка ---------- */
.announce {
  background: var(--wine); color: var(--on-dark); text-align: center;
  font-size: 12.5px; font-weight: 500; letter-spacing: .2px;
  padding: 8px 16px; position: relative; z-index: 60;
}
.announce b { font-weight: 700; }
.announce .demo-tag {
  display: inline-block; margin-left: 10px; padding: 1px 8px; border: 1px solid var(--on-dark-70);
  border-radius: 999px; font-size: 10.5px; letter-spacing: .8px; vertical-align: 1px;
}
.header {
  position: sticky; top: 0; z-index: 50; background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.header-in { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.logo-name { font-size: 23px; font-weight: 700; color: var(--wine); letter-spacing: -.5px; }
.logo-name span { color: var(--brand); }
.logo-tag { font-size: 9.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; gap: 4px; margin: 0 auto; }
.nav > li { position: relative; }
.nav > li > a {
  display: block; padding: 20px 12px; font-size: 13.5px; font-weight: 600; color: var(--title);
  transition: color .15s; position: relative; white-space: nowrap;
}
.nav > li > a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 14px; height: 2px;
  background: var(--wine); border-radius: 2px; transform: scaleX(0); transition: transform .2s; transform-origin: left;
}
.nav > li > a:hover { color: var(--wine); }
.nav > li > a:hover::after, .nav > li > a.active::after { transform: scaleX(1); }
.nav > li > a.active { color: var(--wine); }

.mega {
  position: absolute; top: 100%; left: -20px; background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 16px; min-width: 540px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px 24px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav li:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega a {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--text); transition: background .15s, color .15s;
}
.mega a:hover { background: var(--soft-pink); color: var(--wine); }
.mega a svg { color: var(--brand); flex-shrink: 0; }
.mega .mega-head { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 6px 10px 2px; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-phone { text-align: right; margin-right: 10px; line-height: 1.25; }
.header-phone a { font-size: 14.5px; font-weight: 700; color: var(--title); }
.header-phone a:hover { color: var(--wine); }
.header-phone small { display: block; font-size: 10.5px; color: var(--muted); font-weight: 500; }
.icon-btn {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--title); transition: background .15s, color .15s; position: relative;
}
.icon-btn:hover { background: var(--soft-pink); color: var(--wine); }
.icon-btn .count {
  position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--brand); color: var(--on-dark); font-size: 10px; font-weight: 700;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.burger { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--soft-pink); overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; min-height: 480px; padding: 40px 0; }

/* editorial: фото на всю секцию, текст поверх; подложка — функциональный градиент читаемости */
.hero.editorial { position: relative; min-height: min(76vh, 720px); display: flex; align-items: center; padding: 72px 0; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 74% 32%;
  will-change: transform; transform: translateZ(0);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--soft-pink) 8%, rgba(249, 240, 237, .9) 36%, rgba(249, 240, 237, 0) 66%);
}
.hero-ed-in { position: relative; z-index: 2; width: 100%; }
.hero-ed-in h1 { font-size: clamp(38px, 4.8vw, 62px); line-height: 1.12; color: var(--wine); letter-spacing: -1.4px; margin-bottom: 20px; max-width: 640px; }
.hero-ed-in .hero-sub { max-width: 520px; }
@media (max-width: 880px) {
  .hero.editorial { min-height: 0; padding: 240px 0 40px; }
  .hero-bg img { object-position: 78% 18%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(249, 240, 237, 0) 0%, rgba(249, 240, 237, .55) 34%, var(--soft-pink) 58%); }
  .hero-ed-in h1 { font-size: clamp(30px, 8vw, 40px); }
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white); border-radius: 999px;
  padding: 8px 16px; font-size: 12.5px; font-weight: 600; color: var(--wine);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.hero-kicker svg { color: var(--brand); }
.hero h1 { font-size: clamp(34px, 4.1vw, 54px); line-height: 1.16; color: var(--wine); letter-spacing: -1px; margin-bottom: 16px; }
.hero-sub { font-size: 16px; color: #4d3a3e; max-width: 560px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 5/4.2; object-fit: cover; }
.hero-media.on-white img { background: var(--white); object-fit: contain; padding: 24px; }

/* предметная витрина: два реальных кадра оборудования слоями, без плавающих бейджей */
.hero-stack { display: grid; }
.hero-stack .main {
  grid-area: 1/1; width: 88%; justify-self: end; aspect-ratio: 5/4.4; object-fit: contain;
  background: var(--white); border-radius: 24px; padding: 24px;
  box-shadow: 16px 24px 48px rgba(var(--wine-rgb), .16);
}
.hero-stack .mini {
  grid-area: 1/1; width: 42%; justify-self: start; align-self: end; aspect-ratio: 1;
  object-fit: contain; background: var(--white); border-radius: 16px; padding: 12px;
  transform: translateY(14%); box-shadow: 8px 12px 32px rgba(var(--wine-rgb), .2);
  border: 1px solid var(--border);
}
.hero-stack .tag {
  grid-area: 1/1; justify-self: end; align-self: start; transform: translateY(-40%);
  background: var(--medela); color: var(--title); border-radius: 999px; padding: 8px 16px;
  font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); max-width: 320px; text-align: center;
}
@media (max-width: 880px) {
  .hero-stack .main { width: 100%; }
  .hero-stack .mini { width: 36%; transform: translateY(8%); }
  .hero-stack .tag { transform: none; margin: 8px; font-size: 11px; }
}

/* факт-лента: жёлтая полоса Medela-упаковки несёт проверенные факты — вместо SaaS-метрик и плавающего бейджа */
.fact-ribbon { background: var(--medela); color: var(--title); overflow: hidden; }
.fact-ribbon .in {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 32px; flex-wrap: wrap;
  padding: 14px 24px; max-width: var(--container); margin: 0 auto;
}
.fact-ribbon .fact { display: flex; align-items: baseline; gap: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.fact-ribbon .fact b { font-size: 17px; font-weight: 700; letter-spacing: -.2px; }
.fact-ribbon .fact .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wine); align-self: center; }
@media (max-width: 880px) { .fact-ribbon .in { justify-content: flex-start; } }

/* ---------- Серии (4 карточки) ---------- */
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.series-card {
  background: var(--soft); border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-ui) var(--ease-out), box-shadow var(--dur-ui) var(--ease-out);
}
.series-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
/* акцентная карта серии: во всю ширину, горизонтальная, с направленной тенью */
.series-card.featured {
  grid-column: 1 / -1; flex-direction: row; align-items: stretch;
  background: var(--pink-2);
  box-shadow: 14px 22px 44px rgba(var(--wine-rgb), .1);
}
.series-card.featured .media { height: auto; min-height: 260px; flex: 0 0 44%; background: var(--white); }
.series-card.featured .series-body { justify-content: center; padding: 30px 36px; }
.series-card.featured h3 { font-size: 26px; }
.series-card.featured p { font-size: 14px; max-width: 520px; }
@media (max-width: 880px) {
  .series-card.featured { flex-direction: column; }
  .series-card.featured .media { flex: none; height: 230px; width: 100%; }
}
.series-card .media { height: 230px; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.series-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.series-card:hover .media img { transform: scale(1.045); }
.series-card .media.contain img { object-fit: contain; padding: 16px; }
.series-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.series-body h3 { font-size: 19px; margin-bottom: 8px; }
.series-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.series-body .btn { align-self: flex-start; }

/* ---------- Квиз-полоса ---------- */
.quiz-strip { border-radius: var(--r-big); overflow: hidden; position: relative; background: var(--wine); }
.quiz-in { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; min-height: 220px; }
.quiz-text { padding: 40px 48px; color: var(--on-dark); }
.quiz-text h2 { color: var(--on-dark); font-size: 30px; margin-bottom: 10px; }
.quiz-text p { font-size: 14.5px; opacity: .85; margin-bottom: 24px; max-width: 520px; }
.quiz-media { height: 100%; min-height: 260px; }
.quiz-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }

/* ---------- Табы ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tab {
  padding: 8px 20px; border-radius: 999px; background: var(--soft); font-size: 13.5px;
  font-weight: 600; color: var(--text);
  transition: background var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out), transform var(--dur-ui) var(--ease-out);
}
.tab:hover { background: var(--pink-2); color: var(--wine); transform: translateY(-2px); }
.tab.active { background: var(--wine); color: var(--on-dark); }

/* ---------- Карточка товара ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  background: var(--soft); border-radius: var(--r-card); overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--dur-ui) var(--ease-out), box-shadow var(--dur-ui) var(--ease-out);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
/* аренда: флагманская модель — первая карта тяжелее остальных */
.rent-grid .product-card:first-child {
  border: 2px solid var(--wine); background: var(--white);
  box-shadow: 12px 18px 40px rgba(var(--wine-rgb), .16);
}
.rent-grid .product-card:first-child .pc-title { font-size: 19px; }
.product-card .media {
  height: 218px; background: var(--white); display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-card .media img { max-height: 100%; width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .35s; }
.product-card:hover .media img { transform: scale(1.05); }
.pc-body { padding: 16px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pc-cat { display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.stock-chip {
  font-size: 10px; font-weight: 700; letter-spacing: .02em; text-transform: none;
  background: var(--soft-pink); color: var(--muted); border-radius: 999px; padding: 3px 10px; white-space: nowrap;
}
.stock-chip.in { background: var(--medela); color: var(--title); }
.pc-title { font-size: 14.5px; font-weight: 600; color: var(--title); line-height: 1.45; margin-bottom: 10px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pc-title:hover { color: var(--wine); }
.pc-meta { font-size: 11.5px; color: var(--muted); margin-bottom: 10px; }
.pc-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pc-price { font-size: 17px; font-weight: 700; color: var(--title); }
.pc-price small { font-size: 12px; font-weight: 600; color: var(--muted); }
.pc-add {
  width: 42px; height: 42px; border-radius: 50%; background: var(--wine); color: var(--on-dark);
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.pc-add:hover { background: #55212e; }
.pc-add:active { transform: scale(.92); }
.pc-add.added { background: #428445; }
/* карточка аренды */
.rent-price-rows { margin: 4px 0 12px; }
.rent-price-rows .row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.rent-price-rows .row:last-child { border-bottom: 0; }
.rent-price-rows b { font-weight: 700; color: var(--title); }

/* заглушка без фото */
.ph-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--soft-pink); }
.ph-img svg { width: 52px; height: 52px; color: var(--badge); opacity: .55; }

/* ---------- РАГВ / экспертный блок ---------- */
.expert { background: var(--soft-pink); border-radius: var(--r-big); padding: 48px; display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.expert-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.expert h2 { font-size: 30px; margin-bottom: 16px; }
.expert p { font-size: 14.5px; color: #5c4a4e; margin-bottom: 12px; }
.expert-media { background: var(--white); border-radius: 14px; padding: 28px; text-align: center;
  box-shadow: 12px 18px 40px rgba(var(--wine-rgb), .14); transform: rotate(1.2deg); }
.expert:hover .expert-media { transform: rotate(0); transition: transform var(--dur) var(--ease-out); }
.expert-media img { margin: 0 auto 8px; max-height: 150px; object-fit: contain; }
.expert-media figcaption { font-size: 12px; color: var(--muted); }

/* ---------- Фичи (3 карточки с фото) ---------- */
.features-grid { display: grid; grid-template-columns: 1fr 1.22fr 1fr; gap: 16px; align-items: start; }
.feature-card { border-radius: var(--r-card); overflow: hidden; background: var(--soft); display: flex; flex-direction: column;
  transition: transform var(--dur-ui) var(--ease-out), box-shadow var(--dur-ui) var(--ease-out); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
/* средняя карточка — главный аргумент: тяжелее и выше остальных */
.features-grid.spotlight .feature-card:nth-child(2) {
  transform: translateY(-16px); box-shadow: 0 18px 44px rgba(var(--wine-rgb), .16);
}
.features-grid.spotlight .feature-card:nth-child(2):hover { transform: translateY(-21px); }
.features-grid.spotlight .feature-card:nth-child(2) .media { height: 250px; }
@media (max-width: 880px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid.spotlight .feature-card:nth-child(2) { transform: none; }
  .features-grid.spotlight .feature-card:nth-child(2):hover { transform: translateY(-5px); }
}
.feature-card .media { height: 210px; overflow: hidden; }
.feature-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.feature-card:hover .media img { transform: scale(1.045); }
.feature-card .body { padding: 24px; }
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---------- Сравнение ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-big); }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th, .compare td { padding: 14px 18px; text-align: center; font-size: 13.5px; border-bottom: 1px solid var(--border); }
.compare tr:last-child td { border-bottom: 0; }
.compare thead th { background: var(--white); padding: 24px 18px 18px; vertical-align: bottom; }
.compare thead .cmp-img { height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.compare thead .cmp-img img { max-height: 100%; max-width: 150px; object-fit: contain; }
.compare thead b { display: block; font-size: 16px; margin-bottom: 4px; color: var(--title); }
.compare thead .cmp-price { font-size: 13.5px; color: var(--wine); font-weight: 700; margin-bottom: 12px; display: block; }
.compare td:first-child, .compare th:first-child {
  text-align: left; font-weight: 600; color: var(--title); background: var(--soft);
  position: sticky; left: 0; min-width: 180px;
}
.compare tbody tr:hover td { background: var(--soft-pink); }
.compare tbody tr:hover td:first-child { background: var(--pink-2); }
.compare .yes { color: #428445; font-weight: 700; }
.compare .no { color: #bbb; }

/* ---------- Duo-баннеры ---------- */
.duo { display: grid; grid-template-columns: 1.32fr .68fr; gap: 16px; }
.duo-card {
  border-radius: var(--r-big); overflow: hidden; position: relative; min-height: 240px;
  display: flex; align-items: flex-end; background: var(--soft);
}
.duo-card:first-child { min-height: 300px; }
.duo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.duo-card:hover img { transform: scale(1.035); }
.duo-card .ovl {
  position: relative; z-index: 2; width: 100%; padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(35,12,18,.72));
  color: var(--on-dark);
}
.duo-card h3 { color: var(--on-dark); font-size: 21px; margin-bottom: 6px; }
.duo-card p { font-size: 13px; opacity: .85; margin-bottom: 14px; max-width: 420px; }

/* ---------- Траст-полоса ---------- */
.trust-grid { display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); gap: 16px; }
.trust-item { background: var(--soft); border-radius: 14px; padding: 24px 16px; text-align: center;
  transition: background var(--dur-ui) var(--ease-out), transform var(--dur-ui) var(--ease-out), box-shadow var(--dur-ui) var(--ease-out); }
.trust-item:hover { background: var(--soft-pink); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-item .ic { width: 46px; height: 46px; margin: 0 auto 12px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--wine); box-shadow: var(--shadow-sm); }
.trust-item b { display: block; font-size: 12.5px; font-weight: 700; color: var(--title); line-height: 1.4; margin-bottom: 3px; }
.trust-item span { font-size: 11px; color: var(--muted); line-height: 1.45; display: block; }
/* первый пункт — статус, подтверждённый производителем: тёмный акцент */
.trust-item:first-child { background: var(--wine); text-align: left; padding: 24px 22px; box-shadow: 12px 18px 36px rgba(var(--wine-rgb),.28); }
.trust-item:first-child .ic { margin: 0 0 14px; background: var(--on-dark-15); color: var(--on-dark); box-shadow: none; }
.trust-item:first-child b { color: var(--on-dark); font-size: 14.5px; }
.trust-item:first-child span { color: var(--on-dark-70); font-size: 11.5px; }
.trust-item:first-child:hover { background: #55212e; }
@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:first-child { grid-column: 1 / -1; }
}

/* ---------- Фотостена ---------- */
/* мозаика: один доминирующий кадр 2×2 + два малых + один широкий */
.wall-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.wall-item { border-radius: var(--r-big); overflow: hidden; position: relative; }
.wall-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.wall-item:nth-child(4) { grid-column: span 2; }
.wall-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.wall-item:hover img { transform: scale(1.05); }
@media (max-width: 560px) {
  .wall-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .wall-item:nth-child(1) { grid-column: span 2; }
  .wall-item:nth-child(4) { grid-column: span 2; }
}
.wall-item .cap {
  position: absolute; left: 12px; bottom: 12px; background: rgba(253,251,250,.92); backdrop-filter: blur(4px);
  border-radius: 999px; padding: 6px 14px; font-size: 11.5px; font-weight: 600; color: var(--wine);
}

/* ---------- Рейтинг/прозрачность ---------- */
.social-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 16px; align-items: start; }
.social-card { background: var(--soft); border-radius: var(--r-big); padding: 34px 36px; display: flex; flex-direction: column; }
.social-card.pinkish { background: var(--soft-pink); }
.social-card .ic-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.social-card .ic-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--wine); box-shadow: var(--shadow-sm); }
.social-card h3 { font-size: 19px; }
.social-card p { font-size: 13.5px; color: var(--muted); flex: 1; margin-bottom: 16px; }
.stars { display: inline-flex; gap: 3px; color: var(--wine); }
.rating-big { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.rating-big b { font-size: 44px; font-weight: 700; color: var(--wine); line-height: 1; }
.rating-big span { font-size: 13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; font-size: 15.5px; font-weight: 600; color: var(--title); text-align: left;
  transition: color .15s;
}
.faq-q:hover { color: var(--wine); }
.faq-q .pl { width: 28px; height: 28px; border-radius: 50%; background: var(--soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s, background .2s; }
.faq-item.open .faq-q .pl { transform: rotate(45deg); background: var(--pink-2); color: var(--wine); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-in { padding: 0 40px 22px 4px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-a-in p + p { margin-top: 8px; }

/* ---------- CTA / обратный звонок ---------- */
.cta-strip { background: var(--wine); border-radius: var(--r-big); padding: 48px; color: var(--on-dark); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; position: relative; overflow: hidden; }
.cta-strip::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--medela);
}
.cta-strip h2 { color: var(--on-dark); font-size: 28px; margin-bottom: 8px; }
.cta-strip p { font-size: 14px; opacity: .85; max-width: 520px; }
.cta-form { display: flex; gap: 10px; position: relative; z-index: 2; flex-wrap: wrap; }
.cta-form input {
  height: 52px; border: none; border-radius: 999px; padding: 0 22px; min-width: 250px;
  font-size: 14.5px; outline: none; background: var(--white); color: var(--title);
}
.cta-consent { grid-column: 1 / -1; font-size: 11px; opacity: .6; margin-top: 10px; }

/* ---------- Футер ---------- */
.footer { border-top: 1px solid var(--border); background: var(--white); margin-top: 72px; }
.footer-main { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.25fr; gap: 40px; padding: 52px 0 40px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 14px 0 18px; max-width: 320px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--wine); }
.footer-contact div { font-size: 13.5px; padding: 5px 0; color: var(--text); }
.footer-contact b { font-size: 16px; color: var(--title); }
.footer-contact .mail { color: var(--wine); font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 11.5px; color: var(--muted); line-height: 1.6; }
.footer-pay img { height: 26px; border-radius: 4px; }
.footer-demo { background: var(--soft); text-align: center; font-size: 11px; color: var(--muted); padding: 10px 16px; }
.footer-demo b { color: var(--wine); }

/* ---------- Корзина (drawer) ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(23,10,14,.45); z-index: 90;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-ui-exit) var(--ease-out), visibility var(--dur-ui-exit);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.overlay.show { opacity: 1; visibility: visible; transition-duration: var(--dur-ui); }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 94vw; background: var(--white);
  z-index: 100; display: flex; flex-direction: column; transform: translateX(105%);
  transition: transform var(--dur-ui-exit) var(--ease-out); box-shadow: var(--shadow-lg);
}
.drawer.show { transform: translateX(0); transition-duration: var(--dur-ui); transition-timing-function: var(--ease-expo); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.drawer-head h3 { font-size: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px; }
.cart-empty svg { margin: 0 auto 16px; color: var(--pink-2); }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item .im { width: 64px; height: 64px; background: var(--soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item .im img { max-width: 85%; max-height: 85%; object-fit: contain; }
.cart-item b { font-size: 12.5px; font-weight: 600; line-height: 1.4; display: block; margin-bottom: 4px; }
.cart-item .pr { font-size: 13px; color: var(--wine); font-weight: 700; }
.qty { display: inline-flex; align-items: center; gap: 2px; background: var(--soft); border-radius: 999px; padding: 3px; }
.qty button { width: 26px; height: 26px; border-radius: 50%; font-size: 15px; font-weight: 700; color: var(--title); display: flex; align-items: center; justify-content: center; }
.qty button:hover { background: var(--white); }
.qty span { min-width: 24px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-x { color: var(--muted); font-size: 11px; margin-top: 4px; }
.cart-x:hover { color: #c33; }
.drawer-foot { border-top: 1px solid var(--border); padding: 16px 24px 22px; }
.drawer-total { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 14px; }
.drawer-total b { font-size: 19px; color: var(--title); }
.drawer-note { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: center; }

/* ---------- Модалки ---------- */
.modal {
  position: fixed; inset: 0; z-index: 110; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity var(--dur-ui-exit) var(--ease-out), visibility var(--dur-ui-exit);
}
.modal.show { opacity: 1; visibility: visible; transition-duration: var(--dur-ui); }
.modal-card {
  background: var(--white); border-radius: 18px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 34px 36px; position: relative; transform: translateY(18px) scale(.985);
  transition: transform var(--dur-ui-exit) var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.modal.show .modal-card { transform: translateY(0) scale(1); transition-duration: var(--dur-ui); transition-timing-function: var(--ease-expo); }
.modal-x { position: absolute; top: 14px; right: 14px; }
.modal-card h3 { font-size: 21px; margin-bottom: 6px; }
.modal-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.form-grid { display: grid; gap: 12px; }
.form-grid label { font-size: 12px; font-weight: 600; color: var(--title); display: block; margin-bottom: 5px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; height: 46px; border: 1.5px solid var(--border); border-radius: 11px; padding: 0 15px;
  outline: none; transition: border-color .15s; background: var(--white); color: var(--text);
}
.form-grid textarea { height: auto; padding: 12px 15px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--brand); }
.form-note { font-size: 11px; color: var(--muted); }
.radio-row { display: flex; flex-direction: column; gap: 8px; }
.radio-row label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 500; cursor: pointer; margin: 0; }
.radio-row input { width: auto; height: auto; margin-top: 3px; accent-color: var(--wine); }

/* ---------- Поиск ---------- */
.search-panel {
  position: fixed; top: 0; left: 0; right: 0; background: var(--white); z-index: 105; padding: 24px 0;
  box-shadow: var(--shadow-lg); transform: translateY(-105%);
  transition: transform var(--dur-ui-exit) var(--ease-out);
}
.search-panel.show { transform: translateY(0); transition-duration: var(--dur-ui); transition-timing-function: var(--ease-expo); }
.search-in { display: flex; gap: 12px; align-items: center; }
.search-in input {
  flex: 1; height: 54px; border: 1.5px solid var(--border); border-radius: 999px; padding: 0 26px;
  font-size: 15.5px; outline: none;
}
.search-in input:focus { border-color: var(--brand); }
.search-results { max-height: 52vh; overflow-y: auto; margin-top: 16px; }
.search-hit { display: flex; align-items: center; gap: 16px; padding: 10px 12px; border-radius: 12px; }
.search-hit:hover { background: var(--soft-pink); }
.search-hit .im { width: 48px; height: 48px; border-radius: 9px; background: var(--soft); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.search-hit .im img { max-width: 85%; max-height: 85%; object-fit: contain; }
.search-hit b { font-size: 13.5px; font-weight: 600; display: block; }
.search-hit span { font-size: 12px; color: var(--wine); font-weight: 700; }
.search-none { text-align: center; color: var(--muted); font-size: 13.5px; padding: 24px; }

/* ---------- Тост ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); background: var(--title); color: var(--on-dark);
  border-radius: 999px; padding: 12px 24px; font-size: 13.5px; font-weight: 500; z-index: 130;
  opacity: 0; visibility: hidden; transition: all .3s; box-shadow: var(--shadow-lg); text-align: center; max-width: 92vw;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Страницы: общие ---------- */
.page-hero { background: var(--soft-pink); padding: 52px 0; }
.breadcrumbs { font-size: 12px; color: var(--muted); margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--wine); }
.page-hero h1 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.18; color: var(--wine); letter-spacing: -.7px; max-width: 820px; }
.page-hero .lead { margin-top: 12px; font-size: 15.5px; color: #4d3a3e; max-width: 700px; }

/* page-hero с медиа-колонкой */
.ph-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.ph-media img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lg); }
@media (max-width: 880px) {
  .ph-grid { grid-template-columns: 1fr; gap: 26px; }
  .ph-media img { aspect-ratio: 16/9; }
}

/* каталог */
.catalog-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.cat-side { position: sticky; top: calc(var(--header-h) + 20px); }
.cat-side h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; margin-bottom: 2px; transition: background .15s, color .15s; cursor: pointer;
}
.cat-list a:hover { background: var(--soft-pink); color: var(--wine); }
.cat-list a.active { background: var(--wine); color: var(--on-dark); font-weight: 600; }
.cat-list a .n { font-size: 11.5px; opacity: .6; }
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.catalog-tools .found { font-size: 13.5px; color: var(--muted); }
.catalog-tools select { height: 42px; border: 1.5px solid var(--border); border-radius: 999px; padding: 0 18px; outline: none; font-size: 13px; background: var(--white); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* товар */
.product-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: start; padding: 44px 0 12px; }
.gallery-main {
  background: var(--soft); border-radius: var(--r-big); height: 460px;
  display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 12px;
}
.gallery-main img { max-width: 88%; max-height: 88%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumbs button {
  width: 76px; height: 76px; background: var(--soft); border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; border: 2px solid transparent; transition: border-color .15s;
}
.gallery-thumbs button.active { border-color: var(--wine); }
.gallery-thumbs img { max-width: 82%; max-height: 82%; object-fit: contain; }
.p-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.p-title { font-size: 28px; line-height: 1.3; margin-bottom: 10px; }
.p-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.p-meta .ok { color: #428445; font-weight: 600; }
.p-price-row { display: flex; align-items: center; gap: 16px; margin: 6px 0 20px; }
.p-price { font-size: 32px; font-weight: 700; color: var(--title); }
.p-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.p-desc { font-size: 14.5px; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.p-note {
  background: var(--soft-pink); border-radius: 14px; padding: 16px 20px; font-size: 13px; color: #5c4a4e;
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.p-note svg { flex-shrink: 0; color: var(--wine); margin-top: 2px; }
.p-features { margin: 8px 0 22px; }
.p-features li { display: flex; gap: 10px; font-size: 14px; padding: 6px 0; align-items: flex-start; }
.p-features svg { color: var(--brand); flex-shrink: 0; margin-top: 4px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 10px 0 22px; }
.spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.spec-table td:first-child { color: var(--muted); width: 45%; }

/* инфостраницы */
.prose { max-width: 820px; }
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose h3 { font-size: 18px; margin: 24px 0 10px; }
.prose p { margin-bottom: 12px; font-size: 14.5px; line-height: 1.8; }
.prose ul { margin: 10px 0 16px; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: 14.5px; }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; background: var(--brand); border-radius: 50%; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.info-card { background: var(--soft); border-radius: var(--r-card); padding: 24px; }
.info-card .ic { width: 46px; height: 46px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--wine); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.info-card b.accent { color: var(--wine); }

.pickup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pickup-card { border: 1.5px solid var(--border); border-radius: var(--r-card); padding: 28px; }
.pickup-card h3 { font-size: 17px; margin-bottom: 4px; }
.pickup-card .city { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.pickup-card p { font-size: 13.5px; color: var(--muted); }
.pickup-card .hours { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; background: var(--soft); border-radius: 999px; padding: 8px 16px; font-size: 12.5px; font-weight: 600; color: var(--title); }

/* аренда: форма */
.rent-form-card { background: var(--soft); border-radius: var(--r-big); padding: 40px; max-width: 720px; margin: 0 auto; }
.rent-form-card h2 { font-size: 24px; margin-bottom: 6px; }
.rent-form-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-2col .full { grid-column: 1 / -1; }

/* видео-заглушка / инструкции */
.howto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.howto-card { background: var(--soft); border-radius: var(--r-card); padding: 30px; display: flex; gap: 16px; align-items: flex-start; }
.howto-card .num { width: 44px; height: 44px; border-radius: 50%; background: var(--wine); color: var(--on-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.howto-card h3 { font-size: 16px; margin-bottom: 6px; }
.howto-card p { font-size: 13px; color: var(--muted); }

/* ---------- Адаптив ---------- */
@media (max-width: 1080px) {
  .series-grid, .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cols-5x { grid-template-columns: repeat(3, 1fr); }
  .cols-3x { grid-template-columns: repeat(2, 1fr); }
  .wall-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 38px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1120px) {
  .nav, .header-phone { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 880px) {
  .hero-in, .product-layout, .expert, .quiz-in, .social-grid, .duo, .catalog-layout { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16/10; }
  .hero-stats { flex-wrap: wrap; gap: 16px 0; }
  .series-grid, .products-grid, .features-grid, .info-cards, .howto-grid, .pickup-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { grid-template-columns: 1fr; }
  .cat-side { position: static; }
  .quiz-media { display: none; }
  .section { padding: 40px 0; }
  .section-title { font-size: 26px; }
  .page-hero h1 { font-size: 30px; }
}
@media (max-width: 560px) {
  .header-in { gap: 12px; }
  .header-actions { gap: 4px; }
  .icon-btn { width: 36px; height: 36px; }
  .logo-name { font-size: 20px; }
  .series-grid, .products-grid, .features-grid, .catalog-grid, .info-cards, .howto-grid, .pickup-grid, .trust-grid, .form-2col,
  .cols-2x, .cols-3x { grid-template-columns: 1fr; }
  .cols-5x { grid-template-columns: repeat(2, 1fr); }
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .wall-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 30px; }
  .footer-main { grid-template-columns: 1fr; }
  .cta-form input { min-width: 0; width: 100%; }
  .cta-form { flex-direction: column; }
  .drawer { width: 100vw; }
}

/* мобильное меню */
.mobilenav {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 88vw; background: var(--white); z-index: 100;
  transform: translateX(-105%); transition: transform var(--dur-ui-exit) var(--ease-out); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 24px;
}
.mobilenav.show { transform: translateX(0); transition-duration: var(--dur-ui); transition-timing-function: var(--ease-expo); }
.mobilenav a { display: block; padding: 12px 4px; font-size: 15.5px; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobilenav a.sub { font-size: 13.5px; font-weight: 500; padding-left: 18px; color: var(--muted); border-bottom: 0; }
.mobilenav .mn-phone { margin-top: auto; padding-top: 20px; }
.mobilenav .mn-phone b { font-size: 17px; color: var(--wine); display: block; }
.mobilenav .mn-phone span { font-size: 12px; color: var(--muted); }

/* reveal-анимации: контент видим по умолчанию — прячет и оживляет только работающий JS.
   Упавший скрипт, headless-рендер или reduced-motion получают полную страницу без анимаций. */
.rv { opacity: 1; transform: none; }
