/* ═══════════════ V2 · Reset & Tokens ═══════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Палитра — теплый кремовый + тёмно-серый вместо чёрного */
  --c-bg: #ffffff;
  --c-bg-soft: #F7F4EF;        /* основной кремовый бежевый */
  --c-bg-alt: #EFEAE3;         /* подложка/более тёмный кремовый */
  --c-bg-dark: #242424;        /* тёплый тёмно-серый вместо чёрного */
  --c-bg-dark-2: #2e2e2e;
  --c-surface: #ffffff;        /* поверхность карточек */
  --c-input: #ffffff;          /* поля ввода */

  --c-fg: #242424;             /* основной текст */
  --c-fg-2: #3a3a3a;
  --c-fg-3: #5a5a5a;
  --c-muted: #888885;
  --c-muted-2: #b0b0ab;
  --c-line: #eae6df;
  --c-line-2: #d8d2c8;

  --c-accent: #242424;
  --c-sale: #b8261b;

  /* Зелёный для FAB */
  --c-fab: #3F8B5E;
  --c-fab-dark: #2D6E47;
  --c-fab-glow: rgba(63, 139, 94, 0.4);

  /* Типографика */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --tracking-tight: -0.025em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.14em;

  /* Размеры */
  --w-max: 1320px;
  --w-narrow: 980px;

  /* Радиусы */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Отступы секций */
  --pad-section: 100px;

  /* Тени */
  --shadow-sm: 0 1px 3px rgba(20, 20, 20, 0.04), 0 1px 2px rgba(20, 20, 20, 0.03);
  --shadow-md: 0 4px 16px rgba(20, 20, 20, 0.04), 0 2px 6px rgba(20, 20, 20, 0.03);
  --shadow-lg: 0 24px 60px -20px rgba(15, 15, 15, 0.18), 0 6px 18px rgba(20, 20, 20, 0.05);
}

