/* Source: css/fonts.css */
/* Локальные шрифты DokaLab — self-hosted, font-display: swap.
   Заменяет внешние @fontsource CSS с jsdelivr (убирает render-blocking сторонний домен).
   Unbounded — заголовки (cyrillic+latin), DM Sans — латиница body (кириллица body — системный fallback). */

/* ── Unbounded 700 ── */
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/unbounded-cyrillic-700-normal.woff2') format('woff2'),
       url('/assets/fonts/unbounded-cyrillic-700-normal.woff') format('woff');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/unbounded-latin-700-normal.woff2') format('woff2'),
       url('/assets/fonts/unbounded-latin-700-normal.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Unbounded 900 ── */
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/unbounded-cyrillic-900-normal.woff2') format('woff2'),
       url('/assets/fonts/unbounded-cyrillic-900-normal.woff') format('woff');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/unbounded-latin-900-normal.woff2') format('woff2'),
       url('/assets/fonts/unbounded-latin-900-normal.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DM Sans 400 (latin) ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin-400-normal.woff2') format('woff2'),
       url('/assets/fonts/dm-sans-latin-400-normal.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── DM Sans 500 (latin) ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin-500-normal.woff2') format('woff2'),
       url('/assets/fonts/dm-sans-latin-500-normal.woff') format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Source: css/variables.css */
/* ═══════════════════════════════════════════════
   DokaLab — Design Tokens (variables.css)
   Extracted from dokalab-homepage-light.html
   ═══════════════════════════════════════════════ */

:root {
  /* ── Accent colors ── */
  --cyan: #0FAFD4;
  --cyan-d: #0C96B8;
  --cyan-l: #E5F6FB;
  --cyan-m: rgba(15,175,212,.12);
  --magenta: #C02E8A;
  --magenta-d: #A3267A;
  --magenta-l: #F8EAF4;
  --magenta-m: rgba(192,46,138,.1);
  --gold: #C69010;
  --gold-l: #FBF3DF;
  --green: #0B6E40;
  --green-l: #E6F4EE;
  --tg: #26A5E4;
  --tg-shadow: rgba(38,165,228,.35);

  /* ── Backgrounds ── */
  --bg: #FFFFFF;
  --bg1: #F5F7FB;
  --bg2: #EEF2FA;
  --bg3: #E5EBF7;

  /* ── Text ── */
  --ink: #0A0B14;
  --ink2: #3D4160;
  --ink3: #7A7F9A;
  --ink4: #B4B8CC;

  /* ── Borders ── */
  --border: #E2E7F2;
  --border2: #C8CFEA;

  /* ── Dark palette (DokaShow block, dark sections) ── */
  --dark: #07070F;
  --dark2: #0D0D1C;
  --dark3: #131326;
  --dark4: #1A1A30;

  /* ── Typography ── */
  --display: 'Unbounded', sans-serif;
  --body: 'DM Sans', sans-serif;

  /* ── Radius ── */
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;

  /* ── Shadows ── */
  --shadow: 0 1px 3px rgba(10,11,20,.06), 0 4px 12px rgba(10,11,20,.05);
  --shadow2: 0 2px 8px rgba(10,11,20,.08), 0 8px 24px rgba(10,11,20,.06);

  /* ── Layout ── */
  --container: 1200px;
  --gap: 32px;
  --gap-mob: 18px;
  --nav-h: 64px;
}

/* Source: css/base.css */
/* ═══════════════════════════════════════════════
   DokaLab — Base Styles (base.css)
   Reset, typography, utilities, buttons
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 4px }
img { max-width: 100%; height: auto; display: block; object-fit: cover; object-position: center }
ul, ol { list-style: none }

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap) }
.section { padding: 80px 0; position: relative; overflow: hidden }
.section-alt { background: var(--bg1) }
.section-alt2 { background: var(--bg2) }
.divider { height: 1px; background: var(--border) }

/* ── Typography ── */
.h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 50px;
}
.h3 {
  font-family: var(--display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.lead {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 44px;
}
.grad {
  color: var(--magenta);
}

/* ── Buttons ── */
.btn {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.btn-lg { font-size: 16px; padding: 14px 28px }

.btn-primary { background: var(--cyan); color: #fff }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px) }

.btn-secondary { background: var(--bg); color: var(--ink); border: 1.5px solid var(--border2) }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-1px) }

.btn-ghost { background: transparent; color: var(--ink2); border: 1.5px solid var(--border) }
.btn-ghost:hover { background: var(--bg1); color: var(--ink) }

.btn-tg { background: var(--tg); color: #fff }
.btn-tg:hover { filter: brightness(1.08); transform: translateY(-1px) }

.btn-outline-cyan { background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan) }
.btn-outline-cyan:hover { background: var(--cyan-l); transform: translateY(-1px) }

.btn-block { width: 100% }

/* ── Chips / Badges ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink2);
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
}
.chip-check { color: var(--cyan); font-size: 13px }

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: .05em;
}
.badge-new { background: var(--cyan); color: #fff }
.badge-pop { background: var(--magenta-l); color: var(--magenta) }
.badge-soon { background: rgba(15,175,212,.15); color: var(--cyan); border: 1px solid rgba(15,175,212,.3); text-transform: uppercase; letter-spacing: .06em }

/* ── Table helpers ── */
.tc { color: var(--green); font-weight: 500 }
.tx { color: #9CA3AF }
.tm { color: var(--gold) }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px) }
  to   { opacity: 1; transform: translateY(0) }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-8px) }
}
@keyframes pulse {
  0%, 100% { transform: scale(1) }
  50%      { transform: scale(1.06) }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(16px) scale(.96) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}
.fu  { animation: fadeUp .55s cubic-bezier(.2,.7,.3,1) both }
.fu1 { animation-delay: .1s }
.fu2 { animation-delay: .2s }
.fu3 { animation-delay: .3s }
.fu4 { animation-delay: .4s }
.hero-visual-in { animation: heroVisualIn .7s cubic-bezier(.2,.7,.3,1) .15s both }
@media (prefers-reduced-motion: reduce) {
  .fu, .fu1, .fu2, .fu3, .fu4, .hero-visual-in { animation: none }
}

/* ── Visually hidden (a11y) ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .section { padding: 56px 0 }
}
@media (max-width: 600px) {
  .container { padding: 0 var(--gap-mob) }
  .section { padding: 48px 0 }
}

/* ═══════════════════════════════════════════════
   UTILITY CLASSES — замена частых inline style=
   ═══════════════════════════════════════════════ */

/* — цвета — */
.u-cyan { color: var(--cyan) }
.u-cyan-b { color: var(--cyan); font-weight: 600 }
.u-magenta { color: var(--magenta) }
.u-gold { color: var(--gold) }
.u-ink { color: var(--ink) }
.u-ink2 { color: var(--ink2) }
.u-ink3 { color: var(--ink3) }
.u-cyan-bg { background: var(--cyan-l); color: var(--cyan) }
.u-magenta-bg { background: var(--magenta-l); color: var(--magenta) }

/* — display — */
.u-hidden { display: none }
.u-sr-offscreen { position: absolute; left: -9999px }

/* — типографика — */
.u-text-small-mute { font-size: 13px; color: var(--ink3) }
.u-text-small { font-size: 14px; color: var(--ink2); line-height: 1.55 }
.u-text-sm { font-size: 15px; color: var(--ink2) }
.u-text-md { font-size: 16px; color: var(--ink2); line-height: 1.7 }
.u-text-ink-13 { font-size: 14px; color: var(--ink) }
.u-h-card-title { font-family: var(--display); font-weight: 900; font-size: 15px; color: var(--ink); margin-bottom: 4px }
.u-clamp-h1 { font-size: clamp(28px, 5vw, 44px) }

/* — отступы — */
.u-mb-12 { margin-bottom: 12px }
.u-mb-16 { margin-bottom: 16px }
.u-mb-20 { margin-bottom: 20px }
.u-mt-20 { margin-top: 20px }

/* — flex / grid — */
.u-flex-row { display: flex; gap: 10px; font-size: 15px; color: var(--ink2) }
.u-flex-row-start { display: flex; gap: 10px; align-items: flex-start }

/* — карточки / контейнеры — */
.u-soft-card { background: var(--bg1); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 18px }
.u-bg1 { background: var(--bg1) }

/* — списки — */
.u-list-row { font-size: 15px; color: var(--ink2); padding-left: 20px; position: relative }
.u-list-check { position: absolute; left: 0; color: var(--cyan); font-weight: 700 }
.u-list-dash { position: absolute; left: 0; color: #9CA3AF }
.u-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0 }

/* — заголовки секций — */
.u-section-lead { font-size: 16px; color: var(--ink2); line-height: 1.7; max-width: 760px; margin: 8px 0 0 }
.u-mb-lead { font-size: 16px; color: var(--ink2); line-height: 1.7; margin-bottom: 20px }

/* — мелкие иконки/числа — */
.u-icon-28 { font-size: 28px; margin-bottom: 10px }

/* ═══════════════════════════════════════════════
   UTILITY CLASSES v2 — расширенный набор
   ═══════════════════════════════════════════════ */

/* — font-size атомарно — */
.u-fs-11 { font-size: 12px }
.u-fs-13 { font-size: 13px }
.u-white { color: #fff }
.u-green { color: var(--green) }
.u-cyan-half { color: rgba(15,175,212,.5) }
.u-cyan-strong { color: var(--cyan); font-weight: 900 }
.u-cyan-bold-shrink { color: var(--cyan); font-weight: 700; flex-shrink: 0 }
.u-fs-20-shrink { font-size: 20px; flex-shrink: 0 }

/* — backgrounds — */
.u-gold-bg { background: var(--gold-l); color: var(--gold) }
.u-bg-gold { background: var(--gold); border-color: var(--gold) }
.u-bg-cyan { background: var(--cyan); border-color: var(--cyan) }
.u-gold-mark { background: var(--gold) }
.u-border-gold { border-color: var(--gold) }
.u-border-magenta { border-color: var(--magenta) }

/* — карточки — */
.u-stat-card { background: var(--bg1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 18px; text-align: center }
.u-stat-card-sm { background: var(--bg1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; text-align: center }
.u-card-24 { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px }
.u-card-20-22 { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 20px }
.u-card-padded { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px }
.u-link-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 20px; display: block; transition: border-color .2s; text-decoration: none }
.u-card-col { background: var(--bg1); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 22px; display: flex; flex-direction: column; gap: 10px }

/* — типографика расширенная — */
.u-h-sub { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px }
.u-h-card-title-sm { font-family: var(--display); font-size: 15px; font-weight: 900; letter-spacing: -.01em; color: var(--ink); margin-bottom: 6px }
.u-h-display-15 { font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: -.02em; color: var(--ink); margin-bottom: 4px }
.u-h-display-15-6 { font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: -.01em; color: var(--ink); margin-bottom: 6px }
.u-h-display-16 { font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: -.02em; color: var(--ink); margin-bottom: 8px }
.u-h-display-16-line { font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: -.01em; color: var(--ink); line-height: 1.3 }
.u-text-sm-lh { font-size: 14px; color: var(--ink2); line-height: 1.65 }
.u-text-sm-lh16 { font-size: 14px; color: var(--ink2); line-height: 1.6 }
.u-text-small-lh { font-size: 13px; color: var(--ink2); line-height: 1.6 }
.u-eyebrow-mini { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--ink3); letter-spacing: .05em; margin-bottom: 4px }
.u-text-center-mute { font-size: 12px; color: var(--ink3); text-align: center }
.u-foot-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--ink2) }
.u-fs-13-cyan { font-size: 13px; color: var(--cyan) }

/* — иконки — */
.u-icon-24 { font-size: 24px; margin-bottom: 8px }
.u-icon-32 { font-size: 32px; margin-bottom: 10px }

/* — badge-числа — */
.u-badge-num-cyan { background: var(--cyan); color: #fff; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700 }
.u-badge-num-cyan-sm { background: var(--cyan); color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700 }

/* — flex — */
.u-flex-12-start { display: flex; gap: 12px; align-items: flex-start }
.u-flex-row-8 { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--ink2) }
.u-flex-between { display: flex; justify-content: space-between; align-items: center }
.u-flex-spread { display: flex; justify-content: space-between }
.u-flex-wrap-20 { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px }

/* — grid — */
.u-grid-2-14 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.u-grid-3-16 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px }
@media (max-width: 600px) {
  .u-grid-3-16 { grid-template-columns: 1fr }
}
.u-list-grid-md { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; list-style: none; padding: 0; margin: 0; font-size: 15px; line-height: 1.6 }

/* — margin atomic — */
.u-mt-3 { margin-top: 3px }
.u-mt-14 { margin-top: 14px }
.u-mt-32 { margin-top: 32px }

/* — padding — */
.u-pad-80 { padding: 80px 0 }

/* — dashed separator — */
.u-flex-spread-dash { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px dashed var(--border) }

/* ═══════════════════════════════════════════════
   UTILITY CLASSES v3 — последний раунд
   ═══════════════════════════════════════════════ */
.u-badge-num-cyan-fs { background: var(--cyan); color: #fff; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0 }
.u-badge-num-cyan-sm-fs { background: var(--cyan); color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0 }
.u-bg-magenta { background: var(--magenta); border-color: var(--magenta) }
.u-fw-400 { font-weight: 400 }
.u-fw-400-mute { color: var(--ink3); font-weight: 400 }
.u-mt-4-sm { font-size: 13px; color: var(--ink2); margin-top: 4px }
.u-w-100 { width: 100% }
.u-w-72 { width: 72px }
.u-mt-8 { margin-top: 8px }
.u-mt-24-flex { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap }
.u-flex-12-wrap { display: flex; gap: 12px; flex-wrap: wrap }
.u-flex-12-center-wrap { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }
.u-flex-col-8 { display: flex; flex-direction: column; gap: 8px }
.u-text-center-mb { text-align: center; margin-bottom: 36px }
.u-center-block { margin: 0 auto; text-align: center }
.u-h-display-18 { font-family: var(--display); font-weight: 900; font-size: 18px; letter-spacing: -.02em; color: var(--ink); margin: 32px 0 14px }
.u-h-display-16-mb { font-family: var(--display); font-size: 16px; font-weight: 900; letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px }
.u-h-display-20 { font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: -.02em; color: var(--ink); margin-bottom: 8px }
.u-text-md-pl { font-size: 15px; color: var(--ink2); line-height: 1.75; padding-left: 20px }
.u-text-sm-mb { font-size: 14px; color: var(--ink2); line-height: 1.55; margin-bottom: 12px }
.u-eyebrow-cyan-mini { font-size: 12px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .05em }
.u-fs-11-cyan-bold { font-size: 11px; color: var(--cyan); font-weight: 600 }
.u-fs-11-magenta-bold { font-size: 11px; color: var(--magenta); font-weight: 600 }
.u-sub-line { color: var(--ink2); font-size: 14px; font-weight: 400; display: block; margin-top: 6px }
.u-flex-row-info { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink2); line-height: 1.5; margin: 6px 0 14px }
.u-loading-msg { display: none; text-align: center; padding: 32px 0; color: var(--cyan); font-size: 18px; font-weight: 600 }
.u-card-link { display: block; background: var(--bg1); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 24px; text-decoration: none; transition: all .2s }
.u-card-pad-28 { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 28px }
.u-align-center { align-items: center }
.u-align-start { align-items: start }
.u-opacity-50 { opacity: .5 }
.u-bg-dark-button-disabled { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8) }
.u-bg-gold-disabled { border-color: rgba(198,144,16,.3); color: rgba(198,144,16,.7) }
.u-dark-input { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 8px 12px; font-size: 13px; color: rgba(255,255,255,.4) }
.u-bg-dark-soft { background: rgba(255,255,255,.04) }
.u-white-70 { color: rgba(255,255,255,.7) }
.u-divider-thin { margin: 0 12px; opacity: .3 }
.u-mac-red { background: #FF5F56 }
.u-mac-yellow { background: #FEBC2E }
.u-mac-green { background: #28C840 }

/* Source: css/components.css */
/* ═══════════════════════════════════════════════
   DokaLab — Components (components.css)
   Nav, footer, cards, FAQ, calculator, etc.
   ═══════════════════════════════════════════════ */

/* ── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gap);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(10,11,20,.04);
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 17px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink);
}
.nav-links {
  display: flex; gap: 22px; font-size: 15px; color: var(--ink3);
}
.nav-links a { transition: color .2s }
.nav-links a:hover { color: var(--ink) }
.nav-phone { font-size: 14px; font-weight: 500 }
.nav-phone a { color: var(--ink) }
.nav-phone a:hover { color: var(--cyan) }
.nav-cta-wrap { display: flex; gap: 8px; align-items: center }

/* Burger button */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  position: relative; z-index: 201;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .3s ease;
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translateY(3.5px) }
.nav-burger.active span:nth-child(2) { opacity: 0 }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-3.5px) }

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto }
.nav-mobile a {
  font-family: var(--display); font-size: 20px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--cyan) }
.nav-mobile .nav-mobile-phone {
  font-size: 16px; font-weight: 500; color: var(--ink2);
  margin-top: 12px;
}

/* ── TOP STRIP ───────────────────────────────── */
.top-strip {
  margin-top: var(--nav-h);
  background: var(--cyan); color: #fff;
  text-align: center;
  padding: 9px 20px; font-size: 13px;
}
.top-strip a { text-decoration: underline; color: #fff }

/* ── TRUST STRIP — «доверие с 2019», мотив светящейся кнопки ── */
.trust-strip {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
}
.trust-anchor-eyebrow {
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 10px;
}
.trust-anchor-line {
  font-family: var(--display); font-size: clamp(20px, 2vw, 26px);
  font-weight: 900; letter-spacing: -.02em; line-height: 1.12; color: var(--ink);
}
.trust-anchor-chip {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; padding: 7px 14px; border-radius: 999px;
  background: var(--cyan-l); color: var(--cyan-d);
  font-size: 13px; font-weight: 600; line-height: 1;
}
.trust-anchor-chip span { font-weight: 800; font-size: 12px }
.trust-metrics { display: flex; gap: 40px; flex-wrap: wrap }
.trust-metric { display: flex; align-items: center; gap: 13px }
.trust-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, #6fdcf2, var(--cyan));
  box-shadow: 0 0 0 4px var(--cyan-m), 0 4px 14px rgba(15,175,212,.45);
}
.trust-metric-val {
  font-family: var(--display); font-size: 32px; font-weight: 900;
  letter-spacing: -.02em; line-height: 1; color: var(--ink);
}
.trust-metric-label { font-size: 14px; color: var(--ink3); margin-top: 5px; line-height: 1.3 }

/* ── COMPARISON TABLE ─────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-top: 40px;
}
.compare-table th {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  text-align: left; font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink3); background: var(--bg1);
}
.compare-table th:first-child { width: 200px }
.compare-table td {
  padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--ink2);
}
.compare-table tr:last-child td { border-bottom: none }
.compare-table tr.hl-row { background: rgba(15,175,212,.04) }
.compare-table tr.hl-row td { font-weight: 500; color: var(--ink) }
.col-doka { background: rgba(15,175,212,.04); border-left: 2px solid var(--cyan) }
.col-head { background: rgba(15,175,212,.08) !important; color: var(--cyan) !important; font-weight: 700 !important }

/* ── PRODUCT CARDS ───────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); transition: all .25s;
}
.product-card:hover {
  border-color: rgba(15,175,212,.4);
  transform: translateY(-3px); box-shadow: var(--shadow2);
}
.pc-visual {
  height: 185px;
  background: var(--bg1);   /* фон-заглушка — перекрывается фото */
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Реальное фото продукта — целиком, без обрезки */
.pc-visual > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 16px;
  z-index: 1;
}

/* img-ph внутри карточки — тоже на весь блок */
.pc-visual .img-ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0; border: none; min-height: 0;
}
.pc-visual .img-ph > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 16px;
  z-index: 1;
}

/* Когда есть реальное фото — фон не нужен (поддержка :has в Chrome 105+, Safari 16+) */
.pc-visual:has(> img) { background: transparent }
.pc-visual:has(.img-ph > img:not([src=""])) { background: transparent }

/* Badge и категория остаются поверх фото */
.pc-badge,
.pc-cat { z-index: 2 }
.pc-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 6px; letter-spacing: .05em;
}
.pc-body { padding: 20px }
.pc-cat {
  font-size: 10px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 5px;
}
.pc-name {
  font-family: var(--display); font-size: 16px; font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 7px;
  color: var(--ink); line-height: 1.2;
}
.pc-desc {
  font-size: 13px; color: var(--ink2);
  line-height: 1.55; margin-bottom: 14px;
}
.pc-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px }
.pc-spec {
  font-size: 11px; padding: 2px 8px; border-radius: 5px;
  background: var(--bg1); color: var(--ink3); border: 1px solid var(--border);
}
.pc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.pc-price {
  font-family: var(--display); font-size: 17px; font-weight: 900; color: var(--ink);
}
.pc-price small {
  font-family: var(--body); font-size: 11px; font-weight: 400; color: var(--ink3);
}
.pc-cta-card {
  background: linear-gradient(135deg, var(--cyan-l), var(--magenta-l));
  border-color: rgba(15,175,212,.2);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 40px 24px;
}

/* ── CALCULATOR ──────────────────────────────── */
.calc-section { padding: 80px 0; background: var(--bg2) }

/* Outer grid: card (left) + visual (right) — always 2 columns */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px }

/* ── Card */
.calc-card {
  background: #fff; border-radius: var(--r-2xl);
  box-shadow: var(--shadow2); padding: 40px;
}

