/* ============================================================
   Флаубокс — лендинг v2
   Палитра и типографика сняты с боевого fwbox.ru
   ============================================================ */
:root {
  --bg: #FBF6F2;
  --bg-accent: #F4ECE6;
  --dark: #1C0714;
  --ink: #24121B;
  --text: #5C4A52;
  --muted: #8A7680;
  --d-muted: #C6A9B8;
  --d-text: #FBEFEA;
  --accent: #FF7663;
  --accent-strong: #F45A45;
  --accent-text: #C0361C; /* коралл для МЕЛКОГО текста: даёт ≥4.5:1 на светлых фонах (AA) */
  --accent-soft: #FFE6E0;
  --border: #EADFD6;
  --border-2: #E0D1C5;
  --card: #FFFFFF;
  --r: 24px;
  --r-lg: 32px;
  --shadow-card: 0 1px 2px rgba(40,15,28,.06), 0 2px 6px rgba(40,15,28,.05);
  --shadow-pop: 0 12px 40px rgba(40,15,28,.14), 0 30px 70px rgba(40,15,28,.12);
  --shadow-btn: 0 10px 30px rgba(244,90,69,.3);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Onest', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }

/* ---------- Типографика ---------- */
h1, h2, h3 { font-weight: 700; line-height: 1.08; letter-spacing: -.03em; text-wrap: balance; }
.display { font-size: clamp(44px, 5.4vw, 72px); font-weight: 800; }
h2 { font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -.02em; }
h3 { font-size: 20px; letter-spacing: -.01em; line-height: 1.25; }
.lead { color: var(--text); font-size: clamp(16px, 1.3vw, 19px); max-width: 60ch; text-wrap: pretty; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-text); font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 16px; letter-spacing: -.01em;
  padding: 15px 28px; border-radius: 999px;
  box-shadow: var(--shadow-btn);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
}
.btn:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(244,90,69,.4); }
.btn:active { transform: translateY(0) scale(.98); }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.35) 50%, transparent 62%);
  transform: translateX(-110%);
}
.btn:hover::after { transition: transform .7s var(--ease); transform: translateX(110%); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-2); box-shadow: none; }
.btn--ghost:hover { background: #fff; border-color: var(--accent); color: var(--accent-text); box-shadow: 0 8px 24px rgba(40,15,28,.08); }
.btn--ghost::after { display: none; }
.btn--block { width: 100%; }

/* ---------- Прогресс-бар ---------- */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  z-index: 120; border-radius: 0 3px 3px 0;
}