/* ═══════════════ Dark theme ═══════════════ */
:root.theme-dark {
  --c-bg: #161616;
  --c-bg-soft: #1f1f1f;
  --c-bg-alt: #292929;
  --c-bg-dark: #0a0a0a;
  --c-bg-dark-2: #161616;
  --c-surface: #262626;
  --c-input: #1f1f1f;

  --c-fg: #ece9e1;
  --c-fg-2: #c4c1ba;
  --c-fg-3: #908c85;
  --c-muted: #767368;
  --c-muted-2: #4e4b46;
  --c-line: #2e2c2a;
  --c-line-2: #3d3a37;

  --c-accent: #ece9e1;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.55), 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Логотип в шапке инвертируется на тёмной теме */
.theme-dark .site-header .logo img { filter: invert(1) brightness(0.95); }

/* Полупрозрачные фоны фиксированных элементов на тёмной теме */
.theme-dark .site-header { background: rgba(22, 22, 22, 0.92); }
.theme-dark .hero-floating { background: rgba(38, 38, 38, 0.92); }
.theme-dark .product-fav { background: rgba(38, 38, 38, 0.85); color: var(--c-fg); }
.theme-dark .hsa-prev,
.theme-dark .hsa-next { background: rgba(38, 38, 38, 0.85); color: var(--c-fg); }
.theme-dark .hsa-prev:hover,
.theme-dark .hsa-next:hover { background: rgba(38, 38, 38, 1); }
.theme-dark .hero-slider-dots { background: rgba(38, 38, 38, 0.85); }
.theme-dark .hsd-dot { background: rgba(255, 255, 255, 0.25); }
.theme-dark .hsd-dot.is-active { background: var(--c-fg); }

/* Плавный переход между темами */
body, .site-header, .icon-btn, .review-card, .partner-card, .about-card,
.product-img, .form input, .form textarea, .cat-filter,
.dp-fab__panel, .rev-arrow, .header-phone,
.callout-card, .sertifikat-card, .product-card .product-img {
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

/* Mobile-only callout block — на десктопе/планшете скрыт */
.callout-mobile { display: none; }

html { scroll-behavior: smooth; }

/* ═══════════════ Preloader (тёмный + glossy) ═══════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #2a2a2a 0%, #161616 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s cubic-bezier(0.4, 0, 0.2, 1),
              visibility .65s cubic-bezier(0.4, 0, 0.2, 1);
}
.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-active { overflow: hidden; }
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 0 24px;
  animation: preloader-enter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes preloader-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.preloader-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px 12px;
}
.preloader-logo img {
  width: clamp(180px, 32vw, 260px);
  height: auto;
  filter: invert(1) brightness(1.05);
  opacity: 0.96;
  display: block;
  position: relative;
  z-index: 1;
}
.preloader-sheen {
  position: absolute;
  top: -20%;
  left: -100%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.06) 70%,
    transparent 100%
  );
  filter: blur(2px);
  transform: skewX(-18deg);
  animation: preloader-sheen 2.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes preloader-sheen {
  0%   { left: -100%; }
  60%  { left: 180%; }
  100% { left: 180%; }
}

.preloader-bar {
  position: relative;
  width: clamp(180px, 30vw, 260px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.preloader-bar-glow {
  position: absolute;
  top: 0;
  left: -40%;
  height: 100%;
  width: 40%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.95) 50%,
    transparent 100%
  );
  animation: preloader-bar 1.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes preloader-bar {
  0%   { left: -40%; }
  100% { left: 100%; }
}

.preloader-caption {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* ═══════════════ Reveal animations on scroll ═══════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger — задержка по data-reveal-delay (мс) */
[data-reveal-delay="50"]  { transition-delay: 50ms; }
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="150"] { transition-delay: 150ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="250"] { transition-delay: 250ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="350"] { transition-delay: 350ms; }
[data-reveal-delay="400"] { transition-delay: 400ms; }
[data-reveal-delay="500"] { transition-delay: 500ms; }
[data-reveal-delay="600"] { transition-delay: 600ms; }

/* Stagger children: задержка для каждого следующего ребёнка */
[data-reveal-stagger] > [data-reveal]:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(2) { transition-delay: 70ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(3) { transition-delay: 140ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(4) { transition-delay: 210ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(5) { transition-delay: 280ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(6) { transition-delay: 350ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(7) { transition-delay: 420ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(8) { transition-delay: 490ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(9) { transition-delay: 560ms; }
[data-reveal-stagger] > [data-reveal]:nth-child(n+10) { transition-delay: 630ms; }

@media (prefers-reduced-motion: reduce) {
  .preloader-sheen,
  .preloader-bar-glow,
  .preloader-inner { animation: none !important; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--c-fg);
  background: var(--c-bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv11" 1;
}

a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
a:hover { opacity: .72; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Lucide icons defaults */
[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
}

.container {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════ Buttons ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn [data-lucide] { width: 16px; height: 16px; }
.btn-sm { padding: 11px 18px; font-size: 12px; }
.btn-sm [data-lucide] { width: 14px; height: 14px; }
.btn-lg { padding: 18px 32px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--c-fg);
  color: #fff;
  border-color: var(--c-fg);
}
.btn-primary:hover {
  opacity: 1;
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--c-fg);
  border-color: var(--c-line-2);
}
.btn-outline:hover { opacity: 1; border-color: var(--c-fg); }

.btn-light {
  background: #fff;
  color: var(--c-fg);
  border-color: #fff;
}
.btn-light:hover { opacity: 1; background: #f0f0ed; }

.btn-link {
  padding: 14px 0;
  background: transparent;
  color: var(--c-fg);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-link:hover { opacity: 1; color: var(--c-fg-3); }
.btn-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background .2s ease;
}
.btn-link-icon [data-lucide] { width: 14px; height: 14px; }
.btn-link:hover .btn-link-icon {
  background: var(--c-fg);
  color: #fff;
  border-color: var(--c-fg);
}

/* ═══════════════ Section atoms ═══════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.section-eyebrow-light { color: rgba(255, 255, 255, 0.55); }

.section-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
}
.section-title-light { color: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-fg-3);
  white-space: nowrap;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.link-arrow [data-lucide] { width: 14px; height: 14px; transition: transform .25s ease; }
.link-arrow:hover { opacity: 1; color: var(--c-fg); border-color: var(--c-fg); }
.link-arrow:hover [data-lucide] { transform: translateX(3px); }

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  margin-bottom: 18px;
}
.badge-line [data-lucide] { width: 13px; height: 13px; }

/* ═══════════════ Top bar ═══════════════ */
.top-bar {
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.tb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}
.tb-link [data-lucide] { width: 13px; height: 13px; }
.tb-link:hover { color: #fff; opacity: 1; }

.top-bar-right {
  display: flex;
  gap: 4px;
}
.tb-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.tb-social [data-lucide] { width: 14px; height: 14px; }
.tb-social:hover { background: rgba(255, 255, 255, 0.08); color: #fff; opacity: 1; }

/* ═══════════════ Header ═══════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--c-line);
}
.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 14px;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--c-fg);
  font-weight: 500;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--c-fg);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-fg);
  background: var(--c-fg);
  color: #fff;
  margin-right: 8px;
  white-space: nowrap;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.header-phone [data-lucide] { width: 14px; height: 14px; }
.header-phone:hover {
  opacity: 1;
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(36, 36, 36, 0.5);
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-fg);
  background: transparent;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.icon-btn:hover {
  background: var(--c-bg-alt);
  opacity: 1;
}
.icon-btn-tg {
  border-color: var(--c-line-2);
}

/* ── Hamburger (mobile menu toggle) ── */
.hamburger { display: none; }
.hamburger-icon-close { display: none; }
.hamburger.is-open .hamburger-icon-open { display: none; }
.hamburger.is-open .hamburger-icon-close { display: block; }

/* ── Mobile menu drawer ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg);
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 92px 24px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu-nav a {
  padding: 14px 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--c-fg);
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu-nav a:first-child { border-top: 1px solid var(--c-line); }
.mobile-menu-nav a:hover { opacity: 0.65; }
.mobile-menu-nav a.active {
  color: var(--c-muted);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  margin-top: 24px;
}
.mm-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.mm-cta [data-lucide] { width: 16px; height: 16px; }
.mm-cta-phone {
  background: var(--c-fg);
  color: #fff;
  border: 1px solid var(--c-fg);
}
.mm-cta-phone:hover { opacity: 1; background: #000; }
.mm-cta-tg {
  background: transparent;
  color: var(--c-fg);
  border: 1px solid var(--c-line-2);
}
.mm-cta-tg:hover { opacity: 1; background: #229ED9; color: #fff; border-color: #229ED9; }
.mm-cta-mail {
  background: transparent;
  color: var(--c-fg-3);
  border: 1px solid var(--c-line);
  font-size: 13px;
}
.mm-cta-mail:hover { opacity: 1; color: var(--c-fg); border-color: var(--c-line-2); }
.icon-btn-tg:hover {
  background: #229ED9;
  color: #fff;
  border-color: #229ED9;
}

/* Theme toggle — swap sun/moon icons */
.icon-btn-theme {
  border-color: var(--c-line-2);
}
.theme-icon { display: block; }
.theme-icon-sun { display: none; }
.theme-dark .theme-icon-moon { display: none; }
.theme-dark .theme-icon-sun { display: block; }
/* cart removed */

/* ═══════════════ 1. HERO ═══════════════ */
.hero {
  position: relative;
  padding: 22px 0 22px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* шапка + хиро + 6 преимуществ = 100vh */
  min-height: calc(100vh - 175px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 8px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
  padding: 7px 14px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 999px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #21a35a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(33, 163, 90, 0.18);
}

.hero-title {
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-bottom: 24px;
  color: var(--c-fg);
  max-width: 16ch;
}
.hero-accent {
  color: rgba(10, 10, 10, 0.38);
  font-weight: 300;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-fg-3);
  max-width: 470px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: var(--c-fg);
  line-height: 1;
}
.hero-meta span {
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 480px;
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-bg-alt);
  box-shadow: var(--shadow-lg);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  will-change: opacity;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

/* Ken Burns — плавный зум и панорама на активном слайде */
@keyframes kenburns-a {
  from { transform: scale(1.06) translate3d(0%, 0%, 0); }
  to   { transform: scale(1.20) translate3d(-2.5%, -1.5%, 0); }
}
@keyframes kenburns-b {
  from { transform: scale(1.20) translate3d(-2%, 0%, 0); }
  to   { transform: scale(1.06) translate3d(1.5%, -2.5%, 0); }
}
@keyframes kenburns-c {
  from { transform: scale(1.08) translate3d(0%, -1%, 0); }
  to   { transform: scale(1.22) translate3d(2.5%, 1.5%, 0); }
}
.hero-slide.is-active:nth-child(1) img { animation: kenburns-a 8s ease-out forwards; }
.hero-slide.is-active:nth-child(2) img { animation: kenburns-b 8s ease-out forwards; }
.hero-slide.is-active:nth-child(3) img { animation: kenburns-c 8s ease-out forwards; }

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-slider-dots {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.hsd-dot {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.2);
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
  padding: 0;
  border: none;
}
.hsd-dot.is-active {
  background: var(--c-fg);
  width: 28px;
}
.hsd-dot:hover:not(.is-active) {
  background: rgba(10, 10, 10, 0.4);
}

.hero-slider-arrows {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.hsa-prev,
.hsa-next {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  transition: opacity .25s ease, background .2s ease, transform .15s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}
.hsa-prev [data-lucide],
.hsa-next [data-lucide] { width: 16px; height: 16px; }
.hero-visual:hover .hsa-prev,
.hero-visual:hover .hsa-next { opacity: 1; }
.hsa-prev:hover, .hsa-next:hover { background: #fff; transform: scale(1.05); }

/* Rating badge (top-right of image) */
.hero-rating {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-radius: 999px;
  padding: 9px 14px 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}
.hr-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5a623;
}
.hr-stars [data-lucide] {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: currentColor;
}
.hero-rating strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-fg);
  line-height: 1;
}

/* Catalog overlay (glassmorphism — стекло поверх фото) */
.hero-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.10));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px -10px rgba(0, 0, 0, 0.4);
}
.hero-overlay-text .badge-line {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
}
.hero-overlay-text h3 {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
  max-width: 380px;
}
.hero-overlay-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hero-overlay-actions .btn {
  padding: 11px 16px;
  font-size: 12px;
}
.hero-overlay-actions .btn [data-lucide] { width: 13px; height: 13px; }
.hero-overlay-actions .btn-primary {
  background: #ffffff;
  color: var(--c-fg);
  border-color: #ffffff;
}
.hero-overlay-actions .btn-primary:hover {
  background: var(--c-fg);
  color: #ffffff;
  border-color: var(--c-fg);
}
.hero-overlay-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-overlay-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

/* ═══════════════ 3. PROMO — Акции (компактные карточки) ═══════════════ */
.promo {
  padding: 56px 0 72px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.promo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.promo-light {
  background: var(--c-bg-soft);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  min-height: 280px;
  padding: 16px;
  gap: 18px;
}
.promo-light-image {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-light-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .6s ease;
}
.promo-light:hover .promo-light-image img { transform: scale(1.03); }

.promo-gift-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--c-fab);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(63, 139, 94, 0.25);
}
.promo-gift-chip [data-lucide] { width: 12px; height: 12px; }

.promo-light-body {
  padding: 14px 18px 14px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.promo-light h3 {
  font-size: 21px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--c-fg);
  max-width: 280px;
}
.promo-price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.ppl-old {
  font-size: 16px;
  color: var(--c-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
}
.ppl-new {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-fab);
}
.promo-light .btn { align-self: flex-start; margin-top: 0; }

/* DARK promo */
.promo-dark {
  background: var(--c-bg-dark);
  color: #f0efe9;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  gap: 14px;
}
/* Декоративный полукруг на фоне в правом верхнем углу */
.promo-dark::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}
.promo-dark-truck {
  position: absolute !important;
  right: 28px;
  top: 28px;
  width: 70px !important;
  height: 70px !important;
  color: #ffffff;
  opacity: 0.22;
  stroke-width: 1.5 !important;
  pointer-events: none;
  z-index: 1;
}
.promo-dark-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promo-dark-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
}
.promo-dark-eyebrow [data-lucide] {
  width: 12px;
  height: 12px;
  color: var(--c-fab);
}
.promo-dark h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: #fff;
  max-width: 380px;
}
.promo-dark p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 380px;
}
.promo-dark .btn { width: max-content; margin-top: 4px; }

/* ═══════════════ ADVANTAGES — компактная чёрная полоса ═══════════════ */
.advantages {
  background: var(--c-bg-dark);
  color: #f0efe9;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.adv-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}
.adv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  min-width: 0;
  position: relative;
}
.adv-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}
.adv-icon {
  width: 20px !important;
  height: 20px !important;
  color: #f0efe9;
  flex-shrink: 0;
  stroke-width: 1.5 !important;
  opacity: 0.85;
}
.adv-item span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #f0efe9;
  letter-spacing: -0.005em;
}

/* ═══════════════ 5. PRODUCTION + СЕРТИФИКАТ ═══════════════ */
.production {
  padding: var(--pad-section) 0;
}
.production-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.production-text-col h2 { margin-bottom: 22px; }
.production-text {
  font-size: 15px;
  color: var(--c-fg-3);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 520px;
}

/* ═══════════════ Кастомный видеоплеер (.vp) ═══════════════ */
.production-video-col {
  width: 100%;
}
.vp {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.vp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Постер-оверлей с большой play-кнопкой (виден пока не запущено) */
.vp-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  transition: opacity .4s ease, visibility .4s ease;
  z-index: 2;
  pointer-events: none;
}
.vp.is-playing .vp-poster {
  opacity: 0;
  visibility: hidden;
}
.vp-bigplay {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
  transition: transform .2s ease, background .2s ease;
}
.vp-bigplay:hover { transform: scale(1.08); background: #fff; }
.vp-bigplay svg { margin-left: 3px; } /* визуально центрируем треугольник */
.vp-poster-label {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Нижняя панель управления */
.vp-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.vp.is-playing .vp-controls,
.vp:hover .vp-controls,
.vp:focus-within .vp-controls {
  opacity: 1;
  pointer-events: auto;
}

.vp-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background .2s ease, transform .15s ease;
}
.vp-btn:hover { background: rgba(255, 255, 255, 0.25); transform: scale(1.05); }
.vp-btn:active { transform: scale(0.95); }

/* Свитч иконок play / pause — повышенная специфичность */
.vp-btn .vp-icon-pause { display: none; }
.vp.is-playing .vp-btn .vp-icon-play { display: none; }
.vp.is-playing .vp-btn .vp-icon-pause { display: block; }

/* Свитч иконок vol / mute */
.vp-btn .vp-icon-muted { display: none; }
.vp.is-muted .vp-btn .vp-icon-vol { display: none; }
.vp.is-muted .vp-btn .vp-icon-muted { display: block; }

.vp-time {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.vp-time-sep { opacity: 0.5; }

/* Прогресс-бар */
.vp-progress {
  flex: 1;
  height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.vp-progress-track {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: height .15s ease;
}
.vp-progress:hover .vp-progress-track { height: 5px; }
.vp-progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
  transition: width .1s linear;
}
.vp-progress-fill::after {
  /* "Бегунок" */
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity .15s ease;
}
.vp-progress:hover .vp-progress-fill::after { opacity: 1; }

/* Сертификат — баннер на всю ширину, тёмный фон */
.sertifikat-banner {
  background: var(--c-bg-dark);
  color: #f0efe9;
  border-radius: var(--r-xl);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sertifikat-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.sb-image {
  background: var(--c-surface);
  border-radius: var(--r-sm);
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.sb-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
.sb-content {
  position: relative;
  z-index: 1;
}
.sb-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  margin: 6px 0 8px;
  line-height: 1.15;
}
.sb-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  max-width: 420px;
}
.sb-action {
  position: relative;
  z-index: 1;
}

/* ═══════════════ 6. CATALOG — Товары ═══════════════ */
.catalog {
  padding: var(--pad-section) 0;
  background: var(--c-bg-soft);
}

/* Фильтры-категории под заголовком */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -16px 0 36px;
  padding-bottom: 4px;
}
.cat-filter {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--c-line-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-fg);
  background: var(--c-surface);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  font-family: inherit;
}
.cat-filter:hover {
  background: var(--c-fg);
  color: #fff;
  border-color: var(--c-fg);
  opacity: 1;
}
.cat-filter.is-active {
  background: var(--c-fg);
  color: #fff;
  border-color: var(--c-fg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.product-img {
  position: relative;
  background: var(--c-surface);
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover .product-img {
  border-color: var(--c-line-2);
  box-shadow: var(--shadow-md);
}
.product-card:hover { opacity: 1; }

.product-img img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  transition: opacity .3s ease, transform .5s ease;
}
.product-img .img-hover { opacity: 0; }
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .product-img img { transform: scale(1.03); }

.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-fg);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--c-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.product-fav [data-lucide] { width: 16px; height: 16px; }
.product-card:hover .product-fav {
  opacity: 1;
  transform: translateY(0);
}
.product-fav:hover { background: var(--c-fg); color: #fff; }

.product-info h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-fg);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  min-height: 2.8em;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-new {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-fg);
}
.price-old {
  font-size: 12px;
  color: var(--c-muted-2);
  text-decoration: line-through;
}

.add-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-line-2);
  color: var(--c-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.add-cart [data-lucide] { width: 14px; height: 14px; }
.add-cart:hover {
  background: var(--c-fg);
  color: #fff;
  border-color: var(--c-fg);
}

.catalog-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* ═══════════════ 7. ABOUT — фото + текст + 3 пункта ═══════════════ */
.about {
  padding: var(--pad-section) 0;
}
.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Фото слева с бейджами-плавающими */
.about-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-bg-alt);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  z-index: 2;
}
.about-badge strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-fg);
  line-height: 1;
}
.about-badge span {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  text-transform: lowercase;
}
.about-badge-1 {
  top: 24px;
  left: 24px;
}
.about-badge-2 {
  bottom: 24px;
  right: 24px;
}