/* Progress bar */
.calc-header { margin-bottom: 24px }
.calc-progress-bar {
  height: 4px; background: var(--border);
  border-radius: 2px; overflow: hidden; margin-bottom: 8px;
}
.calc-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 2px; transition: width .4s ease;
}
.calc-progress-label { font-size: 13px; color: var(--ink3) }

/* Steps */
.calc-steps { display: flex; flex-direction: column; gap: 22px }
.calc-step { display: flex; flex-direction: column; gap: 8px }
.calc-step-label {
  font-size: 13px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.calc-step-num {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--cyan-l); color: var(--cyan);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.calc-step-num.done { background: var(--cyan); color: #fff }
.calc-step-options { display: flex; gap: 8px; flex-wrap: wrap }
.calc-opt {
  padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px; cursor: pointer;
  background: #fff; color: var(--ink2);
  transition: all .15s; font-family: var(--body);
}
.calc-opt:hover { border-color: var(--cyan); color: var(--cyan) }
.calc-opt.active {
  border-color: var(--cyan); background: var(--cyan-l);
  color: var(--cyan); font-weight: 500;
}

.cr-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px; margin-bottom: 6px;
}
.cr-label {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--cyan); margin-bottom: 3px;
}
.cr-product {
  font-family: var(--display); font-size: 18px; font-weight: 900;
  color: var(--ink); letter-spacing: -.02em;
}
.cr-price {
  font-family: var(--display); font-size: 16px; font-weight: 900;
  color: var(--cyan); white-space: nowrap; letter-spacing: -.01em; padding-top: 16px;
}
.cr-desc { font-size: 14px; color: var(--ink2); margin-bottom: 10px; line-height: 1.5 }
.cr-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px }
.cr-tag {
  font-size: 11px; padding: 3px 9px; border-radius: 6px;
  background: rgba(15,175,212,.12); color: var(--cyan);
  border: 1px solid rgba(15,175,212,.2);
}
.cr-btns { display: flex; gap: 8px; flex-wrap: wrap }
.cr-price-hint {
  font-size: 10px; color: var(--ink4); margin-top: 3px;
  font-family: var(--body); font-weight: 400; white-space: nowrap;
}
.cr-also {
  margin-top: 14px; padding: 12px 14px;
  border-radius: 10px; background: var(--bg1);
  border: 1px solid var(--border);
}
.cr-also-title {
  font-size: 10px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink4); margin-bottom: 7px;
}
.cr-also-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px; margin-bottom: 8px;
}
.cr-also-info { font-size: 13px; color: var(--ink2) }
.cr-also-name { font-weight: 600; color: var(--ink) }
.cr-also-desc { font-size: 12px }
.cr-also-price {
  font-family: var(--display); font-size: 14px; font-weight: 900;
  color: var(--cyan); white-space: nowrap; flex-shrink: 0;
}
.cr-also-link { font-size: 12px; color: var(--cyan); font-weight: 500 }
.cr-also-link:hover { text-decoration: underline }

/* ── Slider (Q1) */
.calc-slider-wrap { margin-top: 4px }
.calc-slider-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; margin-bottom: 14px;
}
.calc-slider-display { display: flex; align-items: baseline; gap: 5px }
.calc-slider-num {
  font-family: var(--display); font-size: 40px; font-weight: 900;
  letter-spacing: -.04em; color: var(--cyan); line-height: 1;
  transition: color .2s;
}
.calc-slider-unit { font-size: 14px; color: var(--ink2) }
.calc-slider-badge {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap;
  padding: 5px 12px; border-radius: 20px;
  background: var(--bg1); color: var(--ink3);
  border: 1px solid var(--border);
  transition: background .25s, color .25s, border-color .25s;
}
.calc-slider-badge.is-small  { background: rgba(11,110,64,.08);  color: var(--green);   border-color: rgba(11,110,64,.2) }
.calc-slider-badge.is-medium { background: rgba(15,175,212,.1);  color: var(--cyan);    border-color: rgba(15,175,212,.3) }
.calc-slider-badge.is-large  { background: rgba(198,144,16,.1);  color: var(--gold);    border-color: rgba(198,144,16,.25) }
.calc-slider-badge.is-mass   { background: rgba(192,46,138,.08); color: var(--magenta); border-color: rgba(192,46,138,.2) }

.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  outline: none; cursor: pointer;
  background: #E5E7EB;
  transition: background .05s;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--cyan), 0 2px 8px rgba(15,175,212,.35);
  cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 3px var(--cyan), 0 4px 14px rgba(15,175,212,.45);
}
.calc-slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--cyan); cursor: pointer;
}
.calc-slider-ticks {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink4); margin-top: 7px;
}

/* ── Visual panel (right) — always visible */
.calc-visual { display: flex; flex-direction: column }
.calc-vis-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  height: 220px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.calc-vis-ph { font-size: 64px; opacity: .35; position: absolute; z-index: 0 }
.calc-vis-hint { padding: 4px 0 }
.calc-vis-hint-steps {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px;
}
.calc-vis-hint-step {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--ink2); line-height: 1.45;
}
.calc-vis-hint-step span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan-l);
  border: 1.5px solid rgba(15,175,212,.3);
  color: var(--cyan);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.calc-vis-hint-cta {
  font-size: 12px; color: var(--ink4);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center; line-height: 1.5;
}
.calc-vis-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 16px;
  z-index: 1;
}
.calc-vis-body {
  background: #fff; padding: 20px;
  border: 1.5px solid rgba(15,175,212,.25); border-top: none;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  flex: 1;
}
.calc-vis-result { display: none }

/* ── Single wrapper */
.calc-vis-single { display: flex; flex-direction: column; flex: 1 }

/* ── Dual cards (2–8 teams: OCTOBUZZY + DOKA) */
.calc-vis-dual { display: none; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1; align-content: stretch }
.calc-vis-card.hero-slide { flex: 1; width: auto; min-width: 0 }
.calc-vis-dual .hero-slide-img { height: 200px }
.calc-vis-dual .hero-slide-img .img-ph img { object-fit: contain; padding: 12px }
.calc-vis-dual .hero-slide-name { font-size: 17px }
.calc-vis-dual .hero-slide-desc { font-size: 12px; min-height: 0; margin-bottom: 10px }
.calc-vis-dual .hero-slide-body { padding: 16px 16px 20px; flex: 1 }
.calc-vis-dual .hero-slide-footer { flex-direction: column; align-items: stretch; gap: 10px }
.calc-vis-dual .hero-slide-price { font-size: 20px; white-space: nowrap }
.calc-vis-dual .hero-slide-footer .btn { text-align: center; justify-content: center }

/* ── Lead capture form */
.calc-lead {
  margin-top: 32px; padding: 40px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, #f0fbff 0%, #fdf4ff 100%);
  border: 1.5px solid rgba(15,175,212,.2);
  display: none; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s cubic-bezier(.2,.7,.3,1), transform .5s cubic-bezier(.2,.7,.3,1);
}
.calc-lead.visible { display: grid }
.calc-lead.visible.is-shown { opacity: 1; transform: translateY(0) }
@media (prefers-reduced-motion: reduce) {
  .calc-lead { transition: none }
}
.calc-lead-title {
  font-family: var(--display); font-size: 22px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.calc-lead-sub { font-size: 14px; color: var(--ink2); line-height: 1.6; margin-bottom: 20px }
.calc-lead-perks { display: flex; flex-direction: column; gap: 8px }
.calc-lead-perks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink2);
}
.calc-lead-perks li span { color: var(--cyan); font-weight: 700 }
.calc-lead-form { display: flex; flex-direction: column; gap: 12px }
.calc-lead-field { display: flex; flex-direction: column; gap: 5px }
.calc-lead-field label { font-size: 12px; font-weight: 500; color: var(--ink2) }
.calc-lead-field input {
  padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--border2);
  font-size: 16px; font-family: var(--body);
  background: #fff; color: var(--ink);
  transition: border-color .15s;
}
.calc-lead-field input:focus { outline: none; border-color: var(--cyan) }
.calc-lead-legal { font-size: 11px; color: var(--ink4); text-align: center }
.calc-lead-legal a { color: var(--ink3); text-decoration: underline }

/* Consent checkbox */
.calc-lead-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--ink3); line-height: 1.5;
  cursor: pointer; user-select: none;
}
.calc-lead-consent input[type=checkbox] {
  flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.calc-lead-consent a { color: var(--cyan); text-decoration: underline }
.calc-lead-consent:has(input:invalid:not(:focus)):hover { color: var(--ink2) }

/* ── FOR WHOM ────────────────────────────────── */
.fw-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 40px;
}
.fw-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: all .25s; box-shadow: var(--shadow);
}
.fw-card:hover {
  border-color: rgba(15,175,212,.3);
  transform: translateY(-3px); box-shadow: var(--shadow2);
}
.fw-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--cyan-l); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.fw-title {
  font-family: var(--display); font-size: 15px; font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 8px;
  color: var(--ink); line-height: 1.25;
}
.fw-desc { font-size: 13px; color: var(--ink2); line-height: 1.6; margin-bottom: 12px }
.fw-items { display: flex; flex-wrap: wrap; gap: 5px }
.fw-item {
  font-size: 11px; padding: 3px 9px; border-radius: 5px;
  background: var(--bg1); color: var(--ink3); border: 1px solid var(--border);
}

/* ── RENTAL ───────────────────────────────────── */
.rental { padding: 80px 0; background: #fff; }
.rental-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.rental-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 28px }
.rental-step { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start }
.rental-step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cyan-l); color: var(--cyan);
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1.5px solid rgba(15,175,212,.25);
  font-family: var(--display);
}
.rental-step-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 1px }
.rental-step-desc { font-size: 12px; color: var(--ink2); line-height: 1.45 }
.rental-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow2);
}
.rental-card-title {
  font-family: var(--display); font-size: 18px; font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 20px; color: var(--ink);
}
.rental-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px }
.rental-price { background: var(--bg1); border-radius: 10px; padding: 14px }
.rental-price-val {
  font-family: var(--display); font-size: 22px; font-weight: 900;
  color: var(--cyan); line-height: 1;
}
.rental-price-label { font-size: 12px; color: var(--ink3); margin-top: 3px }
.rental-includes-title {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ink4); margin-bottom: 10px;
}
.rental-includes-item {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 13px; color: var(--ink2); margin-bottom: 7px;
}
.rental-includes-icon { color: var(--cyan); flex-shrink: 0; margin-top: 1px }

/* ── REVIEWS ──────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}

/* Reviews carousel */
.reviews-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px;
}
.reviews-nav { display: flex; gap: 8px; flex-shrink: 0; }
.reviews-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink2);
  transition: border-color .2s, color .2s, background .2s;
}
.reviews-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-l); }
.reviews-btn:disabled { opacity: .35; cursor: default; }
.reviews-carousel {
  overflow: hidden;
  margin-top: 0;
}
.reviews-track {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.reviews-track .review-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
}
.reviews-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; padding: 0; cursor: pointer;
  transition: background .2s, transform .2s;
}
.reviews-dot.active { background: var(--cyan); transform: scale(1.25); }
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px }
.review-text {
  font-size: 13px; color: var(--ink2);
  line-height: 1.6; margin-bottom: 16px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 10px }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 13px; font-weight: 900; flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 1px }
.review-org { font-size: 11px; color: var(--ink3) }
.rating-summary {
  background: var(--green-l); border: 1px solid rgba(11,110,64,.2);
  border-radius: var(--r-lg); padding: 24px;
  text-align: center; display: flex; align-items: center;
  justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap;
}
.rating-big {
  font-family: var(--display); font-size: 40px; font-weight: 900;
  color: var(--green); line-height: 1;
}
.rating-stars { font-size: 18px; color: var(--gold); letter-spacing: 2px; margin: 4px 0 }
.rating-count { font-size: 13px; color: var(--ink2) }
.rating-divider { width: 1px; height: 60px; background: rgba(11,110,64,.2) }
.rating-stat {
  font-family: var(--display); font-size: 28px; font-weight: 900; color: var(--green);
}

/* ── FAQ ──────────────────────────────────────── */
.faq { padding: 80px 0; background: #fff }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 40px; align-items: start;
}
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.faq-q {
  padding: 16px 20px; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--ink);
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  background: linear-gradient(135deg, #051828 0%, #0d0f24 50%, #1a0820 100%);
  color: #fff;
  border: none; width: 100%;
  text-align: left; font-family: var(--body);
  transition: filter .2s;
}
.faq-q:hover { filter: brightness(1.25) }
.faq-icon {
  color: var(--cyan); font-size: 18px; flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg) }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.2,.7,.3,1);
  padding: 0 20px; font-size: 13px;
  color: var(--ink2); line-height: 1.65;
}
.faq-item.open .faq-a {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
}
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none }
}

/* ── TRUST NUMBERS ────────────────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-card {
  background: var(--bg1); border-radius: 14px; padding: 22px;
  border: 1px solid var(--border); text-align: center;
}
.trust-val {
  font-family: var(--display); font-size: 30px; font-weight: 900;
  letter-spacing: -.03em; margin-bottom: 5px;
}
.trust-label { font-size: 12px; color: var(--ink2); line-height: 1.4 }

/* ── COMING SOON (DokaShow) ───────────────────── */
.coming-soon { padding: 64px 0; background: var(--ink); color: #fff }
.coming-soon-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.coming-soon-rings {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%); opacity: .07; pointer-events: none;
}
.coming-soon-badge {
  display: inline-block; font-size: 10px; font-weight: 500;
  padding: 3px 10px; border-radius: 10px;
  background: rgba(15,175,212,.15); color: var(--cyan);
  border: 1px solid rgba(15,175,212,.3);
  margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase;
}
.coming-soon-h {
  font-family: var(--display); font-size: clamp(20px, 3vw, 32px);
  font-weight: 900; letter-spacing: -.03em;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.coming-soon-sub {
  font-size: 14px; color: rgba(255,255,255,.55);
  line-height: 1.65; max-width: 500px; position: relative; z-index: 1;
}
.coming-soon-feats {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 14px; position: relative; z-index: 1;
}
.coming-soon-feat {
  font-size: 11px; padding: 3px 9px; border-radius: 5px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.5);
}
.coming-soon-feat--dim { opacity: .45 }
.coming-soon-form {
  display: flex; gap: 8px; flex-shrink: 0; position: relative;
  z-index: 1; align-items: flex-end; flex-direction: column;
}
.coming-soon-input {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: 10px 14px;
  font-size: 16px; color: #fff;
  font-family: var(--body); width: 230px;
}
.coming-soon-input::placeholder { color: rgba(255,255,255,.3) }
.coming-soon-note { font-size: 11px; color: rgba(255,255,255,.25); text-align: right }

/* ── CTA SECTION ──────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--cyan-l) 0%, var(--magenta-l) 100%);
  text-align: center;
}
.cta-h {
  font-family: var(--display); font-size: clamp(26px, 4vw, 48px);
  font-weight: 900; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 16px; color: var(--ink);
}
.cta-sub {
  font-size: 16px; color: var(--ink2);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.65;
}
.cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.cta-contacts {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-top: 44px;
}
.cta-contact { text-align: center }
.cta-contact-label {
  font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 4px;
}
.cta-contact-val { font-size: 16px; font-weight: 500; color: var(--ink) }
.cta-contact-val a:hover { color: var(--cyan) }

/* ── FOOTER ───────────────────────────────────── */
.footer {
  padding: 40px var(--gap) 28px;
  background: #fff; border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
.footer-inner--4 {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.footer-inner--5 {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
}
.footer-brand {
  font-family: var(--display); font-size: 15px; font-weight: 900;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px; color: var(--ink);
}
.footer-desc { font-size: 12px; color: var(--ink3) }
.footer-legal { font-size: 11px; color: var(--ink3); line-height: 1.6; margin-top: 8px }
.footer-col-title {
  font-size: 11px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 12px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--ink2);
}
.footer-links a:hover { color: var(--cyan) }
.footer-links .footer-link-accent { color: var(--cyan) }
.footer-bottom {
  max-width: var(--container); margin: 20px auto 0;
  padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--ink3); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a:hover { color: var(--cyan) }

/* ── FLOATING TELEGRAM BUTTON ─────────────────── */
.tg-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 52px; height: 52px;
  background: var(--tg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--tg-shadow);
  transition: all .2s; cursor: pointer;
}
.tg-float:hover { transform: scale(1.08) }
.tg-float svg { fill: #fff }

/* ── STEPFORM EMBED ───────────────────────────── */
.stepform-embed {
  width: 100%;
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 960px) {
  .rental-inner,
  .coming-soon-inner { grid-template-columns: 1fr }

  .products-grid,
  .fw-grid,
  .reviews-grid,
  .trust-grid,
  .faq-grid { grid-template-columns: 1fr 1fr }

  .footer-inner { grid-template-columns: 1fr 1fr }
  .compare-table { font-size: 13px }
  .trust-strip { grid-template-columns: 1fr; gap: 28px }
}

@media (max-width: 600px) {
  .nav { padding: 0 var(--gap-mob) }
  .nav-links { display: none }
  .nav-burger { display: flex }
  .nav-mobile { display: flex }

  .products-grid,
  .fw-grid,
  .reviews-grid,
  .trust-grid,
  .faq-grid { grid-template-columns: 1fr }

  .footer-inner { grid-template-columns: 1fr }
  .rental-prices { grid-template-columns: 1fr }
  .coming-soon-form { flex-direction: column }

  /* Узкие колонки не помещаются на мобильном — таблица уезжает вбок целиком */
  .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch }
  .compare-table th:first-child { width: auto; white-space: nowrap }
  .coming-soon-input { width: 100% }
  .trust-strip { grid-template-columns: 1fr; gap: 22px }
  .trust-metrics { gap: 18px 32px }
  .cta-contacts { flex-direction: column; align-items: center }
  .rating-summary { flex-direction: column }
  .rating-divider { width: 60px; height: 1px }
  .calc-wrap { grid-template-columns: 1fr }
  /* На мобильных результат показываем под вопросами компактно */
  .calc-visual { display: flex; margin-top: 16px }
  .calc-vis-img-wrap { height: 160px }
  .calc-vis-hint { display: none }
  .calc-card { padding: 28px 20px }
  .calc-lead { padding: 28px 20px }
  .calc-lead.visible { grid-template-columns: 1fr; gap: 28px }
}

/* ═══════════════════════════════════════════════
   IMAGE PLACEHOLDERS (заглушки под фото)
   Используются до загрузки реальных изображений.
   Замена: заменить <div class="img-ph"...> на <img src="..." alt="..." loading="lazy">
   ═══════════════════════════════════════════════ */
.img-ph {
  position: relative;
  width: 100%;
  background: var(--bg1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  min-height: 180px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.5;
  overflow: hidden;
}
.img-ph-desc {
  max-width: 380px;
  font-style: italic;
}
.img-ph-desc strong {
  display: block;
  font-style: normal;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.img-ph-dim {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink3);
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
}
.img-ph--16x9 { aspect-ratio: 16 / 9; min-height: 0 }
.img-ph--4x3  { aspect-ratio: 4 / 3;  min-height: 0 }
.img-ph--1x1  { aspect-ratio: 1 / 1;  min-height: 0 }
.img-ph--3x2  { aspect-ratio: 3 / 2;  min-height: 0 }
.img-ph--fill { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; border-radius: 0; border-width: 0 0 2px 0 }
.img-ph--fill .img-ph-desc { font-size: 11px; line-height: 1.4; max-width: 90% }
.img-ph--fill .img-ph-desc strong { font-size: 12px; margin-bottom: 4px }
.img-ph--fill::before { font-size: 9px; padding: 1px 6px }
.img-ph--fill .img-ph-dim { font-size: 9px; padding: 1px 6px }

/* ──────────────────────────────────────────────
   Подмена плейсхолдера реальной картинкой:
   просто вставьте <img src="..." alt="..."> внутрь div.img-ph —
   placeholder-разметка скроется автоматически.
   Пример:
     <div class="img-ph img-ph--4x3">
       <img src="/assets/img/hero.jpg" alt="...">
     </div>
   ────────────────────────────────────────────── */
.img-ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 5;
  border-radius: inherit;
}
.img-ph:has(> img) {
  border-style: solid;
  border-color: var(--border);
  background: var(--bg);
  padding: 0;
}
.img-ph:has(> img)::before,
.img-ph:has(> img) > .img-ph-desc,
.img-ph:has(> img) > .img-ph-dim { display: none }

/* ═══════════════════════════════════════════════
   STICKY CTA — нижняя плашка на мобильном + плавающая кнопка на десктопе
   ═══════════════════════════════════════════════ */

.sticky-cta {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto }
.sticky-cta.is-hidden  { opacity: 0; pointer-events: none; transform: translateY(8px) }

/* Mobile bottom bar */
.sticky-cta--mobile {
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 22px rgba(15,23,42,.06);
  display: none;
}
.sticky-cta--mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 8px;
  max-width: 540px;
  margin: 0 auto;
}
.sticky-cta--mobile .scta-btn {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  height: 46px; border-radius: 12px; text-decoration: none;
  transition: transform .15s, background .2s;
  white-space: nowrap;
}
.sticky-cta--mobile .scta-btn:active { transform: scale(.97) }
.scta-secondary { background: var(--bg1); color: var(--ink); border: 1px solid var(--border) }
.scta-phone     { background: var(--bg1); color: var(--ink); border: 1px solid var(--border) }
.scta-primary   {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,175,212,.32);
}