/* ---------- Навигация ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(251,246,242,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(40,15,28,.05);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px; letter-spacing: -.02em; }
.brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
  transition: transform .4s var(--ease);
}
.brand:hover .dot { transform: scale(1.25); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text);
  padding: 8px 14px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,118,99,.1); }
.nav-cta { padding: 11px 22px; font-size: 15px; }
.nav-burger { display: none; width: 44px; height: 44px; position: relative; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-burger span { top: 50%; }
.nav-burger span::before { top: -7px; }
.nav-burger span::after { top: 7px; }
body.drawer-open .nav-burger span { background: transparent; }
body.drawer-open .nav-burger span::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
body.drawer-open .nav-burger span::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background: rgba(28,7,20,.4); opacity: 0; transition: opacity .3s;
}
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 85vw);
  background: var(--bg); padding: 96px 28px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.drawer-panel a { padding: 12px 14px; border-radius: 14px; font-weight: 500; }
.drawer-panel a:hover { background: var(--accent-soft); }
.drawer-panel .btn { margin-top: auto; }
body.drawer-open .drawer { pointer-events: auto; opacity: 1; }
body.drawer-open .drawer-panel { transform: translateX(0); }

/* ---------- Секции ---------- */
.sec { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.tone-light { background: var(--bg); }
.tone-accent { background: var(--bg-accent); }
.tone-dark { background: var(--dark); color: var(--d-text); }
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); display: grid; gap: 18px; justify-items: start; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 64px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg .orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
}
.hero-bg .orb.o1 { width: 560px; height: 560px; right: -140px; top: -160px; background: var(--accent-soft); opacity: .9; }
.hero-bg .orb.o2 { width: 420px; height: 420px; left: -180px; bottom: -120px; background: #F8E3D6; }
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero-copy { display: grid; gap: 26px; justify-items: start; }
.display .accent-word { color: var(--accent-strong); position: relative; white-space: nowrap; }
.display .accent-word svg {
  position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .3em;
  overflow: visible;
}
.display .accent-word svg path {
  fill: none; stroke: var(--accent); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: draw-line 1s var(--ease) .9s forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; max-width: 540px; }
.hero-points li { position: relative; padding-left: 30px; font-size: 16px; line-height: 1.5; color: var(--ink); }
.hero-points li::before { content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px; border-radius: 50%; background: var(--accent); }
.hero-points li::after { content: ""; position: absolute; left: 6.5px; top: 8px; width: 7px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 10px; flex-wrap: wrap; }
.hero-trust .t { display: grid; gap: 2px; }
.hero-trust .tv { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.hero-trust .tl { font-size: 13.5px; color: var(--muted); max-width: 150px; line-height: 1.35; }
.hero-trust .div { width: 1px; height: 40px; background: var(--border-2); }

.hero-media { position: relative; }
.hero-figure {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pop);
  aspect-ratio: 4 / 4.7;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s var(--ease), opacity .4s; }
.hero-figure:hover img { transform: scale(1.05); }
.hero-figure video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: none;
}
.hero-figure.playing video { display: block; }
.hero-figure.playing #heroPoster { opacity: 0; pointer-events: none; }
/* В полноэкранном режиме показываем видео целиком (object-fit:cover из бокса
   иначе обрезает/растягивает портретный кадр на весь экран) */