/* Контент справа */
.about-content { padding: 8px 0; }
.about-content h2 { margin-bottom: 18px; }
.about-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-fg-3);
  margin-bottom: 36px;
  max-width: 520px;
}

.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.about-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--c-line);
  align-items: start;
}
.about-point:last-child {
  border-bottom: 1px solid var(--c-line);
}
.ap-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.02em;
  padding-top: 1px;
}
.ap-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.ap-icon {
  width: 18px !important;
  height: 18px !important;
  color: var(--c-fg);
  stroke-width: 1.6 !important;
  flex-shrink: 0;
}
.ap-text h3 {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--c-fg);
}
.ap-text p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-fg-3);
  max-width: 460px;
}

/* ═══════════════ 8. PARTNERS ═══════════════ */
.partners {
  padding: var(--pad-section) 0;
  background: var(--c-bg-soft);
}

.partners-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.partners-head-text { display: flex; flex-direction: column; }
.partners-stats {
  display: flex;
  gap: 36px;
}
.ps-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ps-item strong {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--c-fg);
}
.ps-item span {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 220px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.partner-card:hover {
  border-color: var(--c-fg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.partner-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
  color: var(--c-muted-2);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.partner-logo {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 40px; /* чтобы лого не наезжало на цифру */
}
.partner-logo img {
  max-height: 58px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.partner-logo img.is-white {
  filter: invert(1);
}

.partner-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.partner-area {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-fg);
  line-height: 1.1;
}
.partner-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: var(--c-fg-3);
  line-height: 1.5;
}
.partner-address [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--c-muted);
  margin-top: 3px;
  flex-shrink: 0;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-muted);
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
  transition: color .2s ease;
}
.partner-link [data-lucide] {
  width: 13px;
  height: 13px;
  transition: transform .2s ease;
}
.partner-card:hover .partner-link {
  color: var(--c-fg);
}
.partner-card:hover .partner-link [data-lucide] {
  transform: translate(2px, -2px);
}