/* Desktop floating button */
.sticky-cta--desktop {
  right: 28px; bottom: 28px;
  display: none;
}
.sticky-cta--desktop .scta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--body); font-size: 15px; font-weight: 700;
  color: #fff; text-decoration: none;
  background: linear-gradient(135deg, #0FAFD4 0%, #C02E8A 100%);
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(15,175,212,.35), 0 2px 6px rgba(192,46,138,.18);
  transition: transform .2s, box-shadow .2s;
}
.sticky-cta--desktop .scta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,175,212,.45), 0 4px 10px rgba(192,46,138,.24);
}
.scta-icon {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Breakpoints */
@media (max-width: 768px) {
  .sticky-cta--mobile  { display: block }
  .sticky-cta--desktop { display: none }
  /* поднимаем содержимое чтобы не прилипало к плашке */
  body.has-sticky-cta { padding-bottom: 76px }
}
@media (min-width: 769px) {
  .sticky-cta--mobile  { display: none }
  .sticky-cta--desktop { display: block }
}

/* ── PDP unification (Sprint 4.3) ─────────────────────── */
.pdp-switcher { padding: 14px 0; background: var(--bg1); border-bottom: 1px solid var(--border) }
.pdp-switcher-track { display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none }
.pdp-switcher-track::-webkit-scrollbar { display: none }
.pdp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--ink2);
  white-space: nowrap; text-decoration: none;
  transition: all .18s
}
.pdp-chip:hover { border-color: var(--cyan); color: var(--ink); transform: translateY(-1px) }
.pdp-chip.is-active {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-color: transparent; color: #fff
}
.pdp-chip.is-active:hover { color: #fff; transform: none }

.pdp-cases-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 22px
}
.pdp-case-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 22px;
  text-decoration: none; color: inherit;
  transition: all .2s
}
.pdp-case-card:hover { border-color: var(--cyan); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,175,212,.12) }
.pdp-case-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--cyan) }
.pdp-case-tag.gov { color: var(--magenta) }
.pdp-case-tag.b2b { color: var(--gold) }
.pdp-case-title {
  font-family: var(--display); font-weight: 900; font-size: 16px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1.35
}
.pdp-case-meta {
  font-size: 13px; color: var(--ink2); line-height: 1.55;
  margin-top: 4px; flex: 1
}
.pdp-case-link { font-size: 13px; font-weight: 700; color: var(--cyan); margin-top: 6px }
.pdp-cases-all {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 14px; font-weight: 700;
  color: var(--cyan); text-decoration: none
}
.pdp-cases-all:hover { text-decoration: underline }

.pdp-support-block {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(15,175,212,.06), rgba(192,46,138,.06));
  border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 22px 26px; margin-bottom: 22px
}
.pdp-support-block .pdp-support-icon { font-size: 32px; line-height: 1 }
.pdp-support-block .pdp-support-text { flex: 1; min-width: 220px }
.pdp-support-block .pdp-support-title {
  font-family: var(--display); font-weight: 900; font-size: 17px;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 4px
}
.pdp-support-block .pdp-support-desc {
  font-size: 14px; color: var(--ink2); line-height: 1.55
}
@media (max-width: 768px) {
  .pdp-switcher-track { padding: 0 16px }
  .pdp-case-card { padding: 18px }
  .pdp-support-block { padding: 18px 20px; gap: 14px }
}

/* ── Blog enhancements (Sprint 4.4) ───────────────────── */
.blog-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  z-index: 1000; transition: width .12s ease-out;
  pointer-events: none
}
.blog-toc {
  background: var(--bg1);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin: 0 0 32px
}
.blog-toc-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink3);
  margin-bottom: 12px
}
.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: grid;
  gap: 8px
}
.blog-toc-list li {
  counter-increment: toc;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: baseline
}
.blog-toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--ink3);
  font-weight: 700;
  font-family: var(--display);
  font-size: 12px;
  flex-shrink: 0
}
.blog-toc-list a {
  color: var(--ink2);
  text-decoration: none;
  transition: color .15s, transform .15s;
  display: inline-block
}
.blog-toc-list a:hover {
  color: var(--cyan)
}
.blog-toc-list a.is-active {
  color: var(--cyan);
  font-weight: 700
}

.blog-cases {
  background: linear-gradient(135deg, rgba(15,175,212,.05), rgba(192,46,138,.05));
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  margin: 32px 0
}
.blog-cases-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--cyan); margin-bottom: 6px
}
.blog-cases-title {
  font-family: var(--display); font-weight: 900;
  font-size: 20px; letter-spacing: -.02em; color: var(--ink);
  margin: 0 0 16px
}
.blog-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px
}
.blog-cases-grid a {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px;
  text-decoration: none; transition: all .18s
}
.blog-cases-grid a:hover { border-color: var(--cyan); transform: translateY(-2px) }
.blog-cases-grid strong {
  font-family: var(--display); font-weight: 900;
  font-size: 14px; letter-spacing: -.01em; color: var(--ink);
  line-height: 1.35
}
.blog-cases-grid span { font-size: 12px; color: var(--ink2); line-height: 1.5 }

@media (max-width: 768px) {
  .blog-toc { padding: 18px 22px }
  .blog-cases { padding: 22px }
}

/* ── Light-bg lead forms (Sprint 4 patch) ───────────── */
.gov-form .blf-field { margin-bottom: 14px }
.gov-form .blf-label,
.gov-form .blf-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.gov-form .blf-input,
.gov-form .blf-field input,
.gov-form .blf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg1);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: none;
  box-sizing: border-box;
}
.gov-form .blf-input::placeholder,
.gov-form .blf-field input::placeholder,
.gov-form .blf-field textarea::placeholder { color: var(--ink3) }
.gov-form .blf-input:focus,
.gov-form .blf-field input:focus,
.gov-form .blf-field textarea:focus {
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,175,212,.12);
}
.gov-form .blf-submit {
  background: var(--cyan);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-size: 15px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 6px 18px rgba(15,175,212,.25);
}
.gov-form .blf-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,175,212,.32);
}

/* ── Form consent — 152-ФЗ (Sprint 5) ─────────────── */
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  margin: 14px 0 16px;
  cursor: pointer;
}
.form-consent input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
}
.form-consent a { font-weight: 600; text-decoration: none }
.form-consent a:hover { text-decoration: underline }

/* On dark CTA backgrounds (PDP) */
.blf-form .form-consent,
.breyn-lead-form .form-consent { color: rgba(255,255,255,.7) }
.blf-form .form-consent a,
.breyn-lead-form .form-consent a { color: var(--cyan) }
.breyn-lead-form .form-consent input[type=checkbox] { accent-color: var(--cyan) }

/* On light card backgrounds (gov-form, generic forms) */
.gov-form .form-consent,
.form-consent--light { color: var(--ink2) }
.gov-form .form-consent a,
.form-consent--light a { color: var(--cyan) }

/* On dark backgrounds (DokaShow) */
.form-consent--dark { color: rgba(255,255,255,.7) }
.form-consent--dark a { color: var(--cyan) }

/* ── Cookie consent banner ─────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 9000;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
  font-size: 14px;
  line-height: 1.55;
  max-width: 980px;
  margin: 0 auto;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s ease-out, opacity .35s ease-out;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-text { flex: 1; min-width: 240px }
.cookie-banner-text strong { display: block; font-family: var(--display); font-weight: 900; font-size: 15px; margin-bottom: 4px; letter-spacing: -.01em }
.cookie-banner-text a { color: var(--cyan); font-weight: 600; text-decoration: none }
.cookie-banner-text a:hover { text-decoration: underline }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0 }
.cookie-banner-btn {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s;
}
.cookie-banner-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15,175,212,.35) }
.cookie-banner-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
}
.cookie-banner-btn--ghost:hover { border-color: var(--cyan); transform: none; box-shadow: none }

@media (max-width: 640px) {
  .cookie-banner { padding: 16px; bottom: 12px; left: 12px; right: 12px; gap: 12px }
  .cookie-banner-actions { width: 100%; justify-content: flex-end }
  .cookie-banner-text strong { font-size: 14px }
}

/* ── Copy phone trigger + toast ─────────────────── */
[data-copy-phone] {
  cursor: copy;
  position: relative;
  user-select: none;
}
[data-copy-phone]:hover { opacity: .85 }
[data-copy-phone]::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 6px;
  vertical-align: -2px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='9' y='9' width='13' height='13' rx='2' ry='2'/><path d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='9' y='9' width='13' height='13' rx='2' ry='2'/><path d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/></svg>") center/contain no-repeat;
  opacity: .5;
  flex-shrink: 0;
  transition: opacity .15s;
}
[data-copy-phone]:hover::after { opacity: 1 }

.copy-phone-toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 12px);
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease;
}
.copy-phone-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Honeypot — невидимое поле для отлова ботов */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ═══════════════════════════════════════════════
   SCROLL EFFECTS — кнопка наверх, прогресс, fade-in
   ═══════════════════════════════════════════════ */

/* — Кнопка «Наверх» — */
.scroll-top {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .15s;
  box-shadow: 0 4px 14px rgba(10,11,20,.18);
}
.scroll-top.is-visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.scroll-top:hover {
  background: var(--cyan);
  transform: translateY(-2px);
}
.scroll-top:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* — Прогресс чтения статьи — */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 199;
  background: transparent;
  pointer-events: none;
}
.reading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .08s linear;
}

/* — Fade-in появление блоков — */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════
   УНИФИЦИРОВАННЫЙ HOVER КАРТОЧЕК (#14)
   ═══════════════════════════════════════════════ */
.product-card,
.blog-card,
.kit-item,
.feature-card,
.use-card,
.review-card,
.trust-card,
.pricing-card,
.fw-card,
.recent-card,
.quick-card,
.format-card,
.event-format-card {
  transition: transform .22s cubic-bezier(.2,.7,.3,1),
              box-shadow .22s ease,
              border-color .22s ease;
}
.product-card:hover,
.blog-card:hover,
.kit-item:hover,
.feature-card:hover,
.use-card:hover,
.review-card:hover,
.trust-card:hover,
.pricing-card:hover,
.fw-card:hover,
.recent-card:hover,
.quick-card:hover,
.format-card:hover,
.event-format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10,11,20,.10);
}

/* мобильные: уменьшить движение */
@media (max-width: 760px) {
  .scroll-top { bottom: 80px; right: 16px; width: 42px; height: 42px }
  .product-card:hover, .blog-card:hover, .kit-item:hover,
  .feature-card:hover, .use-card:hover, .review-card:hover,
  .trust-card:hover, .pricing-card:hover, .fw-card:hover,
  .recent-card:hover, .quick-card:hover, .format-card:hover,
  .event-format-card:hover { transform: none }
}

/* Source: css/deco.css */
/* ═══════════════════════════════════════════════
   DokaLab — Decorative rings system
   Concentric cyan + magenta circles from the logo
   ═══════════════════════════════════════════════ */

/* ── SVG ring definitions ─────────────────────── */
:root {
  --deco-cyan: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Ccircle cx='120' cy='120' r='114' stroke='%230FAFD4' stroke-width='1'/%3E%3Ccircle cx='120' cy='120' r='86' stroke='%230FAFD4' stroke-width='1.3'/%3E%3Ccircle cx='120' cy='120' r='58' stroke='%230FAFD4' stroke-width='1.6'/%3E%3Ccircle cx='120' cy='120' r='30' stroke='%230FAFD4' stroke-width='2'/%3E%3C/svg%3E");
  --deco-magenta: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Ccircle cx='120' cy='120' r='114' stroke='%23C02E8A' stroke-width='1'/%3E%3Ccircle cx='120' cy='120' r='86' stroke='%23C02E8A' stroke-width='1.3'/%3E%3Ccircle cx='120' cy='120' r='58' stroke='%23C02E8A' stroke-width='1.6'/%3E%3Ccircle cx='120' cy='120' r='30' stroke='%23C02E8A' stroke-width='2'/%3E%3C/svg%3E");
  --deco-logo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 200' fill='none'%3E%3Ccircle cx='110' cy='100' r='96' stroke='%230FAFD4' stroke-width='1'/%3E%3Ccircle cx='110' cy='100' r='72' stroke='%230FAFD4' stroke-width='1.3'/%3E%3Ccircle cx='110' cy='100' r='48' stroke='%230FAFD4' stroke-width='1.6'/%3E%3Ccircle cx='110' cy='100' r='24' stroke='%230FAFD4' stroke-width='2'/%3E%3Ccircle cx='250' cy='100' r='96' stroke='%23C02E8A' stroke-width='1'/%3E%3Ccircle cx='250' cy='100' r='72' stroke='%23C02E8A' stroke-width='1.3'/%3E%3Ccircle cx='250' cy='100' r='48' stroke='%23C02E8A' stroke-width='1.6'/%3E%3Ccircle cx='250' cy='100' r='24' stroke='%23C02E8A' stroke-width='2'/%3E%3C/svg%3E");
}


/* ═══════════════════════════════════════════════
   СЕКЦИИ — чередующийся рисунок колец
   ═══════════════════════════════════════════════ */

/* Белые секции: cyan-кольцо справа сверху */
.section:not(.section-alt):not(.section-alt2)::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 440px; height: 440px;
  background: var(--deco-cyan) no-repeat center / contain;
  opacity: .09;
  pointer-events: none; z-index: 0;
}

/* Светлые секции: magenta снизу слева */
.section-alt::after {
  content: '';
  position: absolute; bottom: -110px; left: -110px;
  width: 400px; height: 400px;
  background: var(--deco-magenta) no-repeat center / contain;
  opacity: .1;
  pointer-events: none; z-index: 0;
}

/* Дополнительное cyan сверху справа в .section-alt */
.section-alt::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--deco-cyan) no-repeat center / contain;
  opacity: .06;
  pointer-events: none; z-index: 0;
}


/* ═══════════════════════════════════════════════
   HERO SECTIONS — крупные кольца логотипа
   ═══════════════════════════════════════════════ */

.hero::before,
.breyn-hero::before,
.aud-hero::before,
.info-hero::before,
.cat-hero::before,
.pricing-hero::before,
.rental-hero::before {
  content: '';
  position: absolute; top: -160px; right: -160px;
  width: 680px; height: 680px;
  background: var(--deco-logo) no-repeat center / contain;
  opacity: .08;
  pointer-events: none; z-index: 0;
}

/* Второе кольцо — слева снизу */
.hero::after,
.breyn-hero::after {
  content: '';
  position: absolute; bottom: -140px; left: -140px;
  width: 480px; height: 480px;
  background: var(--deco-magenta) no-repeat center / contain;
  opacity: .07;
  pointer-events: none; z-index: 0;
}


/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */

.cta-section {
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 520px; height: 520px;
  background: var(--deco-cyan) no-repeat center / contain;
  opacity: .13;
  pointer-events: none; z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 460px; height: 460px;
  background: var(--deco-magenta) no-repeat center / contain;
  opacity: .13;
  pointer-events: none; z-index: 0;
}
.cta-section > .container { position: relative; z-index: 1 }


/* ═══════════════════════════════════════════════
   FAQ / COMING SOON
   ═══════════════════════════════════════════════ */

.faq {
  position: relative; overflow: hidden;
}
.faq::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: var(--deco-cyan) no-repeat center / contain;
  opacity: .08;
  pointer-events: none; z-index: 0;
}

.coming-soon {
  position: relative; overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute; bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 640px;
  background: var(--deco-logo) no-repeat center / contain;
  opacity: .09;
  pointer-events: none; z-index: 0;
}


/* ═══════════════════════════════════════════════
   EYEBROW — иконка кольца перед текстом
   ═══════════════════════════════════════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230FAFD4' stroke-width='1.4'/%3E%3Ccircle cx='8' cy='8' r='4.5' stroke='%230FAFD4' stroke-width='1.4'/%3E%3Ccircle cx='8' cy='8' r='2' stroke='%230FAFD4' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Тёмные секции — трёхцветный eyebrow (логотип) */
.coming-soon .eyebrow::before,
.ds-eyebrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230FAFD4' stroke-width='1.4'/%3E%3Ccircle cx='8' cy='8' r='4.5' stroke='%23C02E8A' stroke-width='1.4'/%3E%3Ccircle cx='8' cy='8' r='2' fill='%23C69010'/%3E%3C/svg%3E");
}


/* ═══════════════════════════════════════════════
   КОНТЕНТ ВСЕГДА ПОВЕРХ ДЕКОРА
   ═══════════════════════════════════════════════ */

.section > .container,
.section-alt > .container,
.faq > .container,
.hero > .container,
.breyn-hero > .container,
.aud-hero > .container,
.info-hero > .container,
.cat-hero > .container {
  position: relative;
  z-index: 1;
}

/* Source: css/header.css */
/* ═══════════════════════════════════════════════
   DokaLab — Unified Header Component
   Overrides default nav styles from components.css
   ═══════════════════════════════════════════════ */

/* ── RESET TOTAL NAV HEIGHT ─────────────────── */
:root {
  --nav-h: 121px;   /* top strip 36px + main nav 85px */
  --nav-strip-h: 36px;
  --nav-main-h: 85px;
}

/* ── TOP CONTACT STRIP ───────────────────────── */
.nav-top-strip {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--nav-strip-h);
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-top-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; width: 100%;
}
.nts-contacts {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.nts-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--ink3); text-decoration: none;
  transition: color .2s; white-space: nowrap;
}
.nts-item:hover { color: var(--cyan) }
.nts-item svg { flex-shrink: 0; opacity: .6 }
.nts-sep { width: 1px; height: 14px; background: var(--border) }
.nts-callback {
  font-size: 11px; font-weight: 600; padding: 5px 14px;
  border-radius: 20px; border: 1.5px solid var(--border);
  background: transparent; color: var(--ink2); cursor: pointer;
  transition: all .2s; white-space: nowrap; line-height: 1;
}
.nts-callback:hover { border-color: var(--cyan); color: var(--cyan) }

/* ── MAIN NAV ────────────────────────────────── */
.nav {
  position: fixed; top: var(--nav-strip-h); left: 0; right: 0;
  z-index: 100;
  height: var(--nav-main-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(10,11,20,.04);
  display: flex; align-items: center;
}

/* Inner wrapper — constrains content to container width */
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  width: 100%;
  display: flex; align-items: center; gap: 0;
  height: 100%;
}
.nav-inner > * { flex-shrink: 0 }

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 17px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink); margin-right: 20px;
}
.nav-logo img { height: 44px; width: auto; display: block }
@media (max-width: 960px) { .nav-logo img { height: 56px } }
@media (max-width: 600px) { .nav-logo img { height: 50px } }

/* Nav links wrapper */
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}

/* Simple links */
.nav-links > a {
  font-size: 13px; font-weight: 500; color: var(--ink3);
  padding: 6px 10px; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links > a:hover { color: var(--ink); background: var(--bg1) }
.nav-links > a[aria-current="page"] {
  background: linear-gradient(135deg, #0FAFD4 0%, #C02E8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── DROPDOWN GROUPS ─────────────────────────── */
.nav-group { position: relative }
.nav-group-btn {
  font-size: 13px; font-weight: 500; color: var(--ink3);
  padding: 6px 10px; border-radius: 8px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-group-btn:hover { color: var(--ink); background: var(--bg1) }
.nav-group-btn svg { transition: transform .2s }
.nav-group--open .nav-group-btn { color: var(--ink); background: var(--bg1) }
.nav-group--open .nav-group-btn svg { transform: rotate(180deg) }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow2);
  z-index: 200;
}
.nav-dropdown--right {
  left: auto; right: 0; transform: translateX(0) translateY(4px);
}
.nav-group--open .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-group--open .nav-dropdown--right {
  transform: translateX(0) translateY(0);
}

.nav-dropdown-section { margin-bottom: 4px }
.nav-dropdown-label {
  font-size: 10px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink4);
  padding: 6px 12px 4px;
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink2);
  padding: 7px 12px; border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--bg1); color: var(--ink) }
.nav-dropdown a[aria-current="page"] {
  background: linear-gradient(135deg, #0FAFD4 0%, #C02E8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-dropdown-sep { height: 1px; background: var(--border); margin: 4px 8px }
.nav-dropdown-badge {
  font-size: 9px; font-weight: 700; padding: 1px 6px;
  border-radius: 4px; background: var(--cyan); color: #fff;
  letter-spacing: .04em;
}
.nav-dropdown-badge--soon { background: var(--bg2); color: var(--ink3) }

/* ── EQUIPMENT CARD DROPDOWN ─────────────────── */
/* Mega-menu: position relative to .nav, not .nav-group */
.nav-group--mega { position: static }

.nav-equip-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  width: auto; min-width: 0;
  max-width: var(--container);
  margin: 0 auto;
  transform: translateY(6px);
}
.nav-group--open .nav-equip-dropdown {
  transform: translateY(0);
}
.nav-equip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  padding: 18px;
}
.nav-equip-card {
  display: flex; flex-direction: column;
  border-radius: 16px; overflow: hidden;
  text-decoration: none;
  transition: background .18s, box-shadow .18s;
  position: relative;
}
.nav-equip-img {
  height: 204px; margin: 10px 10px 0;
  border-radius: 12px; overflow: hidden;
  background: var(--bg1);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  transition: background .3s ease;
}
.nav-equip-img img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  transition: transform .3s ease;
}
.nav-equip-card:hover .nav-equip-img img { transform: scale(1.08) }
.nav-equip-name {
  font-size: 15px; font-weight: 700;
  padding: 10px 12px 4px;
  line-height: 1.3;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  transition: color .18s;
}
.nav-equip-sub {
  font-size: 12px; color: var(--ink3);
  padding: 0 12px 12px; line-height: 1.45;
}