video:-webkit-full-screen { object-fit: contain; background: #000; }
video:fullscreen { object-fit: contain; background: #000; }
.hero-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--accent-strong);
  display: grid; place-items: center;
  box-shadow: 0 14px 40px rgba(40,15,28,.25);
  transition: transform .35s var(--ease), background .25s;
}
.hero-play::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  animation: play-pulse 2.2s var(--ease) infinite;
}
@keyframes play-pulse {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}
.hero-play:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.hero-play svg { width: 30px; height: 30px; margin-left: 4px; }
.hero-figure.playing .hero-play { display: none; }
.hero-float {
  position: absolute; z-index: 3;
  transition: opacity .55s var(--ease), visibility .55s, transform .55s var(--ease);
  will-change: transform, opacity;
}
.hero-float .hf-in {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 12px 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(40,15,28,.12);
  animation: bob 5.5s ease-in-out infinite;
}
/* при старте видео плашки плавно «улетают» к краям; покачивание (bob) живёт на .hf-in и не прерывается — без рывка */
.hero-media.video-on .hero-float { opacity: 0; visibility: hidden; pointer-events: none; }
.hero-media.video-on .hero-float.f1 { transform: translate(-22px, -16px) scale(.86); }
.hero-media.video-on .hero-float.f2 { transform: translate(22px, 16px) scale(.86); }
.hero-float .ic {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-strong);
}
.hero-float .ic svg { width: 16px; height: 16px; fill: currentColor; }
.hero-float.f1 { top: 9%; left: -34px; }
.hero-float.f2 { bottom: 13%; right: -22px; }
.hero-float.f2 .hf-in { animation-delay: -2.6s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-butterfly {
  position: absolute; width: 84px; top: 116px; right: 6%; z-index: 4;
  animation: bob 7s ease-in-out -1s infinite;
  filter: drop-shadow(0 10px 18px rgba(40,15,28,.15));
  pointer-events: none;
  display: flex; perspective: 240px;
}
.hero-butterfly .wing { width: 50%; overflow: hidden; backface-visibility: hidden; }
.hero-butterfly .wing img { width: 200%; max-width: none; display: block; }
.hero-butterfly .wing.wr img { margin-left: -100%; }
.hero-butterfly .wing.wl { transform-origin: 100% 50%; animation: flap-l 1.5s ease-in-out infinite; }
.hero-butterfly .wing.wr { transform-origin: 0% 50%; animation: flap-r 1.5s ease-in-out infinite; }
@keyframes flap-l { 0%, 100% { transform: rotateY(8deg); } 50% { transform: rotateY(52deg); } }
@keyframes flap-r { 0%, 100% { transform: rotateY(-8deg); } 50% { transform: rotateY(-52deg); } }
.hero-butterfly.b2.flying .wing.wl, .hero-butterfly.b2.flying .wing.wr {
  animation-duration: .32s; animation-timing-function: cubic-bezier(.45,0,.55,1);
}
.hero-butterfly.b2 {
  width: 54px; right: auto; top: 0; left: 0;
  opacity: 0; animation: none; pointer-events: auto; cursor: pointer;
}
.hero-butterfly.b2.landed { animation: bob-small 4.5s ease-in-out infinite; opacity: 1; }
@keyframes bob-small {
  0%, 100% { transform: translateY(0) rotate(-6deg) scale(.92); }
  50% { transform: translateY(-9px) rotate(4deg) scale(.92); }
}
.fly-origin { position: relative; }

/* Бегущая строка комплектации */
.marquee {
  margin-top: clamp(44px, 6vw, 64px);
  border-block: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  border: 1px solid var(--border-2); background: #fff;
  padding: 9px 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--text);
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-copy { display: grid; gap: 20px; justify-items: start; }
.about-list { display: grid; gap: 14px; margin-top: 8px; }
.row { display: flex; gap: 14px; align-items: flex-start; }
.check {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
}
.check svg { width: 13px; height: 13px; }
.about-media { position: relative; }
.about-media > img {
  border-radius: var(--r-lg); box-shadow: var(--shadow-pop);
  aspect-ratio: 4/5; width: 100%; object-fit: cover;
}
.about-card {
  position: absolute; left: -28px; bottom: 36px;
  background: #fff; border-radius: 20px; padding: 16px 20px;
  box-shadow: 0 14px 40px rgba(40,15,28,.16);
  display: flex; align-items: center; gap: 14px;
  animation: bob 6s ease-in-out -3s infinite;
}
.about-card .n { font-size: 26px; font-weight: 800; color: var(--accent-strong); line-height: 1; }
.about-card .l { font-size: 13.5px; color: var(--muted); line-height: 1.3; max-width: 140px; }

/* ---------- Шаги ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 20px 26px;
  box-shadow: var(--shadow-card);
  display: grid; gap: 12px; align-content: start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(40,15,28,.1); border-color: var(--border-2); }
.step-card p { font-size: 15.5px; line-height: 1.45; color: var(--text); }
.step-n {
  width: 40px; height: 40px; border-radius: 14px;
  background: var(--dark); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 19px;
  transition: background .3s, transform .3s var(--ease);
}
.step-card:hover .step-n { background: var(--accent-strong); transform: rotate(-6deg) scale(1.08); }
.step-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.steps-note {
  margin-top: 22px; display: flex; gap: 14px; align-items: flex-start;
  background: var(--accent-soft); border-radius: 18px; padding: 18px 22px;
}
.tone-accent .steps-note { background: #fff; border: 1px solid var(--border); }
.steps-note svg { flex: none; width: 22px; height: 22px; color: var(--accent-strong); margin-top: 2px; }
.steps-note p { font-size: 15px; color: var(--text); }

/* ---------- Комплектация ---------- */
.inc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.inc-item { display: grid; gap: 12px; }
.inc-item .ph {
  border-radius: 20px; overflow: hidden; aspect-ratio: 1;
  background: #fff; border: 1px solid var(--border);
}
.inc-item .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.inc-item:hover .ph img { transform: scale(1.07); }
.inc-item .ph.icon { display: grid; place-items: center; color: var(--accent-strong); }
.inc-item .ph.icon svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.inc-cap { font-size: 14.5px; font-weight: 600; text-align: center; color: var(--text); }
.inc-note {
  margin-top: 28px; font-size: 15px; color: var(--muted);
  background: #fff; border: 1px dashed var(--border-2);
  padding: 16px 22px; border-radius: 16px; max-width: 760px;
}
.inc-cta { margin-top: 32px; text-align: center; }

/* ---------- Ваза с водой ---------- */
.water {
  background: var(--dark); color: var(--d-text);
  border-radius: var(--r-lg); padding: clamp(36px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.water::before {
  content: ""; position: absolute; width: 480px; height: 480px;
  border-radius: 50%; background: var(--accent); opacity: .14;
  filter: blur(90px); right: -140px; top: -180px;
}
.water-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 64px); position: relative; }
.water .eyebrow { color: var(--accent); }
.water-points { display: grid; gap: 8px; }
.wp { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(198,169,184,.25); }
.wp:last-child { border-bottom: none; }
.wp .num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
}
.wp-b { font-weight: 700; font-size: 17px; }
.wp-d { color: var(--d-muted); font-size: 15px; margin-top: 2px; }
.water-left { display: flex; flex-direction: column; }
.water-butterfly { width: 104px; margin-top: auto; padding-top: 36px; display: flex; }
.water-butterfly .wing { width: 50%; overflow: hidden; }
.water-butterfly .wing img { width: 200%; max-width: none; display: block; }
.water-butterfly .wing.wr img { margin-left: -100%; }