/* ═══════════════ 9. REVIEWS — слайдер отзывов ═══════════════ */
.reviews {
  padding: var(--pad-section) 0;
}

.reviews-slider {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* scroll-padding смещает точку snap-выравнивания на позицию первой карточки,
     иначе snap'ит на левый край viewport и спейсер пропадает */
  scroll-padding-left: 32px;
  /* Трек расширяется до краёв viewport */
  margin: 0 calc(50% - 50vw);
  padding: 12px 0 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { display: none; }

/* Спейсеры — flex-children, пробивают первую карточку до края контейнера.
   Ширина = расстояние от края viewport до края контейнера − gap (18px). */
.reviews-track::before,
.reviews-track::after {
  content: "";
  flex: 0 0 14px;          /* default (узкий viewport): 32px container-padding − 18px gap */
  align-self: stretch;
}

.review-card {
  /* Default: 3 карточки в content-box контейнера (32+32 padding, 18+18 gap) */
  flex: 0 0 calc((100vw - 64px - 36px) / 3);
  scroll-snap-align: start;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

/* Когда viewport шире max-container — карточки фикс под max, спейсер растёт */
@media (min-width: 1320px) {
  .reviews-track {
    scroll-padding-left: calc(50vw - var(--w-max) / 2 + 32px);
  }
  .reviews-track::before,
  .reviews-track::after {
    flex-basis: calc(50vw - var(--w-max) / 2 + 14px); /* 14 = 32 - 18 */
  }
  .review-card {
    flex-basis: calc((var(--w-max) - 64px - 36px) / 3);
  }
}
.review-card:hover {
  border-color: var(--c-line-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rc-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
}
.rc-stars [data-lucide] {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1;
}

.rc-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-fg-2);
  flex: 1;
  /* Огранчить высоту, чтобы карточки были одинаковыми */
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}
.rc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ava, #888);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.rc-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.rc-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-fg);
  letter-spacing: -0.005em;
}
.rc-date {
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}
.rc-source {
  font-size: 10px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted-2);
  padding: 4px 8px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
}