/* ── Brand colour variants ── */
.nav-equip-card--cyan .nav-equip-name  { color: var(--cyan) }
.nav-equip-card--cyan:hover            { box-shadow: 0 0 0 1.5px rgba(15,175,212,.2) }
.nav-equip-card--cyan:hover .nav-equip-img {
  background: linear-gradient(135deg, rgba(15,175,212,.2) 0%, rgba(15,175,212,.05) 100%);
}

.nav-equip-card--magenta .nav-equip-name { color: var(--magenta) }
.nav-equip-card--magenta:hover           { box-shadow: 0 0 0 1.5px rgba(192,46,138,.2) }
.nav-equip-card--magenta:hover .nav-equip-img {
  background: linear-gradient(135deg, rgba(192,46,138,.2) 0%, rgba(192,46,138,.05) 100%);
}

.nav-equip-card--gold .nav-equip-name { color: var(--gold) }
.nav-equip-card--gold:hover           { box-shadow: 0 0 0 1.5px rgba(198,144,16,.25) }
.nav-equip-card--gold:hover .nav-equip-img {
  background: linear-gradient(135deg, rgba(198,144,16,.2) 0%, rgba(198,144,16,.05) 100%);
}

.nav-equip-footer {
  display: flex; gap: 4px;
  padding: 4px 12px 12px;
}
.nav-equip-footer a {
  font-size: 12px; color: var(--cyan); font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: background .15s;
}
.nav-equip-footer a:hover { background: var(--cyan-l) }

/* ── NAV CTA ─────────────────────────────────── */
.nav-cta-wrap {
  display: flex; align-items: center; gap: 8px; margin-left: 12px;
}

.btn-nav-cta {
  display: inline-flex; align-items: center;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--r);
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  background: var(--cyan);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: box-shadow .2s, transform .15s, filter .15s;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 4px 14px rgba(15,175,212,.35), 0 2px 8px rgba(0,0,0,.1);
  transform: translateY(-1px);
}

/* ── BURGER ──────────────────────────────────── */
.nav-burger {
  display: none;
  background: var(--cyan);
  border: none; cursor: pointer;
  width: 48px; height: 48px;
  margin-left: auto;
  border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  position: relative; z-index: 201;
  box-shadow: 0 2px 12px rgba(15,175,212,.3);
  transition: box-shadow .2s, transform .15s, background .15s;
}
.nav-burger:hover {
  box-shadow: 0 4px 18px rgba(15,175,212,.45);
  transform: translateY(-1px);
}
.nav-burger:active { transform: translateY(0) }
.nav-burger span {
  display: block; width: 22px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger.active {
  background: var(--magenta);
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translateY(5.25px) }
.nav-burger.active span:nth-child(2) { opacity: 0 }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5.25px) }

/* ── TELEGRAM FLOAT ──────────────────────────── */
.tg-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--tg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--tg-shadow);
  transition: transform .2s, box-shadow .2s;
}
.tg-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px var(--tg-shadow) }

/* ── MOBILE MENU ─────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  height: 100vh;            /* fallback */
  height: 100dvh;           /* iOS Safari — учитывает URL-бар */
  z-index: 200;
  background:
    radial-gradient(circle at 12% 8%,  rgba(15,175,212,.10) 0%, transparent 45%),
    radial-gradient(circle at 88% 0%,  rgba(192,46,138,.10) 0%, transparent 50%),
    radial-gradient(circle at 50% 105%, rgba(198,144,16,.08) 0%, transparent 55%),
    rgba(255,255,255,.985);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 50px 16px 14px;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto }

/* Декоративные фирменные кольца на фоне */
.nav-mobile::before,
.nav-mobile::after {
  content: ''; position: fixed; pointer-events: none;
  border-radius: 50%;
  z-index: -1;
}
/* Cyan-кольцо сверху-слева */
.nav-mobile::before {
  top: -180px; left: -160px;
  width: 460px; height: 460px;
  border: 2px solid rgba(15,175,212,.18);
  box-shadow:
    inset 0 0 0 30px rgba(15,175,212,.05),
    inset 0 0 0 60px rgba(15,175,212,.10),
    inset 0 0 0 90px rgba(15,175,212,.04);
}
/* Magenta-кольцо снизу-справа */
.nav-mobile::after {
  bottom: -200px; right: -180px;
  width: 520px; height: 520px;
  border: 2px solid rgba(192,46,138,.16);
  box-shadow:
    inset 0 0 0 35px rgba(192,46,138,.05),
    inset 0 0 0 70px rgba(192,46,138,.09),
    inset 0 0 0 105px rgba(192,46,138,.04);
}

/* Close button — fixed so it stays in place when menu scrolls */
.nm-close {
  position: fixed; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); padding: 0;
  z-index: 10;
  transition: all .2s;
}
.nm-close:hover {
  background: linear-gradient(135deg, #0FAFD4 0%, #C02E8A 100%);
  border-color: transparent; color: #fff;
  transform: rotate(90deg);
  box-shadow: 0 4px 14px rgba(15,175,212,.35);
}

/* Top: navigation */
.nm-nav { display: flex; flex-direction: column; gap: 1px; margin-bottom: 10px }
.nm-item {
  position: relative;
  font-family: var(--display); font-size: 15px; font-weight: 700;
  letter-spacing: -.02em; color: var(--ink);
  padding: 8px 14px 8px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
  display: flex; align-items: center;
}
/* Левый акцент-полоска появляется при hover/active */
.nm-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 3px; height: 0; transform: translateY(-50%);
  background: linear-gradient(180deg, #0FAFD4 0%, #C02E8A 100%);
  border-radius: 0 3px 3px 0;
  transition: height .2s ease;
}
.nm-item:hover {
  background: linear-gradient(135deg, rgba(15,175,212,.08) 0%, rgba(192,46,138,.05) 100%);
  border-color: rgba(15,175,212,.2);
}
.nm-item:hover::before { height: 70% }

.nm-item[aria-current="page"] {
  background: linear-gradient(135deg, rgba(15,175,212,.12) 0%, rgba(192,46,138,.08) 100%);
  border-color: rgba(15,175,212,.25);
  background-clip: padding-box;
}
.nm-item[aria-current="page"]::before { height: 70% }
.nm-item[aria-current="page"]::after {
  content: ''; flex: 1; margin-left: auto;
  background: linear-gradient(135deg, #0FAFD4 0%, #C02E8A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nm-item[aria-current="page"] {
  background-image:
    linear-gradient(135deg, #0FAFD4 0%, #C02E8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Bottom: contacts + callback button */
.nm-bottom {
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.nm-bottom::before {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,175,212,.5), rgba(192,46,138,.5), transparent);
}
.nm-contacts { display: flex; flex-direction: column; gap: 0 }
.nm-contact {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink2);
  padding: 5px 10px; border-radius: 6px;
  border: 1px solid transparent;
  transition: all .15s;
}
.nm-contact:hover {
  background: rgba(15,175,212,.06);
  border-color: rgba(15,175,212,.2);
  color: var(--ink);
}
.nm-contact:hover svg { color: var(--magenta); opacity: 1 }
.nm-contact svg { flex-shrink: 0; opacity: .7; color: var(--cyan); transition: color .2s, opacity .2s }
.nm-contact span { font-weight: 600; display: flex; flex-direction: column; gap: 1px; line-height: 1.2 }
.nm-contact small {
  font-size: 11px; font-weight: 400; color: var(--ink3);
  letter-spacing: .01em;
}

/* Callback button — solid verified-green */
.nm-callback-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 10px;
  border: none; border-radius: var(--r);
  font-family: var(--body); font-size: 13px; font-weight: 700;
  color: #fff; cursor: pointer;
  background: var(--green);
  box-shadow: 0 4px 14px rgba(11,110,64,.25);
  transition: box-shadow .2s, transform .15s, filter .15s;
}
.nm-callback-btn:hover, .nm-callback-btn:active {
  filter: brightness(1.1);
  box-shadow: 0 6px 18px rgba(11,110,64,.3);
  transform: translateY(-1px);
}
.nm-callback-btn svg { stroke: #fff }

/* ── CALLBACK MODAL ──────────────────────────── */
.callback-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,11,20,.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  padding: 20px;
}
.callback-overlay.open { opacity: 1; pointer-events: auto }
.callback-modal {
  background: #fff; border-radius: var(--r-2xl);
  padding: 36px 32px; max-width: 420px; width: 100%;
  box-shadow: 0 24px 64px rgba(10,11,20,.18);
  transform: translateY(12px);
  transition: transform .25s;
  position: relative;
}
.callback-overlay.open .callback-modal { transform: translateY(0) }
.callback-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg1); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink3); transition: background .2s;
}
.callback-modal-close:hover { background: var(--bg2) }
.callback-modal-title {
  font-family: var(--display); font-size: 22px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 6px;
}
.callback-modal-sub { font-size: 14px; color: var(--ink3); margin-bottom: 22px }
.callback-field { margin-bottom: 12px }
.callback-field label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--ink2); margin-bottom: 5px;
}
.callback-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 16px; font-family: var(--body); color: var(--ink);
  background: var(--bg1); outline: none; transition: border-color .2s;
}
.callback-input:focus { border-color: var(--cyan); background: #fff }
.callback-submit { width: 100%; margin-top: 6px; font-size: 15px; padding: 14px }
.callback-note { font-size: 12px; color: var(--ink3); text-align: center; margin-top: 10px }
.callback-success { text-align: center; padding: 12px 0 }
.callback-success-icon { font-size: 48px; margin-bottom: 12px; display: block }
.callback-success-title {
  font-family: var(--display); font-size: 20px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 8px;
}
.callback-success-sub { font-size: 14px; color: var(--ink2); line-height: 1.6 }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .nav-links > a, .nav-group-btn { padding: 6px 7px; font-size: 12px }
}
@media (max-width: 960px) {
  :root {
    --nav-main-h: 92px;
    --nav-h: 128px;        /* strip 36 + main 92 */
  }
  .nav-links { display: none }
  .nav-cta-wrap { display: none }
  .nav-burger { display: flex }
  .nav-mobile { display: flex }
  .nav-inner { padding: 0 16px }
  .nav-logo { margin-right: 0 }
  .nts-contacts { gap: 12px }
  .nts-item { font-size: 13px; font-weight: 500 }
  .nts-item svg { width: 13px; height: 13px; opacity: .75 }
  .nts-sep { height: 14px }
}
@media (max-width: 600px) {
  :root {
    --nav-main-h: 84px;
    --nav-h: 120px;
  }
  .nav-top-strip .container { gap: 6px; justify-content: center }
  .nav-inner { padding: 0 12px }
  .nav-burger { width: 44px; height: 44px }
  .nts-callback { display: none }
  .nts-contacts { gap: 10px; flex-wrap: nowrap; justify-content: center; width: 100% }
  .nts-item { font-size: 12px; font-weight: 500; gap: 4px }
  .nts-item svg { width: 11px; height: 11px; opacity: .75 }
  /* На очень узких экранах email скрывается, остаются 2 телефона */
  .tg-float { width: 46px; height: 46px; bottom: 20px; right: 20px }
  .callback-modal { padding: 28px 20px }
}
@media (max-width: 600px) {
  /* 2 телефона + email не помещаются в одну строку на большинстве
     телефонов (390-430px) при принудительном nowrap выше — прячем email */
  .nts-contacts .nts-item:nth-child(5),
  .nts-contacts .nts-sep:nth-child(4) { display: none }
}
.nav-cube-link { color: var(--gold) !important; font-weight: 600 }
.nav-cube-link:hover { color: #FFD700 !important }

/* ── Skip-link для accessibility ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  background: var(--cyan);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Source: css/pages/home.css */
/* ═══════════════════════════════════════════════
   DokaLab — Homepage Styles (home.css)
   Hero, hero card, trust strip layout
   ═══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 24px) 0 110px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
@media (max-width: 960px) {
  .hero { padding: calc(var(--nav-h) + 16px) 0 64px }
}
.hero-rings {
  position: absolute; top: -40px; right: -80px;
  opacity: .06; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: var(--green); background: var(--green-l);
  border: 1px solid rgba(11,110,64,.2);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 28px;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900; letter-spacing: -.03em;
  line-height: 1.05; margin-bottom: 28px; color: var(--ink);
}
.hero-sub {
  font-size: 17px; color: var(--ink2);
  line-height: 1.7; max-width: 500px; margin-bottom: 32px;
}
.hero-sub strong { color: var(--ink); font-weight: 500 }
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px }
.hero-right {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

/* ── Hero card (live game preview) ── */
.hero-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow2);
  animation: floatY 5s ease-in-out infinite;
  max-width: 420px; width: 100%;
}
.hc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.hc-logo {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--display); font-size: 13px; font-weight: 900; color: var(--ink);
}
.hc-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; color: var(--green);
}
.hc-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: fadeUp 1.2s ease-in-out infinite alternate;
}
.hc-question {
  background: var(--bg1); border-radius: 12px;
  padding: 14px; margin-bottom: 12px;
}
.hc-q-text {
  font-family: var(--display); font-size: 13px; font-weight: 900;
  letter-spacing: -.01em; margin-bottom: 10px;
  line-height: 1.3; color: var(--ink);
}
.hc-timer { display: flex; align-items: center; gap: 8px; margin-bottom: 10px }
.hc-timer-bar {
  flex: 1; height: 4px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.hc-timer-fill {
  height: 100%; width: 55%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 2px;
}
.hc-timer-num {
  font-size: 12px; font-weight: 500; color: var(--cyan);
  font-family: var(--body);
}
.hc-answers { display: grid; grid-template-columns: 1fr 1fr; gap: 7px }
.hc-ans {
  padding: 9px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 500; text-align: center;
}
.hc-ans--a { background: #FEECEC; color: #9B1C1C; border: 1px solid rgba(155,28,28,.15) }
.hc-ans--b { background: #EBF5FF; color: #1E4B91; border: 1px solid rgba(30,75,145,.15) }
.hc-ans--c { background: #FFFBEB; color: #78350F; border: 1px solid rgba(120,53,15,.15) }
.hc-ans--d { background: #ECFDF5; color: #065F46; border: 1px solid rgba(6,95,70,.15) }
.hc-lb {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hc-lb-title {
  font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink4); margin-bottom: 8px;
}
.hc-lb-row {
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
}
.hc-lb-pos { font-size: 14px; min-width: 18px }
.hc-lb-name { font-size: 12px; flex: 1; color: var(--ink2) }
.hc-lb-bar-wrap {
  width: 52px; height: 3px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.hc-lb-bar { height: 100%; border-radius: 2px }
.hc-lb-pts { font-size: 12px; font-weight: 500; color: var(--cyan) }

/* ═══ Hero slider (системы DOKA) ═══ */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}
.hero-slider-track {
  display: flex;
  width: 100%;
  transition: transform .5s cubic-bezier(.4,.0,.2,1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
}
.hero-slide-img {
  position: relative;
  width: 100%;
  height: 320px;
  background: transparent;
  overflow: hidden;
}
/* ── img-ph: изображение перекрывает весь блок ── */
.hero-slide-img .img-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
}

/* Реальное фото: перекрывает placeholder целиком */
.hero-slide-img .img-ph img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
  transition: opacity .3s;
}
/* Фото не загрузилось — скрываем, показываем описание */
.hero-slide-img .img-ph img.no-photo { display: none }

/* Описание (placeholder-текст) — показывается когда нет фото */
.hero-slide-img .img-ph-desc {
  position: relative; z-index: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  text-align: center;
  padding: 16px 20px;
  font-size: 12px; color: var(--ink3); line-height: 1.5;
}
.hero-slide-img .img-ph-desc strong {
  display: block;
  font-family: var(--display);
  font-size: 15px; font-weight: 900;
  letter-spacing: -.01em; color: var(--ink2);
  margin-bottom: 2px;
}
/* Иконка-заглушка (опционально) */
.hero-slide-img .img-ph-desc::before {
  content: '📷';
  font-size: 28px; display: block; margin-bottom: 8px; opacity: .35;
}
.hero-slide-img .img-ph-dim { display: none }
.hero-slide-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--bg);
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--ink2);
  border: 1px solid var(--border);
  z-index: 2;
}
.hero-slide-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: 6px;
  z-index: 2;
}
.hero-slide-body {
  padding: 18px 20px 52px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.hero-slide-name {
  font-family: var(--display);
  font-size: 22px; font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.hero-slide-desc {
  font-size: 13.5px; color: var(--ink2);
  line-height: 1.55; margin-bottom: 14px;
  min-height: 42px;
}
.hero-slide-specs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.hero-slide-spec {
  font-size: 11px; font-weight: 500;
  background: var(--bg1);
  border: 1px solid var(--border);
  color: var(--ink2);
  padding: 3px 9px;
  border-radius: 6px;
}
.hero-slide-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.hero-slide-price {
  font-family: var(--display);
  font-size: 18px; font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hero-slide-price small {
  font-family: var(--body);
  font-size: 11px; font-weight: 400;
  color: var(--ink3);
  letter-spacing: 0;
}
/* Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.hero-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border2);
  border: 0; padding: 0; cursor: pointer;
  transition: background .2s, width .2s;
}
.hero-slider-dot.is-active {
  width: 22px; border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}
.hero-slider-dot:hover { background: var(--ink3) }
.hero-slider-dot.is-active:hover { background: linear-gradient(90deg, var(--cyan), var(--magenta)) }
.hero-slider-arrow {
  position: absolute;
  top: 120px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  color: var(--ink); font-size: 22px; line-height: 1;
  z-index: 3;
  transition: background .2s, transform .2s;
}
.hero-slider-arrow:hover { background: #fff; transform: scale(1.08) }
.hero-slider-arrow--prev { left: 12px }
.hero-slider-arrow--next { right: 12px }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr }
  .hero-right { display: none }
}

/* ═══════════════════════════════════════════════
   ABOUT DOKALAB — стилизованное фото
   ═══════════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Обёртка с декором */
.about-photo-wrap {
  position: relative;
  /* отступ чтобы бейджи не вылезали за пределы блока */
  padding: 20px 20px 20px 20px;
}

/* Декоративное кольцо за фото */
.about-deco-ring {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 260px; height: 260px;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}
.about-deco-ring svg { width: 100%; height: 100%; display: block }

/* Основное фото */
.about-photo {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(10,11,20,.08),
    0 16px 48px rgba(10,11,20,.10);
  z-index: 1;
  margin: 0;
  /* тонкая декоративная рамка */
  outline: 3px solid rgba(15,175,212,.12);
  outline-offset: 4px;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Placeholder когда нет фото */
.about-photo.no-photo img { display: none }
.about-photo-ph {
  display: none;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--bg1), var(--bg2));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink3);
}
.about-photo.no-photo .about-photo-ph { display: flex }

/* Плавающие бейджи */
.about-badge {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow2);
  text-align: center;
  min-width: 84px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
/* Бейдж: верхний левый */
.about-badge--tl {
  top: 8px; left: 8px;
  transform: translateX(-30%) translateY(-20%);
}
/* Бейдж: нижний правый */
.about-badge--br {
  bottom: 8px; right: 8px;
  transform: translateX(20%) translateY(20%);
}
.ab-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 2px;
}
.ab-label {
  font-size: 11px;
  color: var(--ink3);
  line-height: 1.35;
}

/* Адаптив */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px }
  .about-badge--tl { transform: translateX(-10%) translateY(-10%) }
  .about-badge--br { transform: translateX(10%) translateY(10%) }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  position: relative;
}
.gallery-item--wide { grid-column: span 2 }
.gallery-item--full { grid-column: 1 / -1; height: 320px }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.05) }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px }
  .gallery-item--wide { grid-column: span 1 }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px }
}

/* ════════════ LOCKOUT HERO (главная, направление A) ════════════ */
.lh {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 44px) 0 84px;
  background:
    radial-gradient(ellipse at 80% 36%, rgba(15,175,212,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(192,46,138,.15) 0%, transparent 50%),
    linear-gradient(155deg, #07101f 0%, #0c0f24 52%, #190821 100%);
}
.lh-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center }

.lh-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 22px;
}
.lh-eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(15,175,212,.18), 0 0 12px var(--cyan) }
.lh-h1 { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 5.6vw, 74px); line-height: .98; letter-spacing: -.04em; color: #fff; margin-bottom: 22px }
.lh-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.62); max-width: 470px; margin-bottom: 30px }
.lh-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px }
.lh-btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.18) }
.lh-btn-ghost:hover { background: rgba(255,255,255,.14) }
.lh-chips { display: flex; flex-wrap: wrap; gap: 10px }
.lh-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.78) }
.lh-chip span { color: var(--cyan); font-weight: 800 }

 .lh-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100% }
.lh-product {
  position: relative; width: 100%; max-width: 470px;
  background: linear-gradient(180deg, #fff 0%, #eef3fb 100%);
  border: 1px solid rgba(255,255,255,.5); border-radius: 28px;
  padding: 24px 24px 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(15,175,212,.18), 0 0 70px rgba(15,175,212,.22);
}
.lh-product-img { width: 100%; height: auto; display: block; border-radius: 12px }
.lh-product-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(7,16,31,.9); color: #fff;
  font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .03em;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.lh-product-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan) }