/* ---------- Фичи / карточки ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: grid; gap: 14px; align-content: start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(40,15,28,.1); }
.feature .ic {
  width: 48px; height: 48px; border-radius: 15px;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
  transition: transform .4s var(--ease);
}
.feature:hover .ic { transform: scale(1.1) rotate(-5deg); }
.feature .ic svg { width: 24px; height: 24px; fill: currentColor; }
.feature p { font-size: 15px; color: var(--text); }

/* ---------- Форматы ---------- */
.formats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.format-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  display: grid; gap: 16px; align-content: start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.format-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(40,15,28,.12); }
.format-card .ic {
  width: 54px; height: 54px; border-radius: 17px;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
}
.format-card .ic svg { width: 28px; height: 28px; fill: currentColor; }
.format-card h3 { font-size: 26px; }
.format-card p { color: var(--text); font-size: 16px; }
.format-tag {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.format-card.is-featured { background: var(--dark); color: var(--d-text); border-color: var(--dark); }
.format-card.is-featured .format-tag { color: var(--d-muted); }
.format-card.is-featured p { color: var(--d-muted); }
.format-card.is-featured .ic { background: rgba(255,118,99,.18); color: var(--accent); }
.format-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--accent); color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 999px;
}

/* ---------- Поставка ---------- */
.supply-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.supply-item {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 22px 20px; display: grid; gap: 4px;
  transition: transform .35s var(--ease), border-color .3s;
}
.supply-item:hover { transform: translateY(-4px); border-color: var(--accent); }
.supply-item .v { font-size: 32px; font-weight: 800; letter-spacing: -.02em; color: var(--accent-strong); }
.supply-item .l { font-size: 14.5px; color: var(--text); }
.supply-note { margin-top: 24px; font-size: 15px; color: var(--muted); max-width: 720px; }
.supply-subhead { font-size: 18px; font-weight: 700; margin: 6px 0 18px; }
.supply-footnote { margin-top: 14px; font-size: 13px; color: var(--muted); max-width: 760px; }
.supply-order { margin-top: 32px; padding: clamp(22px, 3vw, 30px); background: var(--accent-soft); border-radius: var(--r); max-width: 760px; }
.supply-order h3 { margin: 0 0 8px; font-size: 20px; }
.supply-order p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.supply-order-btn { display: inline-flex; align-items: center; }
.supply-order-price { font-weight: 800; font-size: 18px; margin-left: 14px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.35); }
.supply-price-tag { display: inline-block; font-size: 30px; font-weight: 800; color: var(--accent-strong); letter-spacing: -.02em; }
.reviews-list { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin: 0 auto; }
.review-msg { display: flex; gap: 12px; align-items: flex-end; max-width: 82%; }
.review-msg.left { align-self: flex-start; }
.review-msg.right { align-self: flex-end; flex-direction: row-reverse; }
.review-ava { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; }
.review-ava svg { width: 22px; height: 22px; fill: currentColor; }
.review-bubble { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 14px 20px; font-size: 15px; line-height: 1.55; color: var(--text); box-shadow: var(--shadow-card); }
.review-msg.left .review-bubble { border-bottom-left-radius: 6px; }
.review-msg.right .review-bubble { background: var(--accent-soft); border-color: transparent; border-bottom-right-radius: 6px; }
.banner { background: var(--dark); color: var(--d-text); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.banner h2 { margin: 0 auto 14px; max-width: 20ch; }
.banner .lead { margin: 0 auto 30px; max-width: 560px; color: var(--d-muted); }
.banner-cta { display: flex; justify-content: center; }
.supply-bullets { display: grid; gap: 12px; max-width: 760px; margin-bottom: 30px; }
.supply-bullets .row { display: flex; gap: 12px; align-items: flex-start; }
.supply-bullets .check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; margin-top: 1px; }
.supply-bullets .check svg { width: 13px; height: 13px; }
.supply-bullets p { font-size: 15.5px; color: var(--text); }
.supply-item.is-total { grid-column: 1 / -1; display: flex; flex-direction: row; align-items: baseline; gap: 14px; background: var(--dark); border-color: var(--dark); color: var(--d-text); }
.supply-item.is-total .v { color: var(--accent); font-size: clamp(34px, 5vw, 48px); }
.supply-item.is-total .l { color: var(--d-muted); font-size: 16px; }