/* Стрелки навигации (в section-head) */
.reviews-arrows {
  display: flex;
  gap: 8px;
}
.rev-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-line-2);
  color: var(--c-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, opacity .2s ease, color .2s ease, border-color .2s ease;
  padding: 0;
  flex-shrink: 0;
}
.rev-arrow:hover {
  background: var(--c-fg);
  color: #fff;
  border-color: var(--c-fg);
  transform: translateY(-1px);
}
.rev-arrow:active { transform: translateY(0); }
.rev-arrow:disabled {
  opacity: 0.30;
  cursor: default;
  pointer-events: none;
  transform: none;
}
.rev-arrow [data-lucide] { width: 18px; height: 18px; }

/* ═══════════════ 10. BLOG ═══════════════ */
.blog {
  padding: var(--pad-section) 0;
  background: var(--c-bg-soft);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-card:hover { opacity: 1; }
.blog-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #d8d6d0;
  border-radius: var(--r-md);
  transition: transform .5s ease;
  overflow: hidden;
}
.blog-card:hover .blog-image { transform: scale(1.01); }
.blog-tag {
  display: inline-block;
  width: max-content;
  font-size: 10px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted);
}
.blog-card h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--c-fg);
}

/* ═══════════════ 11. CONTACTS + ФОРМА ═══════════════ */
.contacts {
  padding: var(--pad-section) 0;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contacts-info h2,
.contacts-form h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 24px;
}
.contacts-form p {
  font-size: 15px;
  color: var(--c-fg-3);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}