.lh-product-foot { display: flex; justify-content: space-around; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border) }
.lh-product-feat { text-align: center; line-height: 1.15 }
.lh-product-feat b { display: block; font-family: var(--display); font-size: 19px; font-weight: 900; color: var(--ink); letter-spacing: -.02em }
.lh-product-feat span { font-size: 12px; color: var(--ink3) }
.lh-stage-cap { font-size: 13px; color: rgba(255,255,255,.45); text-align: center }

@media (max-width: 920px) {
  .lh-inner { grid-template-columns: 1fr; gap: 44px; text-align: center }
  .lh-eyebrow, .lh-btns, .lh-chips { justify-content: center }
  .lh-sub { margin-left: auto; margin-right: auto }
  .lh-stage { min-height: 300px }
}
@media (max-width: 480px) {
  .lh-product { max-width: 360px }
}
@media (max-width: 600px) {
  .lh-h1 { font-size: 34px }
  .lh-eyebrow { font-size: 11px; letter-spacing: .05em }
  .lh-btns { flex-direction: column; align-items: stretch }
  .lh-btns .btn { width: 100% }
}

/* Source: css/pages/breyn.css */
/* ═══════════════════════════════════════════════
   DokaLab — /breyn-sistema/ page styles
   ═══════════════════════════════════════════════ */

/* ── BREADCRUMBS ─────────────────────────────── */
.breadcrumbs {
  padding: 14px 0;
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  margin-top: var(--nav-h);
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink3);
}
.breadcrumbs-list li { display: flex; align-items: center; gap: 8px }
.breadcrumbs-list li::after { content: '/'; color: var(--ink4) }
.breadcrumbs-list li:last-child::after { content: '' }
.breadcrumbs-list a { color: var(--ink3); transition: color .2s }
.breadcrumbs-list a:hover { color: var(--cyan) }
.breadcrumbs-list [aria-current] { color: var(--ink); font-weight: 500 }

/* ── BREYN HERO ──────────────────────────────── */
.breyn-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg1) 100%);
}
.breyn-hero-rings {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  opacity: .05;
  pointer-events: none;
}
.breyn-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.breyn-h1 {
  font-family: var(--display);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}
.breyn-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.breyn-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.breyn-hero-desc { font-size: 16px; color: var(--ink2); line-height: 1.7; margin-bottom: 0; max-width: 520px }
.breyn-hero-price {
  font-size: 14px;
  color: var(--ink2);
}
.breyn-hero-price strong { color: var(--ink) }
/* ── HERO MEDIA (image + video) ──────────────── */
.breyn-hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Product image card */
.breyn-product-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #051828 0%, #0d0f24 50%, #1a0820 100%);
  padding: 48px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Glow: cyan слева-сверху */
.breyn-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(15,175,212,.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 80% 75%, rgba(192,46,138,.2) 0%, transparent 65%);
  pointer-events: none;
}
.breyn-product-img-real {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative; z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.5)) drop-shadow(0 0 60px rgba(15,175,212,.15));
  transition: transform .4s ease;
}
.breyn-product-card:hover .breyn-product-img-real {
  transform: translateY(-6px) scale(1.02);
}
/* когда фото нет — показываем SVG-заглушку */
.breyn-product-card.no-photo .breyn-product-img-real { display: none }
.breyn-product-card.no-photo .breyn-product-svg     { display: block }
.breyn-product-svg {
  display: none;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative; z-index: 1;
}
.breyn-product-svg svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Video block */
.breyn-video-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.breyn-video-ph {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0d1f2e 0%, #1a0d2e 100%);
  cursor: pointer;
  transition: filter .2s;
}
.breyn-video-ph:hover { filter: brightness(1.15) }
.breyn-video-play-btn {
  width: 44px; height: 44px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(15,175,212,.4);
  transition: transform .2s;
}
.breyn-video-ph:hover .breyn-video-play-btn { transform: scale(1.08) }
.breyn-video-play-btn svg { margin-left: 2px }
.breyn-video-info { flex: 1 }
.breyn-video-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px }
.breyn-video-sub   { font-size: 11px; color: rgba(255,255,255,.4) }
/* (inline video iframe removed — video now opens in modal) */

/* ── VIDEO MODAL ─────────────────────────────── */
.video-modal-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(7,7,15,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.video-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.video-modal-inner {
  width: 100%; max-width: 900px;
  position: relative;
}
.video-modal-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.video-modal-close:hover { background: rgba(255,255,255,.22) }
.video-modal-close:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px }
.video-modal-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-xl); overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.video-modal-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-modal-caption {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: rgba(255,255,255,.4);
}

/* ── SEO TEXT improvements ───────────────────── */
.seo-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.seo-callout {
  background: linear-gradient(135deg, var(--cyan-l), rgba(15,175,212,.05));
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
}
.seo-callout strong { color: var(--ink) }

/* ── SEO TEXT BLOCK ──────────────────────────── */
.seo-text-block {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.seo-text-content h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
}
.seo-text-content h3 {
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 28px 0 10px;
  color: var(--ink);
}
.seo-text-content p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.seo-list {
  margin: 10px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-list li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}
.seo-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 13px;
}

.seo-aside-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.seo-aside-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 16px;
}
.seo-fact {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.seo-fact:last-of-type { border-bottom: none; margin-bottom: 4px }
.seo-fact-val {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--cyan);
  min-width: 60px;
}
.seo-fact-label { font-size: 13px; color: var(--ink2) }

/* ── VARIANTS GRID ───────────────────────────── */
.variants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.variant-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .2s, box-shadow .2s;
}
.variant-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow2);
}
.variant-card--pro {
  border-color: var(--cyan);
  background: linear-gradient(160deg, var(--cyan-l), var(--bg));
  position: relative;
}
.variant-img {
  width: 100%; height: 220px;
  border-radius: 12px; overflow: hidden;
  background: var(--bg1);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.variant-img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 16px;
}
.variant-card--pro .variant-img { background: rgba(15,175,212,.08) }
.variant-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg1);
  color: var(--ink3);
  margin-bottom: 14px;
  align-self: flex-start;
}
.variant-badge--pro {
  background: var(--cyan);
  color: #fff;
}
.variant-header { margin-bottom: 20px }
.variant-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 4px;
}
.variant-subtitle { font-size: 14px; color: var(--ink3); margin-bottom: 10px }
.variant-price { font-size: 14px; color: var(--ink2) }
.variant-price strong { font-size: 22px; color: var(--ink); font-family: var(--display); font-weight: 900; letter-spacing: -.02em }

.variant-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  flex: 1;
}
.variant-features li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.vf-yes { color: var(--ink2) }
.vf-yes::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700 }
.vf-no { color: var(--ink4) }
.vf-no::before { content: '–'; position: absolute; left: 0; color: var(--ink4) }

/* ── SPECS GRID ──────────────────────────────── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.spec-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.spec-card:hover { border-color: var(--cyan); box-shadow: var(--shadow) }
.spec-icon { font-size: 28px; margin-bottom: 10px; display: block }
.spec-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px;
}
.spec-val {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.spec-desc { font-size: 13px; color: var(--ink2); line-height: 1.55 }

/* ── MODES GRID ──────────────────────────────── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.mode-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color .2s;
}
.mode-card:hover { border-color: var(--cyan) }
.mode-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--bg2);
  line-height: 1;
  margin-bottom: 12px;
}
.mode-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.mode-desc { font-size: 14px; color: var(--ink2); line-height: 1.65; margin-bottom: 14px }
.mode-for {
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  background: var(--cyan-l);
  border-radius: 6px;
  padding: 5px 10px;
  display: inline-block;
}

/* ── PRICE TABLE ─────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 20px;
  background: var(--bg);
}
.price-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink3);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink2);
  vertical-align: middle;
}
.price-table tbody tr:hover td { background: var(--bg1) }
.price-table .hl-row td { background: var(--bg1) }
.price-table .hl-row:hover td { background: var(--bg2) }
.price-table td:nth-child(4),
.price-table td:nth-child(5) { font-size: 15px; color: var(--ink) }
.price-table td:last-child { width: 100px; text-align: center }

.price-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink2);
  background: var(--bg1);
  border-radius: var(--r);
  padding: 14px 18px;
  border: 1px solid var(--border);
}
.price-note a { color: var(--cyan); font-weight: 500 }
.price-note a:hover { text-decoration: underline }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .breyn-hero-inner { grid-template-columns: 1fr; gap: 32px }
  .breyn-hero-media { display: none }   /* скрыть на планшете — показывать только текст */
  .seo-text-block { grid-template-columns: 1fr }
  .seo-aside-card { position: static }
  .variants-grid { grid-template-columns: 1fr }
  .specs-grid { grid-template-columns: repeat(2, 1fr) }
  .modes-grid { grid-template-columns: 1fr }
}
@media (max-width: 600px) {
  .breyn-hero { padding: 32px 0 40px }
  .specs-grid { grid-template-columns: 1fr }
  .price-table { font-size: 12px }
  .price-table th, .price-table td { padding: 10px 10px }
  .price-note { flex-direction: column; gap: 8px }
  .breyn-hero-btns { flex-direction: column }
  .breyn-hero-btns .btn { width: 100%; justify-content: center }
}

/* ═══════════════════════════════════════════════
   APPLE-STYLE PRODUCT OVERVIEW
   ═══════════════════════════════════════════════ */

/* ── Shared atoms ────────────────────────────── */
.ap-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  display: block;
}
.ap-eyebrow--light { color: rgba(255,255,255,.55); }

.ap-grad {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade-up animation */
.ap-fade { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.ap-fade.visible { opacity: 1; transform: none; }
.ap-fade[data-delay="1"] { transition-delay: .1s; }
.ap-fade[data-delay="2"] { transition-delay: .2s; }
.ap-fade[data-delay="3"] { transition-delay: .3s; }
.ap-fade[data-delay="4"] { transition-delay: .4s; }

/* ── A. HIGHLIGHTS GRID ──────────────────────── */
.ap-highlights {
  padding: 100px 0 80px;
  background: #fff;
}
.ap-highlights .ap-h {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 640px;
}
.ap-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ap-card {
  background: var(--bg1);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ap-card--dark {
  background: var(--ink);
  color: #fff;
}
.ap-card--dark .ap-card-val { color: #fff; }
.ap-card--dark p { color: rgba(255,255,255,.6); }
.ap-card--cyan {
  background: var(--cyan);
  color: #fff;
}
.ap-card--cyan .ap-card-val { color: #fff; }
.ap-card--cyan p { color: rgba(255,255,255,.75); }
.ap-card-val {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
.ap-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink2);
  margin-top: 2px;
}
.ap-card--dark .ap-card-name { color: rgba(255,255,255,.5); }
.ap-card--cyan .ap-card-name { color: rgba(255,255,255,.7); }
.ap-card p { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 0; }

/* ── B. STATEMENT — dark ─────────────────────── */
.ap-statement {
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1f2d 40%, #1a0d2e 100%);
  padding: 80px 0 0;
  overflow: hidden;
}
.ap-stmt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}
.ap-stmt-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ap-stmt-img img {
  max-height: 1170px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.55));
}
/* OCTOBUZZY: разметка статемента помечена .u-align-center, чтобы фото кнопки
   было по вертикали по центру. Но .ap-stmt-inner/.ap-stmt-img (align-items:end —
   прижать вниз) из этого же файла грузятся после base.css и при равной
   специфичности перебивали .u-align-center, из-за чего фото уезжало в самый низ.
   Эти селекторы специфичнее (0,0,2,0) и возвращают центрирование. */
.ap-stmt-inner.u-align-center { align-items: center }
.ap-stmt-img.u-align-center { align-items: center }
.ap-stmt-text { text-align: left; align-self: center; padding-bottom: 80px }
.ap-stmt-tag {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: block;
}
.ap-stmt-h {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.ap-stmt-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,.55);
  max-width: 480px;
  line-height: 1.7;
}
.ap-stmt-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.ap-stmt-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 7px 16px;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.ap-stmt-chip span { color: var(--cyan); font-weight: 600 }

/* ── C. SPLIT PHOTO + FEATURES ───────────────── */
.ap-split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.ap-split-photo-img {
  overflow: hidden;
}
.ap-split-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ap-split-photo-content {
  padding: 72px 64px;
  background: var(--bg1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.ap-split-h {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--ink);
}
.ap-split-feats { display: flex; flex-direction: column; gap: 20px; }
.ap-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ap-feat-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.ap-feat strong { font-size: 15px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 2px; }
.ap-feat p { font-size: 13px; color: var(--ink3); margin: 0; }

/* ── D. GIANT STAT ───────────────────────────── */
.ap-bigstat {
  padding: 120px 0;
  text-align: center;
  background: #fff;
}
.ap-bigstat-eye {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
  display: block;
}
.ap-bigstat-num {
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .9;
  background: linear-gradient(135deg, var(--ink) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}
.ap-bigstat-desc {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── E. THREE MODES — dark ───────────────────── */
.ap-modes {
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1f2e 45%, #1a0d2e 100%);
  padding: 100px 0;
}
.ap-modes-h {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 56px;
}
.ap-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ap-mode {
  padding: 40px 36px;
  border-radius: 0;
  position: relative;
}
.ap-mode::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.ap-mode:hover::after { opacity: 1 }

.ap-mode:first-child {
  border-radius: 20px 0 0 20px;
  background: linear-gradient(160deg, rgba(15,175,212,.25) 0%, rgba(15,175,212,.07) 100%);
  border: 1px solid rgba(15,175,212,.25); border-right: none;
}
.ap-mode:first-child::after {
  background: linear-gradient(160deg, rgba(15,175,212,.45) 0%, rgba(15,175,212,.18) 100%);
}

.ap-mode:nth-child(2) {
  background: linear-gradient(160deg, rgba(192,46,138,.25) 0%, rgba(192,46,138,.07) 100%);
  border-top: 1px solid rgba(192,46,138,.25); border-bottom: 1px solid rgba(192,46,138,.25);
}
.ap-mode:nth-child(2)::after {
  background: linear-gradient(160deg, rgba(192,46,138,.45) 0%, rgba(192,46,138,.18) 100%);
}

.ap-mode:last-child {
  border-radius: 0 20px 20px 0;
  background: linear-gradient(160deg, rgba(198,144,16,.25) 0%, rgba(198,144,16,.07) 100%);
  border: 1px solid rgba(198,144,16,.25); border-left: none;
}
.ap-mode:last-child::after {
  background: linear-gradient(160deg, rgba(198,144,16,.45) 0%, rgba(198,144,16,.18) 100%);
}
.ap-mode > * { position: relative; z-index: 1 }
.ap-mode-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.ap-mode:first-child .ap-mode-num  { color: rgba(15,175,212,.4) }
.ap-mode:nth-child(2) .ap-mode-num { color: rgba(192,46,138,.4) }
.ap-mode:last-child .ap-mode-num   { color: rgba(198,144,16,.4) }
.ap-mode-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.ap-mode p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; }

/* ── F. GALLERY ──────────────────────────────── */
.ap-gallery { background: #000; }
.ap-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 240px;
  gap: 3px;
}
.ap-gallery-big { grid-row: span 2; overflow: hidden; }
.ap-gallery-grid > div { overflow: hidden; }
.ap-gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ap-gallery-grid > div:hover img { transform: scale(1.04); }

/* ── CUBE gallery: contain + dark cells ──────── */
.ap-gallery--cube {
  background: linear-gradient(135deg, #040d1a 0%, #090e20 50%, #121008 100%);
}
.ap-gallery--cube .ap-gallery-grid {
  gap: 8px;
  padding: 8px;
}
.ap-gallery--cube .ap-gallery-grid {
  gap: 4px;
  padding: 0;
  grid-template-rows: 450px 360px;
}
.ap-gallery--cube .ap-gallery-grid > div {
  overflow: hidden;
  background: #000;
  border-radius: 0;
  border: none;
  display: block;
  padding: 0;
}
.ap-gallery--cube .ap-gallery-grid img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
  transition: transform .6s ease;
}
.ap-gallery--cube .ap-gallery-grid > div:hover img {
  transform: scale(1.04);
}

/* ── G. COLORS ───────────────────────────────── */
.ap-colors {
  padding: 100px 0;
  background: var(--bg1);
  text-align: center;
}
.ap-colors .ap-h {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.ap-colors-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ap-color-item { text-align: center; }
.ap-color-item img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  transition: transform .25s ease;
}
.ap-color-item:hover img { transform: translateY(-6px) scale(1.06); }
.ap-color-item figcaption {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500;
}
.ap-colors-note {
  font-size: 14px;
  color: var(--ink3);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .ap-cards { grid-template-columns: 1fr 1fr; }
  .ap-split-photo { grid-template-columns: 1fr; min-height: auto; }
  .ap-split-photo-img { height: 340px; }
  .ap-split-photo-content { padding: 48px 40px; }
  .ap-modes-grid { grid-template-columns: 1fr; gap: 2px; }
  .ap-mode:first-child { border-radius: 20px 20px 0 0; }
  .ap-mode:last-child  { border-radius: 0 0 20px 20px; }
  .ap-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .ap-gallery-big { grid-row: span 1; }
}
@media (max-width: 640px) {
  .ap-highlights { padding: 64px 0 48px; }
  .ap-cards { grid-template-columns: 1fr; }
  .ap-statement { padding: 60px 0 0 }
  .ap-stmt-inner { grid-template-columns: 1fr; gap: 40px; align-items: center }
  .ap-stmt-img { order: -1 }
  .ap-stmt-img img { max-height: 320px }
  .ap-stmt-text { text-align: center; padding-bottom: 0 }
  .ap-stmt-chips { justify-content: center }
  .ap-bigstat { padding: 80px 0; }
  .ap-modes { padding: 64px 0; }
  .ap-split-photo-content { padding: 36px 24px; }
  .ap-colors-row { gap: 20px; }
  .ap-color-item img { height: 72px; }
  .ap-gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
}

/* ═══════════════════════════════════════════════
   DOKA STUDIO SECTION
   ═══════════════════════════════════════════════ */
.studio-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1f2e 45%, #1a0d2e 100%);
  padding: 80px 0;
}
.studio-heading {
  margin-bottom: 56px;
}
.studio-heading .studio-pill { margin-bottom: 20px }
.studio-heading .studio-sub { margin-top: 20px; max-width: 680px }
.studio-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 56px; align-items: start;
}
.studio-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(15,175,212,.12); border: 1px solid rgba(15,175,212,.28);
  border-radius: 20px; padding: 6px 16px; margin-bottom: 24px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cyan);
}
.studio-h {
  font-family: var(--display); font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.05;
  color: #fff; margin-bottom: 0;
}
.studio-sub {
  font-size: 16px; color: rgba(255,255,255,.5);
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}
.studio-feats { display: flex; flex-direction: column; gap: 16px }
.studio-feat { display: flex; align-items: flex-start; gap: 14px }
.studio-feat-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(15,175,212,.15); border: 1px solid rgba(15,175,212,.3);
  color: var(--cyan); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.studio-feat-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px }
.studio-feat-desc { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.5 }
.studio-cta {
  margin-top: 36px; display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(15,175,212,.08); border: 1px solid rgba(15,175,212,.2);
  border-radius: var(--r-xl); font-size: 14px; color: rgba(255,255,255,.65);
}
.studio-cta strong { color: #fff }
.studio-screen-wrap { position: relative }
.studio-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(15,175,212,.1);
  background: #12121C;
}
.studio-video-wrap video {
  width: 100%; height: auto;
  display: block;
}
.studio-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28);
  border: none; cursor: pointer;
  transition: background .25s;
  pointer-events: none;
}
.studio-play-btn.hidden { display: none }
.studio-play-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(15,175,212,.5), 0 0 0 8px rgba(15,175,212,.15);
}
.studio-play-icon svg { margin-left: 5px }
.studio-screen {
  background: #12121C; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(15,175,212,.08);
}
.studio-screen-bar {
  background: #1C1C2A; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.s-dot { width: 10px; height: 10px; border-radius: 50% }
.s-dot--r { background: #FF5F57 }
.s-dot--y { background: #FEBC2E }
.s-dot--g { background: #28C840 }
.studio-screen-label {
  flex: 1; text-align: center; font-size: 11px;
  color: rgba(255,255,255,.25); letter-spacing: .04em;
}
.studio-screen-body { padding: 20px }
.studio-screen-q {
  background: rgba(15,175,212,.08); border: 1px solid rgba(15,175,212,.15);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; text-align: center;
}
.studio-screen-q-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 6px;
}
.studio-screen-q-text { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.45 }
.studio-screen-timer {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.studio-timer-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.studio-timer-fill { height: 100%; width: 62%; background: var(--cyan); border-radius: 2px }
.studio-timer-num { font-size: 13px; font-weight: 700; color: var(--cyan); min-width: 28px; text-align: right }
.studio-screen-scores { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px }
.studio-score {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 10px 6px; text-align: center;
}
.studio-score--win { border-color: var(--cyan); background: rgba(15,175,212,.12) }
.studio-score-name { font-size: 9px; color: rgba(255,255,255,.35); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em }
.studio-score-pts { font-family: var(--display); font-size: 22px; font-weight: 900; letter-spacing: -.03em; color: #fff; line-height: 1 }
.studio-score--win .studio-score-pts { color: var(--cyan) }
.studio-score-first {
  font-size: 9px; color: var(--cyan); font-weight: 700; margin-top: 3px; letter-spacing: .04em
}

/* ═══════════════════════════════════════════════
   COMPOSITION SECTION
   ═══════════════════════════════════════════════ */
.composition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px }
#sostav { overflow: visible }
/* overflow:visible выше открывает вылет декоративных колец .section(-alt)::before/::after за экран на мобильном */
#sostav::before, #sostav::after { display: none }

.composition-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  transition: border-color .2s, box-shadow .2s;
}
.composition-card:hover { border-color: var(--cyan); box-shadow: var(--shadow) }
.composition-card--pro {
  border-color: var(--cyan);
  background: linear-gradient(160deg, var(--cyan-l), var(--bg));
}
.composition-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 14px;
  background: var(--bg1); color: var(--ink3); border: 1px solid var(--border);
}
.composition-card--pro .composition-label {
  background: var(--cyan); color: #fff; border-color: var(--cyan);
}
.composition-name {
  font-family: var(--display); font-size: 26px; font-weight: 900;
  letter-spacing: -.03em; color: var(--ink); margin-bottom: 4px;
}
.composition-tagline { font-size: 14px; color: var(--ink3); margin-bottom: 24px }
.composition-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px }
.comp-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg1); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 14px;
  font-size: 14px; color: var(--ink2);
}
.comp-item--new {
  background: rgba(15,175,212,.06); border-color: rgba(15,175,212,.22);
}
.comp-item-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  cursor: zoom-in;
  position: relative; z-index: 1;
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.2,0,.2,1), box-shadow .3s, border-color .2s;
}
.comp-item-icon:hover {
  transform: scale(4);
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  border-color: var(--cyan);
}
.comp-item-icon img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 6px;
  border-radius: 8px;
}
.comp-item-text { flex: 1 }
.comp-item-name { font-weight: 500; color: var(--ink); font-size: 14px }
.comp-item-qty { font-size: 12px; color: var(--ink4) }
.comp-item--new .comp-item-name { color: var(--cyan) }
.composition-price { font-size: 14px; color: var(--ink2) }
.composition-price strong { font-family: var(--display); font-size: 24px; font-weight: 900; letter-spacing: -.02em; color: var(--ink) }