/* ---------- Цены ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--shadow-card); position: relative;
  display: grid; gap: 8px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(40,15,28,.12); }
.price-name { font-weight: 700; font-size: 17px; }
.price-value { font-size: clamp(40px, 4vw, 52px); font-weight: 800; letter-spacing: -.03em; color: var(--accent-strong); line-height: 1; }
.price-desc { color: var(--text); font-size: 15.5px; }
.price-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--dark); color: #fff;
  font-size: 12.5px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
}
.price-note { margin-top: 22px; font-size: 14.5px; color: var(--muted); max-width: 680px; }

/* ---------- Галерея-карусель ---------- */
.gal-marquee {
  overflow: hidden; display: grid; gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gal-track { display: flex; gap: 16px; width: max-content; animation: marquee 48s linear infinite; }
.gal-track.rev { animation-direction: reverse; animation-duration: 56s; }
.gal-marquee:hover .gal-track { animation-play-state: paused; }
.gal-item {
  flex: none; width: 300px; aspect-ratio: 4/3.4;
  border-radius: 20px; overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--border); background: #fff;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }

/* ---------- Пилот (метрики) ---------- */
.sec.tone-dark { overflow: hidden; }
.sec.tone-dark::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: var(--accent); opacity: .12; filter: blur(100px);
  left: -160px; bottom: -240px; pointer-events: none;
}
.tone-dark .eyebrow { color: var(--accent); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.metric {
  border: 1px solid rgba(198,169,184,.25); border-radius: var(--r);
  padding: 32px 28px; display: grid; gap: 6px;
  background: rgba(255,255,255,.02);
}
.metric-v { font-size: clamp(38px, 4vw, 54px); font-weight: 800; letter-spacing: -.03em; color: var(--accent); line-height: 1; }
.metric-l { color: var(--d-muted); font-size: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: box-shadow .3s, border-color .3s;
}
.faq-item.open { border-color: var(--border-2); box-shadow: var(--shadow-card); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  text-align: left; padding: 20px 24px;
  font-weight: 600; font-size: 16.5px; letter-spacing: -.01em;
}
.faq-q .pm {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq-q .pm svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--accent-strong); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner > div { padding: 0 24px 22px; color: var(--text); font-size: 15.5px; max-width: 62ch; }

/* ---------- Скачать карточки ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.tab {
  padding: 11px 22px; border-radius: 999px;
  border: 1.5px solid var(--border-2); background: transparent;
  font-weight: 600; font-size: 15px; color: var(--text);
  transition: all .25s;
}
.tab:hover { border-color: var(--accent); color: var(--accent-text); }
.tab.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.dl-panel { display: none; }
.dl-panel.active { display: block; animation: panel-in .45s var(--ease); }
@keyframes panel-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dl-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-card);
  display: grid; grid-template-rows: auto auto 1fr;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dl-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(40,15,28,.1); }
.dl-prev { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Размер превью детерминирован (width:100% + aspect-ratio), НЕ зависит от intrinsic
   .dl-prev. Иначе при playing (img скрыт) контейнер схлопывался → вместо видео белый
   бокс + съезжали миниатюры. 5/8 ≈ прежняя портретная пропорция превью. */
.dl-prev-wrap { position: relative; width: 100%; aspect-ratio: 5 / 8; }
.dl-video-badge { position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px; background: rgba(28,7,20,.72); color: #fff; font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
.dl-video-badge svg { width: 11px; height: 11px; fill: currentColor; }
.dl-video-badge { cursor: pointer; border: 0; transition: background .2s; }
.dl-video-badge:hover { background: var(--accent-strong); }
.dl-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; background: #000; }
.dl-prev-wrap.playing .dl-video { display: block; }
.dl-prev-wrap.playing .dl-prev, .dl-prev-wrap.playing .dl-video-badge { display: none; }
.dl-thumbs { display: flex; gap: 6px; padding: 10px 14px 0; }
.dl-thumb {
  width: 44px; height: 44px; border-radius: 16px; object-fit: cover;
  cursor: pointer; border: 2px solid transparent; opacity: .75;
  transition: all .2s;
}
.dl-thumb:hover { opacity: 1; }
.dl-thumb.is-active { border-color: var(--accent); opacity: 1; }
.dl-body { padding: 14px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.dl-name { font-weight: 700; font-size: 17px; }
.dl-comp { display: grid; gap: 6px; }
.dl-comp-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.dl-comp-row span { overflow-wrap: anywhere; word-break: break-word; }
.dl-copy { flex: none; width: 26px; height: 26px; border-radius: 7px; color: var(--muted); display: grid; place-items: center; transition: background .2s, color .2s; }
.dl-copy:hover { background: var(--accent-soft); color: var(--accent-strong); }
.dl-copy svg { width: 13px; height: 13px; }
.dl-copy.copied { color: #2e9e5b; }
.dl-btn { margin-top: auto; padding: 12px 20px; font-size: 14.5px; justify-self: start; }
.dl-tool-btn { margin-top: 18px; }

/* ---------- CTA / Форма ---------- */
.cta { background: var(--dark); color: var(--d-text); overflow: hidden; }
.cta::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: var(--accent); opacity: .16; filter: blur(110px);
  right: -200px; top: -260px; pointer-events: none;
}
.cta .eyebrow { color: var(--accent); }
.cta .lead { color: var(--d-muted); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; position: relative; }
.cta-copy { display: grid; gap: 20px; justify-items: start; }
.cta-points { display: grid; gap: 12px; margin-top: 6px; }
.cta-points .row { align-items: center; font-weight: 600; font-size: 16px; }
.cta-points .check { background: rgba(255,118,99,.18); color: var(--accent); margin-top: 0; }
.form-card {
  background: #fff; color: var(--ink);
  border-radius: var(--r-lg); box-shadow: var(--shadow-pop);
  padding: clamp(28px, 3vw, 40px); position: relative;
}
.form-body { display: grid; gap: 16px; }
.form-body h3 { font-size: 24px; }
.form-body .sub { color: var(--muted); font-size: 15px; margin-top: -10px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--text); }
.field input, .field select {
  font: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 13px 16px; width: 100%;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A7680' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field .msg { display: none; font-size: 13px; color: var(--accent-text); font-weight: 600; }
.field.error input { border-color: var(--accent-strong); }
.field.error .msg { display: block; animation: panel-in .3s var(--ease); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--muted); cursor: pointer; line-height: 1.4;
}
.consent input { margin-top: 2px; accent-color: var(--accent-strong); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--accent-strong); }
.consent a:focus-visible { outline: 2px solid var(--accent-strong); outline-offset: 2px; border-radius: 3px; }
.consent.error { color: var(--accent-text); }
.form-success {
  position: absolute; inset: 0; border-radius: var(--r-lg);
  background: #fff; display: none;
  place-items: center; place-content: center; text-align: center;
  padding: 40px; gap: 8px;
}
.form-success.show { display: grid; animation: panel-in .5s var(--ease); }
.form-success .big {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--accent-soft); color: var(--accent-strong);
  display: grid; place-items: center;
  animation: pop-in .5s var(--ease) .1s both;
}
.form-success .big svg { width: 32px; height: 32px; }
@keyframes pop-in { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success .sub { color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--d-muted); padding: 56px 0 32px; border-top: 1px solid rgba(198,169,184,.18); }
.footer .brand { color: #fff; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-desc { margin-top: 12px; max-width: 340px; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(198,169,184,.18); font-size: 13.5px;
}