.contacts-list {
  list-style: none;
  margin-bottom: 32px;
}
.contacts-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 15px;
  align-items: center;
}
.contacts-list li:first-child { border-top: 1px solid var(--c-line); }
.ci-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--c-muted);
}
.ci-label [data-lucide] { width: 14px; height: 14px; }

.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.map-wrap iframe { display: block; }

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  padding: 36px;
  border-radius: var(--r-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label > span {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-muted);
}
.form input,
.form textarea {
  border: 1px solid var(--c-line-2);
  background: var(--c-input);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--c-fg);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus,
.form textarea:focus {
  border-color: var(--c-fg);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.04);
}
.form textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 11px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.5;
}
.form-note a { text-decoration: underline; }

/* ═══════════════ Footer ═══════════════ */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 88px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  font-weight: 500;
}
.footer-col a, .footer-col .footer-addr {
  font-size: 14px;
  color: #e8e7e1;
  line-height: 1.55;
}
.footer-col a:hover { opacity: .65; }

.footer-col-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}
.footer-logo {
  height: 68px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) brightness(2);
  margin-bottom: 4px;
  display: block;
}

.footer-socials {
  margin-top: 18px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #f0efe9;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social [data-lucide] { width: 16px; height: 16px; }
.footer-social:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.fb-dot {
  opacity: 0.55;
  padding: 0 2px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.footer-bottom-links a:hover {
  color: #fff;
  opacity: 1;
}

/* ── Po Plan credit ── */
.po-plan-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* font-family НЕ задаём — наследуется от сайта (Inter) */
  font-size: 12px;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease;
}
.po-plan-credit:hover { opacity: 1; }

.po-plan-credit__logo {
  height: 11px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.po-plan-credit__text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.po-plan-credit__prefix {
  color: inherit;
}

.po-plan-credit__brand {
  color: #ffffff;
  text-decoration: underline dashed;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}

.po-plan-credit:hover .po-plan-credit__brand {
  filter: brightness(1.15);
}

/* ═══════════════ Floating Contact FAB ═══════════════ */
.dp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  font-family: var(--font-sans);
  color: var(--c-fg);
}
@media (max-width: 600px) {
  .dp-fab { right: 14px; bottom: 14px; }
}

/* Toggle button (the FAB itself) — зелёный */
.dp-fab__toggle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--c-fab);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 36px rgba(63, 139, 94, 0.42),
    0 4px 12px rgba(63, 139, 94, 0.30);
  transition: transform .18s ease, box-shadow .22s ease, background .25s ease;
}
.dp-fab__toggle:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--c-fab-dark);
  box-shadow:
    0 18px 42px rgba(63, 139, 94, 0.50),
    0 6px 18px rgba(63, 139, 94, 0.36);
}
.dp-fab__toggle:active { transform: scale(0.97); }

/* Phone vs close icon swap based on .is-open */
.dp-fab__icon-close { display: none; }
.dp-fab.is-open .dp-fab__icon-phone { display: none; }
.dp-fab.is-open .dp-fab__icon-close { display: block; }
.dp-fab.is-open .dp-fab__toggle {
  background: linear-gradient(135deg, #4a4a4d 0%, #2a2a2c 100%);
  box-shadow:
    0 14px 36px rgba(36, 36, 36, 0.32),
    0 4px 12px rgba(36, 36, 36, 0.25);
}

/* Pulse halo */
.dp-fab__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--c-fab-glow);
  pointer-events: none;
  animation: dp-fab-pulse 2.4s ease-out infinite;
}
.dp-fab.is-open .dp-fab__pulse { display: none; }
@keyframes dp-fab-pulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.4);  opacity: 0; }
}

/* Tooltip "Есть вопрос?" */
.dp-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow:
    0 12px 30px rgba(36, 36, 36, 0.12),
    0 4px 12px rgba(36, 36, 36, 0.06);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.dp-fab__tooltip[hidden] { display: none !important; }
.dp-fab__tooltip.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.dp-fab__tooltip::after {
  /* стрелка-указатель в сторону FAB */
  content: "";
  position: absolute;
  right: -5px;
  bottom: 22px;
  width: 10px;
  height: 10px;
  background: var(--c-surface);
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transform: rotate(-45deg);
}
.dp-fab__tooltip-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-fg);
  letter-spacing: -0.005em;
}
.dp-fab__tooltip-close {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.dp-fab__tooltip-close:hover {
  background: var(--c-fg);
  color: #fff;
}

/* Panel (the popup) */
.dp-fab__panel {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 28px);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(10, 10, 10, 0.18),
    0 6px 20px rgba(10, 10, 10, 0.10);
  overflow: hidden;
  transform-origin: bottom right;
  animation: dp-fab-pop .22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes dp-fab-pop {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.dp-fab__panel[hidden] { display: none; }

.dp-fab__head {
  padding: 18px 20px 14px;
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg-alt) 100%);
  border-bottom: 1px solid var(--c-line);
}
.dp-fab__head-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-fg);
  letter-spacing: -0.012em;
}
.dp-fab__head-sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--c-muted);
}