/* Responsive additions */
@media (max-width: 960px) {
  .studio-inner { grid-template-columns: 1fr; gap: 48px }
  .composition-grid { grid-template-columns: 1fr }
  .studio-section { padding: 72px 0 }
}
@media (max-width: 640px) {
  .studio-section { padding: 56px 0 }
  .studio-screen-scores { grid-template-columns: repeat(2, 1fr) }
  .vcs-grid--4 { grid-template-columns: 1fr 1fr; }
  .score-video-btn { font-size: 13px; padding: 9px 16px; }
  .pcalc-section--score .vote-tiers--grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   CONTROL SECTION — способы управления
   ═══════════════════════════════════════════════ */
.control-section {
  background: var(--bg1);
  padding: 100px 0;
}
.control-h {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06;
  color: var(--ink); margin-bottom: 56px;
}
.control-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.control-card {
  border-radius: 24px; overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.control-card:hover { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(15,175,212,.12) }
.control-card--pro { border-color: rgba(15,175,212,.35); background: linear-gradient(160deg, var(--cyan-l), var(--bg)) }
.control-card--pro:hover { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(15,175,212,.18) }

.control-top { padding: 32px 32px 24px }
.control-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
  background: var(--bg1); color: var(--ink3);
  border: 1px solid var(--border);
}
.control-badge--pro {
  background: rgba(15,175,212,.12); color: var(--cyan);
  border-color: rgba(15,175,212,.3);
}
.control-name {
  font-family: var(--display); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.15;
  color: var(--ink); margin-bottom: 14px;
}
.control-desc {
  font-size: 14px; color: var(--ink2); line-height: 1.65;
}
.control-img {
  display: flex; align-items: center; justify-content: center;
  align-self: center;
}
.control-img img {
  width: 100%; height: 420px;
  object-fit: contain;
  display: block;
}
.control-img--screen { align-self: center; overflow: hidden }
.control-img--screen img { width: 100%; max-height: 420px; object-fit: contain; padding: 0 }
.control-feats {
  padding: 24px 32px 32px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.control-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink2); line-height: 1.5;
}
.control-feats li span {
  color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 960px) {
  .control-grid { grid-template-columns: 1fr }
  .control-section { padding: 72px 0 }
}

/* ═══════════════════════════════════════════════
   COLORS SECTION — переливание цветов
   ═══════════════════════════════════════════════ */
.colors-section {
  background: linear-gradient(135deg, #051828 0%, #0d0f24 50%, #1a0820 100%);
  padding: 100px 0;
}
.colors-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.colors-h {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.08;
  color: #fff; margin-bottom: 20px;
}
.colors-desc { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px }
.colors-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px }
.colors-chip {
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  border-radius: 20px; letter-spacing: .03em;
}
.colors-note { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.5 }

.colors-carousel-wrap {
  display: flex; align-items: center; justify-content: center;
}
.colors-carousel {
  position: relative;
  width: 380px; height: 380px;
}
.colors-carousel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: btnColorFade 12s infinite;
}

@keyframes btnColorFade {
  0%    { opacity: 0 }
  5%    { opacity: 1 }
  28%   { opacity: 1 }
  33%   { opacity: 0 }
  100%  { opacity: 0 }
}

@media (max-width: 960px) {
  .colors-inner { grid-template-columns: 1fr; gap: 48px }
  .colors-carousel { width: 280px; height: 280px }
  .colors-section { padding: 72px 0 }
}

/* ═══════════════════════════════════════════════
   PRICE CALCULATOR
   ═══════════════════════════════════════════════ */
.pcalc-section {
  background: var(--bg1);
  padding: 100px 0;
}
.pcalc-header { margin-bottom: 56px }
.pcalc-h {
  font-family: var(--display); font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06;
  color: var(--ink); margin-bottom: 12px;
}
.pcalc-lead { font-size: 16px; color: var(--ink2) }

.pcalc {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; align-items: stretch;
}
.pcalc-left {
  display: flex; flex-direction: column;
}
.pcalc-left .eyebrow { margin-bottom: 8px; }
.pcalc-left .pcalc-h { margin-bottom: 12px; }
.pcalc-left .pcalc-lead { margin-bottom: 40px; }
.pcalc-right {
  display: flex; flex-direction: column;
}
.pcalc-right .pcalc-result {
  flex: 1;
  display: flex; flex-direction: column;
}

/* Steps */
.pcalc-step {
  display: flex; gap: 20px; margin-bottom: 32px;
}
.pcalc-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pcalc-step-body { flex: 1 }
.pcalc-step-label {
  font-size: 14px; font-weight: 600; color: var(--ink2);
  margin-bottom: 14px; letter-spacing: .01em;
}

/* Slider */
.pcalc-slider-wrap { width: 100% }
.pcalc-slider-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; gap: 16px;
}
.pcalc-slider-display { display: flex; align-items: baseline; gap: 6px }
.pcalc-slider-big {
  font-family: var(--display); font-size: 48px; font-weight: 900;
  letter-spacing: -.04em; color: var(--cyan); line-height: 1;
}
.pcalc-slider-unit { font-size: 14px; color: var(--ink3) }
.pcalc-num-wrap { display: flex; align-items: center; gap: 8px }
.pcalc-num-input {
  width: 82px; padding: 8px 8px; border-radius: 10px; text-align: center;
  font-family: var(--display); font-size: 18px; font-weight: 900;
  color: var(--ink); background: var(--bg); border: 1.5px solid var(--border);
  outline: none; transition: border-color .2s;
}
.pcalc-num-input::-webkit-inner-spin-button,
.pcalc-num-input::-webkit-outer-spin-button { opacity: 1; width: 20px }
.pcalc-num-input:focus { border-color: var(--cyan) }
.pcalc-num-label { font-size: 12px; color: var(--ink3) }
.pcalc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px; outline: none; cursor: pointer;
  background: linear-gradient(to right, #0FAFD4 0%, #C02E8A 6%, #D1D5DB 6%);
}
.pcalc-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--cyan), 0 2px 8px rgba(15,175,212,.35);
  cursor: pointer; transition: transform .15s;
}
.pcalc-range::-webkit-slider-thumb:hover { transform: scale(1.12) }
.pcalc-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--cyan); cursor: pointer;
}
.pcalc-slider-marks {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--ink4); margin-top: 8px;
}

/* Count grid */
.pcalc-count-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pcalc-cnt {
  padding: 10px 18px; border-radius: 10px; font-size: 15px; font-weight: 700;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.12);
  cursor: pointer; transition: all .2s; font-family: var(--display);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.pcalc-cnt span { font-size: 9px; font-weight: 400; font-family: var(--body); opacity: .7 }
.pcalc-cnt:hover { border-color: rgba(15,175,212,.5); color: #fff }
.pcalc-cnt.active {
  background: linear-gradient(135deg, rgba(15,175,212,.3), rgba(192,46,138,.2));
  border-color: var(--cyan); color: #fff;
  box-shadow: 0 0 0 1px rgba(15,175,212,.3), 0 4px 20px rgba(15,175,212,.2);
}
.pcalc-cnt--req { opacity: .75 }

/* Version grid */
.pcalc-ver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px }
.pcalc-ver {
  padding: 16px 18px; border-radius: 14px; text-align: left;
  background: var(--bg); border: 1.5px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.pcalc-ver:hover { border-color: var(--cyan) }
.pcalc-ver.active {
  background: linear-gradient(135deg, var(--cyan-l), var(--bg));
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(15,175,212,.2);
}
.pcalc-ver--disabled { opacity: .35; cursor: not-allowed }
.pcalc-ver-name {
  font-family: var(--display); font-size: 16px; font-weight: 900;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 3px;
}
.pcalc-ver-sub { font-size: 12px; color: var(--ink3) }
.pcalc-ver-note {
  font-size: 12px; color: var(--cyan);
  background: var(--cyan-l); border-radius: 8px;
  padding: 8px 12px; border: 1px solid rgba(15,175,212,.2);
}

/* Toggle */
.pcalc-toggle {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
}
.pcalc-toggle input { display: none }
.pcalc-toggle-track {
  width: 48px; height: 26px; border-radius: 13px; flex-shrink: 0;
  background: var(--border2); position: relative;
  transition: background .25s;
}
.pcalc-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: transform .25s;
}
.pcalc-toggle input:checked ~ .pcalc-toggle-track { background: var(--cyan) }
.pcalc-toggle input:checked ~ .pcalc-toggle-track .pcalc-toggle-thumb { transform: translateX(22px) }
.pcalc-toggle-text { font-size: 14px; color: var(--ink2) }
.pcalc-case-detail {
  margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px;
}
.pcalc-case-detail span {
  font-size: 12px; color: var(--ink3);
  background: var(--bg1); border-radius: 6px;
  padding: 4px 10px; border: 1px solid var(--border);
}

/* Result card */
.pcalc-result {
  background: #fff;
  border: 1.5px solid rgba(15,175,212,.2);
  border-radius: 24px; padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 0 0 1px rgba(15,175,212,.06);
}
.pcalc-result .pcalc-cta { margin-top: auto; }
.pcalc-result .pcalc-result-badge {
  background: rgba(15,175,212,.1);
  color: var(--cyan);
  border-color: rgba(15,175,212,.25);
}
.pcalc-result .pcalc-result-badge--pro {
  background: rgba(192,46,138,.1);
  color: var(--magenta);
  border-color: rgba(192,46,138,.3);
}
.pcalc-result .pcalc-result-name { color: var(--ink); }
.pcalc-result .pcalc-result-desc { color: var(--ink2); }
.pcalc-result .pcalc-line { color: var(--ink2); }
.pcalc-result .pcalc-line span:last-child { color: var(--ink); }
.pcalc-result .pcalc-divider { background: var(--border); }
.pcalc-result .pcalc-total-label { color: var(--ink2); }
.pcalc-result .pcalc-total { color: var(--ink); }
.pcalc-result .pcalc-on-request { color: var(--ink2); }
.pcalc-result .pcalc-guarantees { color: var(--ink2); }
.pcalc-result-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
}
.pcalc-result-badge--pro {
  background: rgba(15,175,212,.2); color: var(--cyan); border-color: rgba(15,175,212,.4);
}
.pcalc-result-name {
  font-family: var(--display); font-size: 28px; font-weight: 900;
  letter-spacing: -.03em; color: #fff; margin-bottom: 8px;
}
.pcalc-result-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; margin-bottom: 24px }
.pcalc-breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px }
.pcalc-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: rgba(255,255,255,.55); gap: 12px;
}
.pcalc-line span:last-child { font-weight: 600; color: rgba(255,255,255,.9); white-space: nowrap }
.pcalc-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 16px }
.pcalc-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 20px;
}
.pcalc-total-label { font-size: 13px; color: rgba(255,255,255,.45) }
.pcalc-total {
  font-family: var(--display); font-size: 32px; font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pcalc-on-request {
  font-size: 13px; color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 20px; text-align: center;
}
.pcalc-cta {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%) !important;
  border: none !important; margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(15,175,212,.35);
}
.pcalc-cta:hover { filter: brightness(1.1); transform: translateY(-1px) }
.pcalc-guarantees {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: rgba(255,255,255,.35);
}

@media (max-width: 960px) {
  .pcalc { grid-template-columns: 1fr }
  .pcalc-result { position: static }
  .pcalc-section { padding: 72px 0 }
}
.pcalc-line--formula span:first-child { font-size: 12px; color: rgba(255,255,255,.4); font-family: monospace }

/* ═══════════════════════════════════════════════
   BREYN CTA SECTION — форма захвата
   ═══════════════════════════════════════════════ */
.breyn-cta-section {
  background: linear-gradient(135deg, #051828 0%, #0d0f24 50%, #1a0820 100%);
  padding: 100px 0;
}
.breyn-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.breyn-cta-h {
  font-family: var(--display); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06;
  color: #fff; margin-bottom: 16px;
}
.breyn-cta-desc { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 28px }
.breyn-cta-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px }
.breyn-cta-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.6);
}
.breyn-cta-perks li span { color: var(--cyan); font-weight: 700; flex-shrink: 0 }
.breyn-cta-contacts { display: flex; flex-direction: column; gap: 12px }
.breyn-cta-contact {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: inherit;
  font-size: 15px; color: rgba(255,255,255,.7);
  text-decoration: none; transition: color .2s;
  background: transparent; border: 0; padding: 0; margin: 0;
  text-align: left; cursor: pointer;
  width: fit-content;
}
.breyn-cta-contact:hover { color: #fff }
.breyn-cta-contact[data-copy-phone] { cursor: copy }
.breyn-cta-contact-icon { font-size: 18px; flex-shrink: 0 }
.breyn-cta-contact small { font-size: 11px; color: rgba(255,255,255,.35); display: block }

/* Form */
.breyn-lead-form {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(15,175,212,.25);
  border-radius: 24px; padding: 36px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.blf-field { margin-bottom: 20px }
.blf-field label {
  display: block; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55); margin-bottom: 8px; letter-spacing: .01em;
}
.blf-field label span { color: rgba(255,255,255,.3); font-weight: 400 }
.blf-field input,
.blf-field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.12);
  color: #fff; font-family: var(--body); font-size: 16px;
  outline: none; transition: border-color .2s, background .2s;
  resize: none;
}
.blf-field input::placeholder,
.blf-field textarea::placeholder { color: rgba(255,255,255,.25) }
.blf-field input:focus,
.blf-field textarea:focus {
  border-color: var(--cyan);
  background: rgba(255,255,255,.1);
}
.blf-selection-input {
  cursor: default; color: var(--cyan) !important;
  border-color: rgba(15,175,212,.3) !important;
  background: rgba(15,175,212,.08) !important;
}
.blf-selection-input:empty { color: rgba(255,255,255,.25) !important }
.blf-submit {
  background: var(--cyan);
  border: none; color: #fff; font-weight: 600; margin-bottom: 12px;
  box-shadow: 0 8px 32px rgba(15,175,212,.3);
  transition: filter .2s, transform .2s;
}
.blf-submit:hover { filter: brightness(1.1); transform: translateY(-1px) }
.blf-submit:disabled { opacity: .6; transform: none; cursor: not-allowed }
.blf-legal { font-size: 12px; color: rgba(255,255,255,.25); text-align: center; line-height: 1.5 }
.blf-legal a { color: rgba(255,255,255,.4) }
.blf-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 32px 0; gap: 10px;
}
/* Скрыт по умолчанию: .blf-success имеет display:flex и из-за равной
   специфичности и порядка загрузки перебивал .u-hidden (display:none),
   из-за чего «Заявка отправлена» показывалась до отправки. Этот селектор
   специфичнее (0,0,2,0) и побеждает. JS показывает блок инлайн display:flex. */
.blf-success.u-hidden { display: none }
.blf-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #fff; font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.blf-success-title { font-family: var(--display); font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.02em }
.blf-success-text { font-size: 14px; color: rgba(255,255,255,.5) }

@media (max-width: 960px) {
  .breyn-cta-inner { grid-template-columns: 1fr; gap: 48px }
  .breyn-cta-section { padding: 72px 0 }
}