/* ---------- Мобильный CTA ---------- */
.mobile-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  display: none; transform: translateY(120%); transition: transform .4s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,7,20,.92); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(86vw, 1000px); max-height: 84vh;
  border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.lb-close, .lb-nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center; transition: background .2s;
}
.lb-close:hover, .lb-nav:hover { background: var(--accent-strong); }
.lb-close { top: 24px; right: 24px; }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal-анимации ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--rd, 0ms); }
.reveal.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94) translateY(16px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--rd, 0ms); }
.reveal-scale.in { opacity: 1; transform: none; }

/* Отключение анимаций */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}
body[data-motion="off"] .reveal, body[data-motion="off"] .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
body[data-motion="off"] .hero-float .hf-in, body[data-motion="off"] .hero-butterfly, body[data-motion="off"] .about-card, body[data-motion="off"] .hero-play::before, body[data-motion="off"] .hero-butterfly .wing { animation: none !important; }
body[data-motion="off"] .marquee-track, body[data-motion="off"] .gal-track { animation: none !important; }
body[data-motion="subtle"] .hero-float .hf-in, body[data-motion="subtle"] .hero-butterfly, body[data-motion="subtle"] .about-card { animation: none !important; }
body[data-motion="off"] .hero-butterfly.b2, body[data-motion="subtle"] .hero-butterfly.b2 { opacity: 1; }

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .inc-grid { grid-template-columns: repeat(3, 1fr); }
  .supply-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .hero { padding-top: 120px; }
  .hero-grid, .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; }
  .hero-butterfly { width: 60px; top: 88px; right: 4%; }
  .hero-float.f1 { left: -8px; }
  .hero-float.f2 { right: -8px; }
  .water-grid { grid-template-columns: 1fr; }
  .formats-grid, .price-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .about-card { left: 12px; }
  .mobile-cta { display: block; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 860px) {
  .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .inc-grid { grid-template-columns: 1fr 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; flex-direction: column; align-items: flex-start; }
  .hero-trust .div { display: none; }
  .cards-grid, .cards-grid.cols-3 { grid-template-columns: 1fr; }
  .supply-grid { grid-template-columns: 1fr 1fr; }
  .display { font-size: clamp(28px, 8vw, 44px); }
}

/* ---------- Focus-ring (a11y, дизайн-контракт §7.1: обязателен для клавиатурной навигации) ---------- */
.btn:focus-visible, .tab:focus-visible, .faq-q:focus-visible,
.nav-links a:focus-visible, .nav-burger:focus-visible, .drawer-panel a:focus-visible,
.hero-play:focus-visible, .dl-copy:focus-visible, .dl-video-badge:focus-visible,
.dl-thumb:focus-visible, .lb-close:focus-visible, .lb-nav:focus-visible,
.footer-links a:focus-visible, .brand:focus-visible, .consent input:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}