/* Channel icons row */
.dp-fab__channels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 14px 12px 12px;
}
.dp-fab__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 2px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--c-fg);
  transition: background .14s ease, transform .1s ease;
  min-width: 0;
}
.dp-fab__channel:hover {
  background: var(--c-bg-soft);
  transform: translateY(-1px);
  opacity: 1;
}
.dp-fab__channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ch-color, var(--c-fg));
  color: #fff;
  box-shadow: 0 4px 10px rgba(10, 10, 10, 0.14);
  flex-shrink: 0;
}
.dp-fab__channel-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.dp-fab__channel-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Divider */
.dp-fab__divider {
  position: relative;
  text-align: center;
  margin: 0 18px 12px;
}
.dp-fab__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
}
.dp-fab__divider span {
  position: relative;
  padding: 0 10px;
  background: var(--c-surface);
  font-size: 10px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  font-weight: 500;
}

/* Form */
.dp-fab__form {
  padding: 0 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.dp-fab__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dp-fab__field-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}
.dp-fab__req { color: var(--c-sale); }
.dp-fab__field input,
.dp-fab__field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--c-line-2);
  border-radius: 8px;
  background: var(--c-input);
  color: var(--c-fg);
  font: 14px/1.4 var(--font-sans);
  transition: border-color .14s ease, box-shadow .14s ease;
  box-sizing: border-box;
}
.dp-fab__field input::placeholder,
.dp-fab__field textarea::placeholder {
  color: var(--c-muted-2);
}
.dp-fab__field input:focus,
.dp-fab__field textarea:focus {
  outline: none;
  border-color: var(--c-fg);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}
.dp-fab__field textarea { resize: vertical; min-height: 56px; }

.dp-fab__submit {
  margin-top: 4px;
  padding: 12px 16px;
  border: 1px solid var(--c-fg);
  border-radius: 999px;
  background: var(--c-fg);
  color: #fff;
  font: 500 13px/1.2 var(--font-sans);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .14s ease, transform .1s ease, opacity .14s ease;
}
.dp-fab__submit:hover { background: #000; }
.dp-fab__submit:active { transform: scale(0.98); }
.dp-fab__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.dp-fab__legal {
  margin: 6px 0 0;
  font-size: 10px;
  color: var(--c-muted);
  line-height: 1.45;
  text-align: center;
}
.dp-fab__legal a {
  color: var(--c-fg-3);
  text-decoration: underline;
  text-decoration-color: var(--c-line-2);
  text-underline-offset: 2px;
}
.dp-fab__legal a:hover { color: var(--c-fg); }

/* Success / error states */
.dp-fab__success {
  text-align: center;
  padding: 18px 12px 12px;
  animation: dp-fab-pop .22s ease;
}
.dp-fab__success-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--c-fg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(10, 10, 10, 0.25);
}
.dp-fab__success-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-fg);
}
.dp-fab__success-text {
  margin-top: 4px;
  font-size: 12px;
  color: var(--c-muted);
}

.dp-fab__error {
  margin-top: 6px;
  padding: 8px 12px;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 420px) {
  .dp-fab__panel {
    width: calc(100vw - 28px);
    right: 0;
  }
  .dp-fab__channels { padding: 12px 10px 10px; gap: 2px; }
  .dp-fab__channel { padding: 8px 0; }
  .dp-fab__channel-icon { width: 36px; height: 36px; }
}

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 1180px) {
  .header-phone span { display: none; }
  .header-phone { padding: 10px 12px; }
  .main-nav { gap: 18px; font-size: 13px; }
  .header-inner { grid-template-columns: 160px 1fr auto; gap: 16px; }
}