/* ── CONFIG MODAL ── */
.cfg-modal-overlay {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(5,10,20,.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cfg-modal-overlay.open { opacity: 1; pointer-events: auto }
.cfg-modal-inner {
  background: #0d1020; border: 1.5px solid rgba(15,175,212,.3);
  border-radius: 24px; padding: 36px; width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.cfg-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cfg-modal-close:hover { background: rgba(255,255,255,.16) }
.cfg-modal-title {
  font-family: var(--display); font-size: 20px; font-weight: 900;
  letter-spacing: -.02em; color: #fff; margin-bottom: 28px;
}
.cfg-step { margin-bottom: 24px }
.cfg-label { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px }
.cfg-label strong { color: var(--cyan); font-size: 18px; font-family: var(--display); font-weight: 900 }
.cfg-slider-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px }
.cfg-slider-row .pcalc-range { flex: 1 }
.cfg-ver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px }
.cfg-ver {
  padding: 12px 14px; border-radius: 12px; text-align: left; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  transition: all .2s;
}
.cfg-ver:hover { border-color: rgba(15,175,212,.4) }
.cfg-ver.active { background: rgba(15,175,212,.15); border-color: var(--cyan) }
.cfg-ver--disabled { opacity: .35; cursor: not-allowed }
.cfg-ver-name { font-family: var(--display); font-size: 15px; font-weight: 900; color: #fff; letter-spacing: -.02em }
.cfg-ver-sub { font-size: 11px; color: rgba(255,255,255,.4) }
.cfg-ver-note { font-size: 12px; color: var(--cyan); background: rgba(15,175,212,.1); border-radius: 8px; padding: 7px 10px; border: 1px solid rgba(15,175,212,.2) }
.cfg-result {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.06); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 20px;
  font-size: 14px; color: rgba(255,255,255,.6); gap: 12px;
}
.cfg-result strong { font-family: var(--display); font-size: 20px; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; background: linear-gradient(135deg,var(--cyan),var(--magenta)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.cfg-confirm {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  border: none; color: #fff; font-weight: 600;
  box-shadow: 0 8px 24px rgba(15,175,212,.3);
}
.cfg-confirm:hover { filter: brightness(1.1); transform: translateY(-1px) }
.blf-selection-clickable { cursor: pointer !important }
.blf-selection-clickable:empty::after { content: attr(placeholder); color: rgba(255,255,255,.25) }

.blf-selection-wrap { position: relative }
.blf-selection-actions {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center; gap: 6px;
}
.blf-sel-edit {
  font-size: 12px; font-weight: 500; color: var(--cyan);
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 2px;
  transition: opacity .2s;
}
.blf-sel-edit:hover { opacity: .7 }
.blf-sel-clear {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  color: rgba(255,255,255,.5); font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.blf-sel-clear:hover { background: rgba(255,255,255,.2); color: #fff }

.pcalc-case-wrap {
  display: flex; align-items: center; gap: 16px;
}
.pcalc-case-img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   DOKA CUBE — Dark Hero Override
═══════════════════════════════════════════════ */
.breyn-hero--cube {
  background:
    radial-gradient(ellipse at 68% 55%, rgba(198,144,16,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(15,175,212,.06) 0%, transparent 45%),
    linear-gradient(150deg, #040d1a 0%, #090e20 45%, #121008 100%);
}
.breyn-hero--cube .breyn-hero-rings {
  opacity: .14;
  filter: hue-rotate(20deg);
}
.breyn-hero--cube .breyn-h1 {
  color: #fff;
}
.breyn-hero--cube .grad {
  color: var(--gold);
}
.breyn-hero--cube .breyn-hero-desc {
  color: rgba(255,255,255,.65);
}
.breyn-hero--cube .breyn-hero-price {
  color: rgba(255,255,255,.5);
}
.breyn-hero--cube .breyn-hero-price strong {
  color: var(--gold);
}
.breyn-hero--cube .chip {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.13);
  color: rgba(255,255,255,.8);
}
.breyn-hero--cube .chip-check {
  color: var(--gold);
}
.breyn-hero--cube .eyebrow {
  color: var(--gold);
}
.breyn-hero--cube .breyn-product-caption {
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
}

/* ── CUBE Hero glow on product card ─────────── */
@keyframes cube-glow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.04); }
}
.breyn-hero--cube .breyn-hero-media {
  position: relative;
}
.breyn-hero--cube .breyn-hero-media::before {
  content: '';
  position: absolute;
  inset: -32px;
  background: radial-gradient(ellipse 70% 65% at 50% 50%,
    rgba(198,144,16,.22) 0%,
    rgba(198,144,16,.06) 50%,
    transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: cube-glow-pulse 3.5s ease-in-out infinite;
}
.breyn-hero--cube .breyn-product-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #07090f 0%, #100d06 55%, #09100f 100%);
  box-shadow:
    0 0 0 1px rgba(198,144,16,.18),
    0 0 40px rgba(198,144,16,.14),
    0 40px 80px rgba(0,0,0,.55);
  transition: box-shadow .4s ease;
}
.breyn-hero--cube .breyn-product-card:hover {
  box-shadow:
    0 0 0 1px rgba(198,144,16,.32),
    0 0 60px rgba(198,144,16,.22),
    0 40px 80px rgba(0,0,0,.55);
}
.breyn-hero--cube .breyn-product-card::before {
  background:
    radial-gradient(ellipse 65% 55% at 50% 40%, rgba(198,144,16,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 80%, rgba(15,175,212,.08) 0%, transparent 55%);
}
.breyn-hero--cube .breyn-product-img-real {
  filter:
    drop-shadow(0 0 24px rgba(198,144,16,.55))
    drop-shadow(0 0 8px  rgba(198,144,16,.4))
    drop-shadow(0 20px 40px rgba(0,0,0,.5));
  transition: transform .4s ease, filter .4s ease;
}
.breyn-hero--cube .breyn-product-card:hover .breyn-product-img-real {
  filter:
    drop-shadow(0 0 36px rgba(198,144,16,.75))
    drop-shadow(0 0 12px rgba(198,144,16,.55))
    drop-shadow(0 20px 40px rgba(0,0,0,.5));
}

/* ── CUBE Statement override ─────────────────── */
@keyframes stmt-glow-pulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%       { opacity: .5;  transform: scale(1.06); }
}
.ap-statement--cube .ap-stmt-inner {
  align-items: center;
}
.ap-statement--cube .ap-stmt-text {
  padding-bottom: 0;
  align-self: center;
}
.ap-statement--cube .ap-stmt-img {
  position: relative;
  align-items: center;
}
.ap-statement--cube .ap-stmt-img::before {
  content: '';
  position: absolute;
  inset: -48px;
  background: radial-gradient(ellipse 65% 65% at 50% 52%,
    rgba(29,231,122,.2) 0%,
    rgba(15,175,212,.1) 45%,
    transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  animation: stmt-glow-pulse 4s ease-in-out infinite;
}
.ap-stmt-cube-img {
  position: relative;
  z-index: 1;
  width: 130%;
  max-width: 130%;
  margin-left: -15%;
  filter:
    drop-shadow(0 0 32px rgba(29,231,122,.45))
    drop-shadow(0 0 10px rgba(15,175,212,.35))
    drop-shadow(0 32px 64px rgba(0,0,0,.5));
}
.ap-statement--cube .ap-stmt-tag {
  color: #1de77a;
}
.ap-statement--cube .ap-stmt-chip span {
  color: #1de77a;
}

/* ═══════════════════════════════════════════════
   DOKA VOTE page styles
═══════════════════════════════════════════════ */

/* Hero magenta override */
.breyn-hero--vote {
  background:
    radial-gradient(ellipse at 68% 55%, rgba(192,46,138,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(15,175,212,.06) 0%, transparent 45%),
    linear-gradient(150deg, #130417 0%, #1a0820 45%, #080d1e 100%);
}
.breyn-hero--vote .breyn-hero-rings { opacity: .14; }
.breyn-hero--vote .breyn-h1 { color: #fff; }
.breyn-hero--vote .grad {
  color: var(--magenta);
}
.breyn-hero--vote .breyn-hero-desc { color: rgba(255,255,255,.65); }
.breyn-hero--vote .breyn-hero-price { color: rgba(255,255,255,.5); }
.breyn-hero--vote .breyn-hero-price strong { color: var(--magenta); }
.breyn-hero--vote .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); color: rgba(255,255,255,.8); }
.breyn-hero--vote .chip-check { color: var(--magenta); }
.breyn-hero--vote .eyebrow { color: var(--magenta); }
.breyn-hero--vote .breyn-product-caption { color: rgba(255,255,255,.5); }
.breyn-hero--vote .breyn-product-card { background: linear-gradient(135deg, #140320 0%, #1a0820 60%, #080d1e 100%); box-shadow: 0 0 0 1px rgba(192,46,138,.2), 0 32px 80px rgba(0,0,0,.55); }
.breyn-hero--vote .breyn-product-card::before { background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(192,46,138,.2) 0%, transparent 65%); }
.breyn-hero--vote .breyn-product-img-real { filter: drop-shadow(0 0 24px rgba(192,46,138,.4)) drop-shadow(0 20px 40px rgba(0,0,0,.5)); }

/* Audience grid */
.vote-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.vote-audience-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.vote-audience-card:hover { border-color: var(--magenta); box-shadow: 0 8px 32px rgba(192,46,138,.1); }
.vote-audience-icon { font-size: 28px; margin-bottom: 12px; }
.vote-audience-title { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.vote-audience-desc { font-size: 14px; color: var(--ink2); line-height: 1.65; margin-bottom: 14px; }
.vote-audience-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--magenta); background: rgba(192,46,138,.08); border: 1px solid rgba(192,46,138,.2); border-radius: 20px; padding: 3px 10px; }

/* Statement vote alignment */
.ap-statement--vote { padding: 80px 0; }
.ap-statement--vote .ap-stmt-inner { align-items: center; }
.ap-statement--vote .ap-stmt-text { padding-bottom: 0; align-self: center; }
.ap-statement--vote .ap-stmt-img { align-items: center; justify-content: center; }
.ap-stmt-vote-img {
  width: 100%;
  filter: drop-shadow(0 0 28px rgba(192,46,138,.4)) drop-shadow(0 20px 48px rgba(0,0,0,.45));
}

/* Studio screen mockup */
.studio-screen {
  background: linear-gradient(160deg, #0d0618 0%, #140820 100%);
  border: 1px solid rgba(192,46,138,.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(192,46,138,.1);
}
.studio-screen-bar { display: flex; gap: 6px; padding: 12px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.06); }
.studio-screen-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.studio-screen-body { padding: 24px; }
.vote-bar-demo { display: flex; flex-direction: column; gap: 10px; }
.vote-bar-row { display: flex; align-items: center; gap: 10px; }
.vote-bar-label { width: 16px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); flex-shrink: 0; }
.vote-bar-track { flex: 1; height: 10px; background: rgba(255,255,255,.08); border-radius: 6px; overflow: hidden; }
.vote-bar-fill { height: 100%; border-radius: 6px; transition: width .6s ease; }
.vote-bar-pct { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); width: 36px; text-align: right; flex-shrink: 0; }

/* Modes grid 4-col for vote — card style */
.ap-modes-grid--vote {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ap-modes-grid--vote .ap-mode {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border-radius: 16px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ap-modes-grid--vote .ap-mode::after { display: none; }
.ap-modes-grid--vote .ap-mode:first-child,
.ap-modes-grid--vote .ap-mode:nth-child(2),
.ap-modes-grid--vote .ap-mode:last-child {
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
}
.ap-modes-grid--vote .ap-mode:hover {
  border-color: var(--magenta);
  box-shadow: 0 8px 32px rgba(192,46,138,.1);
  transform: translateY(-2px);
}
.ap-modes-grid--vote .ap-mode:nth-child(even):hover { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(15,175,212,.1); }
.ap-modes-grid--vote .ap-mode-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.ap-modes-grid--vote .ap-mode-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ap-modes-grid--vote .ap-mode-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

/* Composition cards */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.comp-card { background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--r-2xl); padding: 32px; display: flex; flex-direction: column; }
.comp-card--pro { border-color: rgba(192,46,138,.35); position: relative; }
.comp-card-badge { position: absolute; top: -12px; left: 24px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; padding: 4px 14px; border-radius: 20px; }
.comp-card-title { font-family: var(--display); font-size: 24px; font-weight: 900; letter-spacing: -.03em; margin-bottom: 4px; }
.comp-card-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.comp-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

/* Vote composition + specs combined cards */
.vcs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.vcs-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.vcs-card:hover { border-color: rgba(192,46,138,.35); transform: translateY(-3px); }
.vcs-card--opt { border-style: dashed; border-color: rgba(255,255,255,.12); }
.vcs-card--opt:hover { border-color: rgba(192,46,138,.22); transform: none; }
.vcs-photo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 16px;
  overflow: hidden;
}
.vcs-photo--dark { background: rgba(0,0,0,.3); }
.vcs-photo img {
  max-height: 128px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.vcs-receiver-svg { width: 100%; height: 100%; }
.vcs-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.vcs-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  color: rgba(192,46,138,.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.vcs-card--opt .vcs-num { color: rgba(255,255,255,.2); }
.vcs-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vcs-opt-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2px 7px;
}
.vcs-specs { display: flex; flex-direction: column; gap: 6px; }
.vcs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.vcs-row:last-child { border-bottom: none; padding-bottom: 0; }
.vcs-row span:first-child { color: rgba(255,255,255,.4); }
.vcs-row span:last-child { color: rgba(255,255,255,.85); font-weight: 600; text-align: right; }
.vcs-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.vcs-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .vcs-grid { grid-template-columns: repeat(3, 1fr); }
  .vcs-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .breyn-hero--score .breyn-hero-inner { grid-template-columns: 1fr; }
  .breyn-hero--score .breyn-hero-media { display: none; }
}
@media (max-width: 640px) {
  .vcs-grid { grid-template-columns: 1fr 1fr; }
  .vcs-photo { height: 120px; }
}

/* Vote composition (old — keep for fallback) */
.vote-comp-wrap { margin-top: 40px; }
.vote-comp-items { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.vote-comp-item {
  display: grid;
  grid-template-columns: 48px 56px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  transition: background .2s, border-color .2s;
}
.vote-comp-item:hover { background: rgba(192,46,138,.08); border-color: rgba(192,46,138,.25); }
.vote-comp-item--opt { border-style: dashed; border-color: rgba(255,255,255,.12); }
.vote-comp-item--opt:hover { border-color: rgba(192,46,138,.2); }
.vote-comp-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  color: rgba(192,46,138,.5);
  letter-spacing: -.03em;
  line-height: 1;
}
.vote-comp-item--opt .vote-comp-num { color: rgba(255,255,255,.2); font-size: 26px; }
.vote-comp-icon { font-size: 28px; text-align: center; }
.vote-comp-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vote-comp-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }
.vote-comp-opt-tag { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 2px 8px; }
.vote-comp-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Specs */
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.specs-group-title { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--magenta); }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-name { color: var(--ink2); }
.spec-val { font-weight: 600; color: var(--ink); text-align: right; }

/* Vote gallery */
.ap-gallery--vote { background: #000; }

/* Vote FAQ — light clean style */
.faq-section--vote { background: #fff; }
.faq-section--vote .faq-q {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
  font-size: 15px;
}
.faq-section--vote .faq-q:hover { border-color: var(--magenta); background: rgba(192,46,138,.02); filter: none; }
.faq-section--vote .faq-item.open .faq-q {
  border-color: var(--magenta);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--magenta);
  background: rgba(192,46,138,.04);
  filter: none;
}
.faq-section--vote .faq-icon { color: var(--magenta); }
.faq-section--vote .faq-a {
  background: rgba(192,46,138,.03);
  border: 1.5px solid var(--magenta);
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: var(--ink2);
}

/* Vote calculator — light section */
.pcalc-section--vote {
  padding: 120px 0;
  background: var(--bg1);
}
.pcalc-section--vote .pcalc-h { color: var(--ink); }
.pcalc-section--vote .pcalc-lead { color: var(--ink2); }
.pcalc-section--vote .pcalc-step-label { color: var(--ink2); }
.pcalc-section--vote .vote-tier {
  background: var(--bg);
  border-color: var(--border);
  color: var(--ink2);
}
.pcalc-section--vote .vote-tier:hover { border-color: var(--magenta); background: rgba(192,46,138,.04); }
.pcalc-section--vote .vote-tier.active { border-color: var(--magenta); background: rgba(192,46,138,.06); }
.pcalc-section--vote .vote-tier-n { color: var(--ink2); }
.pcalc-section--vote .vote-tier.active .vote-tier-n { color: var(--ink); }
.pcalc-section--vote .vote-tier-price { color: var(--ink); }
.pcalc-section--vote .vote-tier.active .vote-tier-price { color: var(--magenta); }
.pcalc-section--vote .vote-tier-per { color: var(--ink3); }
.pcalc-section--vote .eyebrow { color: var(--magenta); }

/* Vote tiers — grid layout */
.vote-tiers { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.vote-tiers--grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.vote-tier {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  border: 1.5px solid var(--border);
  background: var(--bg);
  border-radius: 10px; padding: 12px 8px; cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.vote-tier:hover { border-color: var(--magenta); background: rgba(192,46,138,.04); transform: translateY(-1px); }
.vote-tier.active { border-color: var(--magenta); background: rgba(192,46,138,.06); }
.vote-tier-n { font-family: var(--display); font-weight: 900; font-size: 18px; color: var(--ink); letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }
.vote-tier.active .vote-tier-n { color: var(--magenta); }
.vote-tier-price { font-size: 11px; font-weight: 600; color: var(--ink2); }
.vote-tier.active .vote-tier-price { color: var(--magenta); }
.vote-tier-per { font-size: 10px; color: var(--ink3); margin-top: 2px; }
.vote-tier--req .vote-tier-n { font-size: 16px; color: var(--ink3); }
.vote-tier--req .vote-tier-price { color: var(--ink3); }
.vote-tier--req:hover { border-color: var(--border); background: var(--bg); transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .vote-audience-grid { grid-template-columns: 1fr 1fr; }
  .ap-modes-grid--vote { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .vote-audience-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   DOKA SCORE page styles
═══════════════════════════════════════════════ */
.breyn-hero--score {
  background:
    radial-gradient(ellipse at 68% 55%, rgba(15,175,212,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(192,46,138,.06) 0%, transparent 45%),
    linear-gradient(150deg, #030e1a 0%, #051828 45%, #090d1e 100%);
}
.breyn-hero--score .breyn-hero-rings { opacity: .14; }
.breyn-hero--score .breyn-h1 { color: #fff; }
.breyn-hero--score .grad {
  color: var(--cyan);
}
.breyn-hero--score .breyn-hero-desc { color: rgba(255,255,255,.65); }
.breyn-hero--score .breyn-hero-price { color: rgba(255,255,255,.5); }
.breyn-hero--score .breyn-hero-price strong { color: var(--cyan); }
.breyn-hero--score .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); color: rgba(255,255,255,.8); }
.breyn-hero--score .chip-check { color: var(--cyan); }
.breyn-hero--score .eyebrow { color: var(--cyan); }
.breyn-hero--score .breyn-product-caption { color: rgba(255,255,255,.5); }
.breyn-hero--score .breyn-product-card {
  background: linear-gradient(135deg, #030e1a 0%, #051828 60%, #0a0d1e 100%);
  box-shadow: 0 0 0 1px rgba(15,175,212,.2), 0 0 40px rgba(15,175,212,.1), 0 40px 80px rgba(0,0,0,.55);
}
.breyn-hero--score .breyn-product-card::before {
  background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(15,175,212,.15) 0%, transparent 65%);
}
.breyn-hero--score .breyn-product-img-real {
  filter: drop-shadow(0 0 24px rgba(15,175,212,.35)) drop-shadow(0 20px 40px rgba(0,0,0,.5));
}

/* Score video button */
.score-video-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  background: linear-gradient(135deg, #0FAFD4 0%, #0a7fa0 100%);
  border: none;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  box-shadow: 0 0 24px rgba(15,175,212,.4), 0 4px 16px rgba(0,0,0,.3);
  transition: box-shadow .25s, transform .2s, filter .25s;
}
.score-video-btn:hover {
  box-shadow: 0 0 40px rgba(15,175,212,.6), 0 4px 20px rgba(0,0,0,.35);
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.score-video-btn-play {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 6px;
}

/* Score audience cards — cyan accent */
.score-audience-card:hover { border-color: var(--cyan) !important; box-shadow: 0 8px 32px rgba(15,175,212,.1) !important; }
.score-audience-card .vote-audience-tag { color: var(--cyan); background: var(--cyan-l); border-color: rgba(15,175,212,.2); }

/* Score statement */
.ap-statement--score { padding: 80px 0; }
.ap-statement--score .ap-stmt-inner { align-items: center; }
.ap-statement--score .ap-stmt-text { padding-bottom: 0; align-self: center; }
.ap-stmt-score-img { width: 100%; filter: drop-shadow(0 0 28px rgba(15,175,212,.35)) drop-shadow(0 20px 48px rgba(0,0,0,.45)); }

/* Score gallery */
.ap-gallery--score { background: #000; }

/* Score calculator */
.pcalc-section--score { padding: 120px 0; background: var(--bg1); }
.pcalc-section--score .pcalc-h { color: var(--ink); }
.pcalc-section--score .pcalc-lead { color: var(--ink2); }
.pcalc-section--score .eyebrow { color: var(--cyan); }
.pcalc-section--score .vote-tier { background: var(--bg); border-color: var(--border); }
.pcalc-section--score .vote-tier:hover { border-color: var(--cyan); background: rgba(15,175,212,.04); }
.pcalc-section--score .vote-tier.active { border-color: var(--cyan); background: rgba(15,175,212,.06); }
.pcalc-section--score .vote-tier-n { color: var(--ink); }
.pcalc-section--score .vote-tier.active .vote-tier-n { color: var(--cyan); }
.pcalc-section--score .vote-tier-price { color: var(--ink2); }
.pcalc-section--score .vote-tier.active .vote-tier-price { color: var(--cyan); }
.pcalc-section--score .vote-tier-per { color: var(--ink3); }

/* Score FAQ */
.faq-section--score { background: #fff; }
.faq-section--score .faq-q { background: #fff; color: var(--ink); border: 1.5px solid var(--border); border-radius: 10px; transition: border-color .2s, background .2s; font-size: 15px; }
.faq-section--score .faq-q:hover { border-color: var(--cyan); background: rgba(15,175,212,.02); filter: none; }
.faq-section--score .faq-item.open .faq-q { border-color: var(--cyan); border-bottom-left-radius: 0; border-bottom-right-radius: 0; color: var(--cyan); background: rgba(15,175,212,.04); filter: none; }
.faq-section--score .faq-icon { color: var(--cyan); }
.faq-section--score .faq-a { background: rgba(15,175,212,.03); border: 1.5px solid var(--cyan); border-top: none; border-radius: 0 0 10px 10px; color: var(--ink2); }

/* ═══════════════════════════════════════════════
   OCTOBUZZY page styles
═══════════════════════════════════════════════ */
.breyn-hero--octo {
  background:
    radial-gradient(ellipse at 68% 55%, rgba(198,144,16,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(192,46,138,.06) 0%, transparent 45%),
    linear-gradient(150deg, #0e0a02 0%, #1a1005 45%, #0d080e 100%);
}
.breyn-hero--octo .breyn-hero-rings { opacity: .16; }
.breyn-hero--octo .breyn-h1 { color: #fff; }
.breyn-hero--octo .grad {
  color: var(--gold);
}
.breyn-hero--octo .breyn-hero-desc { color: rgba(255,255,255,.65); }
.breyn-hero--octo .breyn-hero-price { color: rgba(255,255,255,.5); }
.breyn-hero--octo .breyn-hero-price strong { color: var(--gold); }
.breyn-hero--octo .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); color: rgba(255,255,255,.8); }
.breyn-hero--octo .chip-check { color: var(--gold); }
.breyn-hero--octo .eyebrow { color: var(--gold); }
.breyn-hero--octo .breyn-product-caption { color: rgba(255,255,255,.5); }
.breyn-hero--octo .breyn-product-card {
  background: linear-gradient(135deg, #0e0a02 0%, #1a1005 60%, #0a0d0e 100%);
  box-shadow: 0 0 0 1px rgba(198,144,16,.2), 0 0 40px rgba(198,144,16,.12), 0 40px 80px rgba(0,0,0,.55);
}
.breyn-hero--octo .breyn-product-card::before {
  background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(198,144,16,.18) 0%, transparent 65%),
              radial-gradient(ellipse 40% 35% at 80% 75%, rgba(192,46,138,.08) 0%, transparent 55%);
}
.breyn-hero--octo .breyn-product-img-real {
  filter: drop-shadow(0 0 24px rgba(198,144,16,.45)) drop-shadow(0 20px 40px rgba(0,0,0,.5));
}

/* Octo audience */
.octo-card:hover { border-color: var(--gold) !important; box-shadow: 0 8px 32px rgba(198,144,16,.1) !important; }
.octo-tag { color: var(--gold) !important; background: rgba(198,144,16,.08) !important; border-color: rgba(198,144,16,.2) !important; }

/* Octo grad */
.grad-octo {
  background: linear-gradient(90deg, #C69010 0%, #f0c040 50%, #C02E8A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Octo mode icon */
.octo-mode-icon {
  font-size: 48px;
  text-align: center;
  padding: 20px;
  background: rgba(198,144,16,.06);
  border-radius: 12px;
  margin-bottom: 16px;
}

/* Octo compare */
.octo-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 720px;
}
.octo-compare-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
}
.octo-compare-card--active {
  border-color: var(--gold);
  background: rgba(198,144,16,.04);
}
.octo-compare-badge {
  position: absolute; top: -12px; left: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; padding: 3px 12px; border-radius: 20px;
}
.octo-compare-name { font-family: var(--display); font-size: 20px; font-weight: 900; color: var(--ink); margin-bottom: 4px; }
.octo-compare-price { font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.octo-compare-card:last-child .octo-compare-price { color: var(--ink2); }
.octo-compare-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.oc-yes, .oc-no { font-size: 14px; padding-left: 20px; position: relative; }
.oc-yes::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.oc-no::before  { content: '✕'; position: absolute; left: 0; color: var(--ink3); }
.oc-no { color: var(--ink3); }

/* Octo FAQ */
.faq-section--octo { background: #fff; }
.faq-section--octo .faq-q { background: #fff; color: var(--ink); border: 1.5px solid var(--border); border-radius: 10px; transition: border-color .2s; font-size: 15px; }
.faq-section--octo .faq-q:hover { border-color: var(--gold); filter: none; }
.faq-section--octo .faq-item.open .faq-q { border-color: var(--gold); border-radius: 10px 10px 0 0; color: var(--gold); background: rgba(198,144,16,.04); filter: none; }
.faq-section--octo .faq-icon { color: var(--gold); }
.faq-section--octo .faq-a { background: rgba(198,144,16,.03); border: 1.5px solid var(--gold); border-top: none; border-radius: 0 0 10px 10px; color: var(--ink2); }

/* Octo composition 2-card grid */
.octo-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.octo-comp-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(198,144,16,.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.octo-comp-card:hover { border-color: rgba(198,144,16,.5); transform: translateY(-3px); }
.octo-comp-photo {
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(198,144,16,.06);
  border-bottom: 1px solid rgba(198,144,16,.15);
  padding: 24px;
}
.octo-comp-photo img { max-height: 200px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }
.octo-comp-body { padding: 28px; }
.octo-comp-num { font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .1em; color: rgba(198,144,16,.5); text-transform: uppercase; margin-bottom: 6px; }
.octo-comp-name { font-family: var(--display); font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.octo-comp-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }

@media (max-width: 960px) {
  .octo-compare-grid { grid-template-columns: 1fr; max-width: 420px; }
  .octo-variants-grid { grid-template-columns: 1fr; }
  .octo-comp-grid { grid-template-columns: 1fr; }
}

/* ── blf-select ──────────────────────────────── */
.blf-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.5)' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  transition: border-color .2s;
}
.blf-select:focus { border-color: var(--cyan); }
.blf-select option { background: #0d1220; color: #fff; }

/* ── CUBE: 2-column modes grid ───────────────── */
.ap-modes-grid--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 1024px) {
  /* 2 колонки не помещаются на мобильном — карточки уезжают за экран */
  .ap-modes-grid--two { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PCALC Dark section
═══════════════════════════════════════════════ */
.pcalc-section--dark {
  padding: 140px 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(15,175,212,.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 65% at 85% 50%, rgba(192,46,138,.11) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(198,144,16,.07) 0%, transparent 55%),
    linear-gradient(150deg, #04101f 0%, #080d1e 45%, #12071a 100%);
}
.pcalc-section--dark .pcalc-h {
  color: #fff;
}
.pcalc-section--dark .pcalc-lead {
  color: rgba(255,255,255,.55);
}
.pcalc-section--dark .pcalc-step-label {
  color: rgba(255,255,255,.7);
}
.pcalc-section--dark .pcalc-slider-marks {
  color: rgba(255,255,255,.35);
}
.pcalc-section--dark .pcalc-ver {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.pcalc-section--dark .pcalc-ver.active {
  background: rgba(15,175,212,.15);
  border-color: rgba(15,175,212,.5);
  color: #fff;
}
.pcalc-section--dark .pcalc-ver-name {
  color: inherit;
}
.pcalc-section--dark .pcalc-ver-sub {
  color: rgba(255,255,255,.45);
}
.pcalc-section--dark .pcalc-num-input {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.pcalc-section--dark .pcalc-num-input:focus {
  border-color: var(--cyan);
}

/* Source: css/design-quality.css */
/* DokaLab: readable content, deliberate section rhythm. September 2026. */
body.design-v2 {
  --ink:#13263d; --ink2:#415368; --ink3:#607086;
  --bg1:#f3f6f8; --bg2:#eaf0f4; --border:#dce4ea;
  --action:#087d99; --action-hover:#06657d;
  font-family:'DM Sans',Arial,sans-serif;
}
body.design-v2 :is(section,[id]) { scroll-margin-top:128px; }
body.design-v2 .section { padding-block:88px; }
body.design-v2 .section::before,body.design-v2 .section::after { display:none; }
body.design-v2 .section + .section:not(.section-alt):not(.section-alt2) { border-top:1px solid var(--border); }
body.design-v2 .section-alt + .section-alt { background:#fff; border-top:1px solid var(--border); }
body.design-v2 :is(.h2,.studio-h,.ap-modes-h,.pcalc-h,.cta-h,.breyn-cta-h) {
  font-weight:700; font-size:clamp(26px,2.75vw,38px); line-height:1.24;
  letter-spacing:-.025em; text-wrap:balance;
}
body.design-v2 .h2 { margin-bottom:32px; max-width:960px; }
body.design-v2 :is(.h2,.studio-h,.pcalc-h,.breyn-cta-h,.cta-h) .grad { color:inherit; }
body.design-v2 :is(.aud-h1,.breyn-h1,.cat-hero-h,.info-h1) {
  font-weight:700; font-size:clamp(29px,3.15vw,44px);line-height:1.2;text-wrap:balance;
}
body.design-v2 :is(.lead,.u-section-lead,.studio-sub,.aud-hero-sub,.cat-hero-sub,.breyn-hero-desc) {
  font-size:17px;line-height:1.75;max-width:68ch;
}
body.design-v2 :is(.eyebrow,.ap-eyebrow,.studio-tag) { font-size:12px;letter-spacing:.08em; }
body.design-v2 .eyebrow { color:var(--action);font-weight:700;margin-bottom:16px; }
body.design-v2 :is(.fw-title,.pdp-case-title,.ps-h,.efc-name,.support-name,.use-title) {
  font-family:var(--body);font-weight:700;letter-spacing:-.015em;line-height:1.3;
}
body.design-v2 :is(.fw-desc,.pc-desc,.pdp-case-meta,.trust-label,.efc-desc,.ps-item,.spec-desc) {
  font-size:15px;line-height:1.65;
}
body.design-v2 :is(.btn,.btn-nav-cta,.clf-submit,.efc-btn) {
  min-height:46px;line-height:1.3;font-weight:600;
  transition:background-color 160ms ease,color 160ms ease,border-color 160ms ease,transform 160ms ease;
}
body.design-v2 :is(.btn-primary,.btn-nav-cta,.clf-submit,.scta-btn,.efc-btn) {
  background:var(--action);color:#fff;box-shadow:none;filter:none;
}
body.design-v2 :is(.btn-primary,.btn-nav-cta,.clf-submit,.scta-btn,.efc-btn):hover {
  background:var(--action-hover);color:#fff;filter:none;
}
body.design-v2 :is(.btn,.btn-nav-cta,.clf-submit,.efc-btn):active { transform:scale(.98); }
body.design-v2 :is(a,button,input,select,textarea):focus-visible {
  outline:3px solid #087d99;outline-offset:4px;
}
body.design-v2 :is(input,select,textarea) { font-size:16px; }
body.design-v2 .btn-outline-cyan { color:var(--action);border-color:var(--action); }
body.design-v2 :is(.product-card,.trust-card,.spec-card,.feature-card,.review-card,.event-format-card):not(a):hover {
  transform:none;box-shadow:none;
}
/* An index of audiences, distinct from the product cards that follow. */
body.design-v2 #forwhom .fw-grid { grid-template-columns:repeat(2,minmax(0,1fr));gap:0 48px; }
body.design-v2 #forwhom .fw-card {
  display:grid;grid-template-columns:40px minmax(0,1fr);column-gap:18px;
  padding:26px 0;background:transparent;border:0;border-bottom:1px solid #ccd8e0;border-radius:0;box-shadow:none;
}
body.design-v2 #forwhom .fw-icon { grid-row:1 / span 3;margin:0;width:40px;height:40px;background:#e1eef1;color:var(--action); }
body.design-v2 #forwhom :is(.fw-title,.fw-desc,.fw-items) { grid-column:2; }
body.design-v2 #forwhom .fw-title { font-size:20px;margin-bottom:8px; }
body.design-v2 #forwhom .fw-items { margin-top:6px; }
body.design-v2 #forwhom .fw-item { background:transparent;padding:0 10px 0 0;color:var(--ink2); }
body.design-v2 .product-card { border-color:var(--border);box-shadow:none; }
body.design-v2 .pc-body { padding:26px; }
body.design-v2 .pc-footer { gap:16px;flex-wrap:wrap; }
body.design-v2 .about-grid { gap:64px;align-items:center; }
body.design-v2 .about-grid .h2 { max-width:560px; }
/* Page indexes encode actual destinations, never decoration. */
body.design-v2 .page-index { background:#fff;border-block:1px solid var(--border);padding:20px 0; }
body.design-v2 .page-index .container { display:flex;align-items:center;gap:12px 24px;flex-wrap:wrap; }
body.design-v2 .page-index-label { font-size:13px;font-weight:700;color:var(--ink3); }
body.design-v2 .page-index a { padding:9px 0;font-size:14px;font-weight:600;color:var(--ink);border-bottom:2px solid transparent; }
body.design-v2 .page-index a:hover { color:var(--action);border-bottom-color:var(--action); }
/* Photographs sit on a neutral mat; no edge-to-edge merge into dark content. */
body.design-v2 .ap-gallery { background:#fff;padding:56px 32px; }
body.design-v2 .ap-gallery-grid {
  max-width:1136px;margin:auto;gap:12px;padding:0;
  grid-template-rows:260px 220px;
}
body.design-v2 .ap-gallery-grid > div { border-radius:16px;overflow:hidden; }
body.design-v2 .ap-gallery--cube .ap-gallery-grid { grid-template-rows:290px 240px; }
body.design-v2 .gallery-header { max-width:1136px;margin:0 auto 28px;display:flex;align-items:baseline;justify-content:space-between;gap:24px; }
body.design-v2 .gallery-header h2 { font-family:var(--display);font-weight:700;font-size:24px;line-height:1.3; }
body.design-v2 .gallery-header p { color:var(--ink2);font-size:15px; }
/* Pricing is a clear, light workspace following the visual demonstration. */
body.design-v2 .pcalc-section { background:var(--bg1);padding-block:80px;border-block:1px solid var(--border); }
body.design-v2 .pcalc-section :is(.pcalc-h,.pcalc-step-label,.pcalc-ver,.pcalc-ver-name,.pcalc-num-input) { color:var(--ink); }
body.design-v2 .pcalc-section :is(.pcalc-lead,.pcalc-ver-sub,.pcalc-slider-marks) { color:var(--ink2); }
body.design-v2 .pcalc-section .pcalc-ver { background:#fff;border:1px solid #bacad6;padding:20px; }
body.design-v2 .pcalc-section .pcalc-ver.active { background:#e5f3f7;border:2px solid var(--action);padding:19px; }
body.design-v2 .pcalc-section .pcalc-ver-sub { display:block;line-height:1.5;font-size:13px;margin-top:6px; }
body.design-v2 .pcalc-section .pcalc-num-input { background:#fff;border-color:#aebfcd; }
body.design-v2 .pcalc-step-num { background:#e0edf2;color:var(--action);box-shadow:none;font-family:var(--body);font-weight:700; }
body.design-v2 .pcalc-result { box-shadow:0 8px 32px rgba(19,38,61,.06);border:1px solid #ccd8e0;border-radius:20px; }
body.design-v2 .pcalc-total { background:none;-webkit-text-fill-color:currentColor;color:var(--ink); }
body.design-v2 .ap-grad { background:none;-webkit-text-fill-color:currentColor;color:inherit; }
body.design-v2 .pcalc-result .pcalc-total { color:var(--ink); }
body.design-v2 .pcalc-breakdown { gap:12px; }
body.design-v2 .pcalc-line { font-size:14px; }
/* FAQ: calm rows with readable answers, visibly different from primary CTAs. */
body.design-v2 .faq { background:#fff;padding-block:80px; }
body.design-v2 .faq-grid { gap:12px 28px;margin-top:32px; }
body.design-v2 .faq-item { background:#fff;border:1px solid var(--border);border-radius:12px; }
body.design-v2 .faq-q { background:#fff;color:var(--ink);font-size:16px;line-height:1.5;font-weight:600;padding:20px 22px;min-height:70px;filter:none; }
body.design-v2 .faq-q:hover,body.design-v2 .faq-item.open .faq-q { background:var(--bg1);filter:none; }
body.design-v2 .faq-icon { color:var(--action);font-size:22px; }
body.design-v2 .faq-a { font-size:16px;line-height:1.75;padding-inline:22px;color:var(--ink2); }
body.design-v2 .faq-item.open .faq-a { padding:20px 22px 24px; }
/* Mascot as an editorial aside, scaled below the main product presentation. */
body.design-v2 .mascot-section { background:#fff;padding:48px 0 64px; }
body.design-v2 .mascot-banner { border:1px solid rgba(19,38,61,.08); }
body.design-v2 .mascot-banner > img { width:62%;height:auto;margin-left:auto;mask-image:linear-gradient(to right,transparent,#000 20%); }
body.design-v2 .mascot-banner__copy { width:49%;padding:40px;gap:18px; }
body.design-v2 .mascot-banner__copy h2 { font-weight:700;font-size:clamp(24px,2.3vw,32px);line-height:1.3;text-wrap:balance; }
body.design-v2 .mascot-banner__copy p { font-size:16px;line-height:1.7; }
body.design-v2 .mascot-banner--support > img { margin-left:0;margin-right:auto;mask-image:linear-gradient(to left,transparent,#000 20%); }
body.design-v2 .mascot-banner--support .mascot-banner__copy { width:48%; }
body.design-v2 .mascot-banner--rental::before { display:none; }
/* Bright text in demonstration blocks; the content does not disappear into the photo. */
body.design-v2 :is(.studio-sub,.studio-feat-desc,.breyn-cta-desc,.breyn-cta-perks li,.breyn-cta-contact,.ap-stmt-sub,.colors-desc,.colors-note) { color:#bdcbd9; }
body.design-v2 :is(.studio-section,.ap-statement,.ap-modes,.breyn-cta-section) { background:#101e31; }
body.design-v2 .studio-section { padding-block:80px; }
body.design-v2 .studio-h { max-width:850px; }
body.design-v2 .breyn-cta-section { border-top:1px solid #304153; }
body.design-v2 .breyn-cta-h { max-width:500px; }
body.design-v2 .clf-label { color:#dce5ee; }
body.design-v2 :is(.clf-input,.clf-select,.clf-textarea) { background:#203047;border-color:#506078;color:#fff; }
body.design-v2 :is(.clf-input,.clf-textarea)::placeholder { color:#bdcbd9; }
body.design-v2 .coming-soon { background:#fff;color:var(--ink);padding-block:48px; }
body.design-v2 .coming-soon-inner { background:#eaf2f5;border:1px solid #d8e6ec;padding:36px;border-radius:20px; }
body.design-v2 :is(.coming-soon-h,.coming-soon-sub,.coming-soon-note,.coming-soon-feat) { color:var(--ink2); }
body.design-v2 .coming-soon-h { color:var(--ink);font-weight:700; }
body.design-v2 .coming-soon-rings { opacity:.08; }
body.design-v2 .coming-soon-badge { color:var(--action);border-color:#aacbd7;background:#fff; }
/* Break the repeating card matrix on rental and service pages. */
body.design-v2 .design-services .trust-grid { grid-template-columns:repeat(2,minmax(0,1fr));gap:0 48px; }
body.design-v2 .design-services .trust-card { background:transparent;border:0;border-bottom:1px solid #d6e0e7;border-radius:0;box-shadow:none;padding:24px 0;text-align:left; }
body.design-v2 .design-services .trust-val { font-family:var(--body);font-size:20px;font-weight:700;color:var(--ink);margin-bottom:8px; }
body.design-v2 .design-services .trust-label { max-width:55ch; }
body.design-v2 .design-services .trust-card:hover { transform:none;box-shadow:none; }
body.design-v2 .section[aria-label*="раздел"] .h2 { font-family:var(--body);font-size:26px;letter-spacing:-.015em; }
@media (max-width:1023px) {
  body.design-v2 .mascot-banner > img { width:100%;margin:0;mask-image:none; }
  body.design-v2 :is(.mascot-banner__copy,.mascot-banner--support .mascot-banner__copy) { position:static;width:100%;padding:28px; }
  body.design-v2 .mascot-banner__copy h2 { font-size:26px; }
  body.design-v2 .ap-gallery-grid,body.design-v2 .ap-gallery--cube .ap-gallery-grid { grid-template-rows:220px 190px; }
}
@media (max-width:767px) {
  body.design-v2 .section { padding-block:56px; }
  body.design-v2 :is(.studio-section,.pcalc-section,.faq,.breyn-cta-section) { padding-block:56px; }
  body.design-v2 :is(.h2,.studio-h,.ap-modes-h,.pcalc-h,.cta-h,.breyn-cta-h) { font-size:27px;line-height:1.3; }
  body.design-v2 .h2 { margin-bottom:24px; }
  body.design-v2 :is(.lead,.u-section-lead,.aud-hero-sub,.cat-hero-sub,.breyn-hero-desc,.studio-sub) { font-size:16px; }
  body.design-v2 #forwhom .fw-grid { grid-template-columns:1fr; }
  body.design-v2 #forwhom .fw-card { padding:22px 0;column-gap:14px; }
  body.design-v2 .page-index .container { gap:0 20px; }
  body.design-v2 .page-index-label { width:100%;margin-bottom:8px; }
  body.design-v2 .page-index a { font-size:14px;min-height:44px; }
  body.design-v2 .ap-gallery { padding:36px 18px; }
  body.design-v2 .ap-gallery-grid,body.design-v2 .ap-gallery--cube .ap-gallery-grid { grid-template-columns:1fr 1fr;grid-template-rows:240px 150px 150px;gap:10px; }
  body.design-v2 .ap-gallery-big { grid-column:1 / -1;grid-row:auto; }
  body.design-v2 .gallery-header { display:block;margin-bottom:24px; }
  body.design-v2 .gallery-header h2 { font-size:22px;margin-bottom:8px; }
  body.design-v2 .mascot-section { padding:28px 0 40px; }
  body.design-v2 .mascot-banner__copy h2 { font-size:24px; }
  body.design-v2 .faq-grid { grid-template-columns:1fr; }
  body.design-v2 .faq-q { font-size:16px;padding:18px;min-height:64px; }
  body.design-v2 .faq-a { padding-inline:18px; }
  body.design-v2 .faq-item.open .faq-a { padding:18px; }
  body.design-v2 .design-services .trust-grid { grid-template-columns:1fr; }
  body.design-v2 .coming-soon-inner { padding:24px; }
  body.design-v2 .pcalc-section .pcalc-ver { padding:16px; }
  body.design-v2 .pcalc-section .pcalc-ver.active { padding:15px; }
  body.design-v2 .pcalc-section .pcalc-ver-name { font-family:var(--body);font-size:17px;line-height:1.35; }
  body.design-v2 .pcalc-section .pcalc-ver-sub { font-size:13px; }
}
@media (hover:none) {
  body.design-v2 :is(.btn,.fw-card,.product-card,.event-format-card,.trust-card):hover { transform:none; }
}
@media (prefers-reduced-motion:reduce) {
  body.design-v2 :is(.btn,.fw-card,.product-card,.faq-q,.faq-a) { transition:none; }
  body.design-v2 .ap-fade { opacity:1;transform:none;transition:none; }
}
/* Final contrast and hierarchy checks on the rendered forms. */
body.design-v2 .pcalc-cta { background:var(--action) !important; }
body.design-v2 .pcalc-cta:hover { background:var(--action-hover) !important;transform:none; }
body.design-v2 .pcalc-result-name { font-family:var(--body);font-weight:700;font-size:25px;line-height:1.3; }
body.design-v2 .pcalc-result .pcalc-result-badge,body.design-v2 .pcalc-ver-note { color:var(--action); }
body.design-v2 #forwhom .fw-item { border:0;font-size:12px; }
body.design-v2 .coming-soon-form { align-items:stretch; }
body.design-v2 .coming-soon-form > div:first-child { color:var(--ink2) !important; }
body.design-v2 .coming-soon-input { width:100%;background:#fff;border:1px solid #aebfcd;color:var(--ink);min-height:48px; }
body.design-v2 .coming-soon-input::placeholder { color:var(--ink3); }
body.design-v2 .coming-soon .form-consent { color:var(--ink2);font-size:12px !important;line-height:1.6; }
body.design-v2 .coming-soon .form-consent a { color:var(--action); }
body.design-v2 .coming-soon-feat--dim { opacity:1;color:var(--ink3); }
body.design-v2 .nf-wrap > .container { width:100%;min-width:0; }
body.design-v2 .nf-title { font-weight:700;font-size:clamp(24px,3vw,36px);line-height:1.3;text-wrap:balance; }

/* Source: css/first-screen.css */
/* Show the first screen immediately; retain motion below it. */
.lh .fu, .lh .hero-visual-in, .breyn-hero .fu, .rental-hero .fu, .page-hero .fu { animation:none; opacity:1; transform:none; }
.landing-paths { display:flex;flex-wrap:wrap;gap:10px 20px;margin-top:20px;line-height:1.6;font-size:14px; }
.landing-paths a { color:var(--ink);text-decoration:underline;text-underline-offset:4px; }
.lh .landing-paths a { color:#fff; }

/* Scroll reveal also targets the entire hero after DOMContentLoaded. */
.lh.reveal, .breyn-hero.reveal, .page-hero.reveal { opacity:1;transform:none;transition:none; }