@media (max-width: 1024px) {
  :root { --pad-section: 80px; }

  .header-inner { grid-template-columns: 140px 1fr auto; }
  .main-nav { display: none; }

  /* На планшете/мобиле бургер показан, остальные иконки скрыты — все действия в drawer'е */
  .hamburger { display: flex; }
  .header-tools > .icon-btn:not(.hamburger) { display: none; }

  .hero { min-height: auto; padding: 40px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero-visual { max-width: 720px; aspect-ratio: 4 / 3.2; min-height: 0; }
  .hero-meta { grid-template-columns: repeat(4, 1fr); gap: 18px; }

  .promo-grid { grid-template-columns: 1fr; }
  .promo-light { grid-template-columns: 1fr 1fr; }

  .adv-row { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .adv-item:nth-child(3n)::after { display: none; }
  .production-grid { grid-template-columns: 1fr; gap: 36px; }
  .sertifikat-banner { grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 28px; }
  .sb-action { grid-column: 1 / -1; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 580px; }
  .review-card { flex-basis: calc((100vw - 64px - 18px) / 2); }
  .partners-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .partners-stats { gap: 24px; flex-wrap: wrap; }
  .partners-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  :root { --pad-section: 60px; }
  .container { padding: 0 20px; }

  /* ─── Header ─── */
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo img { height: 34px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-tools { gap: 4px; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn [data-lucide] { width: 16px; height: 16px; }
  .theme-icon { width: 16px !important; height: 16px !important; }

  /* ─── Hero ─── */
  .hero { padding: 24px 0 32px; min-height: 0; }
  .hero-inner { gap: 24px; }
  /* На мобиле изображение сверху, текст под ним */
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-eyebrow {
    font-size: 9px;
    padding: 4px 10px;
    gap: 6px;
    margin-bottom: 14px;
    letter-spacing: 0.12em;
  }
  .hero-title { font-size: 32px; margin-bottom: 16px; }
  .hero-lead { margin-bottom: 22px; font-size: 15px; }
  .hero-actions {
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 12px;
    font-size: 12px;
  }
  .hero-actions .btn [data-lucide] { width: 14px; height: 14px; }
  .hero-visual { aspect-ratio: 4 / 3.2; }
  .hero-rating { top: 14px; right: 14px; padding: 7px 12px; }
  /* На мобиле оверлей "получи каталог" скрыт — он выводится отдельным блоком ниже */
  .hero-overlay { display: none; }

  /* Mobile-only callout block (виден только ≤720px) */
  .callout-mobile {
    display: block;
    background: var(--c-bg);
    padding: 0 0 32px;
  }
  .cm-card {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cm-card .badge-line {
    align-self: flex-start;
    margin: 0;
  }
  .cm-card h3 {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.012em;
    color: var(--c-fg);
    margin: 0;
  }
  .callout-mobile-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
  }
  .callout-mobile-actions .btn {
    flex: 1 1 0;
    padding: 11px 12px;
    font-size: 12px;
    min-width: 0;
  }
  .callout-mobile-actions .btn [data-lucide] { width: 14px; height: 14px; }

  /* ─── Section heads ─── */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  /* ─── Callout ─── */
  .callout-card { padding: 24px; gap: 18px; }
  .callout-actions { width: 100%; }
  .callout-actions .btn { flex: 1; }

  /* ─── Promo cards ─── */
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .promo-light {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px;
    gap: 12px;
  }
  .promo-light-image { min-height: 200px; aspect-ratio: 16 / 11; }
  .promo-light-body { padding: 6px 12px 12px; gap: 14px; }
  .promo-light h3 { font-size: 18px; }
  .promo-price-line .ppl-new { font-size: 24px; }
  .promo-dark { padding: 24px; min-height: 240px; }
  .promo-dark::before { right: -50px; top: -50px; width: 180px; height: 180px; }
  .promo-dark-truck { right: 18px; top: 18px; width: 54px !important; height: 54px !important; }
  .promo-dark h3 { font-size: 21px; }

  /* ─── Advantages bar ─── */
  .advantages { padding: 14px 0; }
  .adv-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .adv-item { padding: 6px 8px; }
  .adv-item span { font-size: 12px; }
  .adv-item:not(:last-child)::after { display: none; }

  /* ─── Production / Video ─── */
  .video-wrap, .vp { aspect-ratio: 16 / 11; }
  .vp-controls { padding: 10px 12px; gap: 8px; }
  .vp-bigplay { width: 64px; height: 64px; }
  .vp-time { display: none; }

  /* ─── Sertifikat ─── */
  .sertifikat-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    text-align: left;
  }
  .sb-image { max-width: 110px; }
  .sb-action { width: 100%; }
  .sb-action .btn { width: 100%; }

  /* ─── Catalog ─── */
  .catalog-filters { gap: 6px; margin: -4px 0 22px; }
  .cat-filter { padding: 8px 14px; font-size: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .product-info h3 { font-size: 13px; min-height: 2.6em; margin-bottom: 8px; }
  .product-bottom { gap: 8px; }
  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
  }
  .price-old { font-size: 11px; }
  .price-new { font-size: 13px; }
  .add-cart { width: 32px; height: 32px; flex-shrink: 0; }
  .catalog-cta .btn { width: 100%; }

  /* ─── About ─── */
  .about-badge { padding: 9px 12px; gap: 1px; }
  .about-badge strong { font-size: 15px; }
  .about-badge span { font-size: 10px; }
  .about-badge-1 { top: 14px; left: 14px; }
  .about-badge-2 { bottom: 14px; right: 14px; }
  .about-lead { margin-bottom: 22px; font-size: 15px; }
  .about-point { grid-template-columns: 28px 1fr; gap: 10px; padding: 16px 0; }
  .ap-text h3 { font-size: 16px; }
  .ap-num { font-size: 12px; }

  /* ─── Partners ─── */
  .partners-grid { grid-template-columns: 1fr; }
  .partners-stats { gap: 18px; }
  .ps-item strong { font-size: 20px; }

  /* ─── Reviews ─── */
  .reviews-track {
    padding: 12px 0 24px;
    scroll-padding-left: 20px;
  }
  .reviews-track::before,
  .reviews-track::after { flex-basis: 2px; } /* 20px container padding − 18px gap = 2px */
  .review-card { flex-basis: calc(100vw - 40px - 18px); padding: 22px; }
  .reviews-arrows { width: 100%; justify-content: flex-end; }

  /* ─── Blog ─── */
  .blog-grid { grid-template-columns: 1fr; }

  /* ─── Contacts/Forms ─── */
  .contacts-list li { grid-template-columns: 100px 1fr; padding: 14px 0; }
  .form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }

  /* ─── Footer ─── */
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-logo { height: 56px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-legal { text-align: left; }
  .footer-bottom-links { gap: 14px; flex-wrap: wrap; }
  .footer-bottom-links a { font-size: 13px; }
}
