@charset "UTF-8";
/* ==========================================================================
   Zoom-бот — Страница 11 «Запись Zoom на iPhone и iPad»
   Дизайн-система: rlz/DESIGN.md + rlz/design-tokens.json
   Вёрстка 18 секций по макетам Страница 11/sections/*.png

   Компонентная база унаследована от «Страницы 10», чтобы страницы кластера
   совпадали по языку. Каждая секция — скруглённая плашка с фоном из макета;
   геометрия колонок снята с макета (cut_page11.py → assets/geometry.json)
   и переведена в пиксели секции 1440 множителем 1440/1536.
   ========================================================================== */
:root {
  /* палитра дизайн-системы (rlz) */
  --color-canvas: #fff;
  --color-canvas-2: #1f1d1e;
  --color-surface: #e4d8fd;
  --color-surface-2: #dfe1e6;
  --color-surface-3: #c1c7cf;
  --color-accent: #7e43ff;
  --color-text-muted: #4c24a3;
  --color-ink: #26114a;

  /* продуктовые и статусные цвета из макетов (не акценты UI) */
  --brand-zoom: #2d8cff;
  --brand-zoom-dk: #0b6ae4;
  --brand-tg: #2aa3ef;
  --brand-tg-dk: #1a86d9;
  --brand-max: #8b5cf6;
  --brand-max-dk: #6532e8;
  --brand-ok: #22c55e;
  --brand-warn: #f59e0b;
  --brand-err: #ef4444;
  --lavender: #7b7ef2;      /* плитки-квадраты в макетах 02, 05 */
  --lavender-soft: #eceafc; /* бледные плитки в макетах 05, 09, 15 */
  --sky-soft: #e8f0fe;      /* бледно-голубые плитки в макетах 09, 12 */

  /* границы (rlz) */
  --border-pale: 1px solid #ecedf3;
  --border-light: 1px solid #dfe1e7;
  --border-ghost: 1px solid rgba(18, 55, 105, .08);

  /* радиусы (rlz) */
  --r-xs: .375rem;
  --r-sm: .5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 1.75rem;
  --r-huge: 2.5rem;
  --r-pill: 100vw;

  /* тени — многослойные, низкой непрозрачности */
  --shadow-card:
    0 1px 2px rgba(38, 17, 74, .04),
    0 4px 10px rgba(38, 17, 74, .04),
    0 12px 28px rgba(38, 17, 74, .05);
  --shadow-float:
    0 2px 6px rgba(38, 17, 74, .05),
    0 10px 24px rgba(38, 17, 74, .07),
    0 28px 60px rgba(38, 17, 74, .08);
  --shadow-tile:
    0 1px 2px rgba(38, 17, 74, .05),
    0 6px 16px rgba(38, 17, 74, .07);
  --shadow-btn-tg:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    0 2px 6px rgba(26, 134, 217, .18),
    0 10px 22px rgba(26, 134, 217, .26),
    0 18px 40px rgba(26, 134, 217, .16);
  --shadow-btn-max:
    inset 0 1px 0 rgba(255, 255, 255, .26),
    0 2px 6px rgba(80, 64, 230, .18),
    0 10px 22px rgba(80, 64, 230, .28),
    0 18px 40px rgba(80, 64, 230, .16);

  /* сетка */
  --page: 1440px;
  --content: 1272px;
  --gutter: 24px;
  --sec-pad: 88px;
  --sec-inset: 16px;    /* отступ плашки от края окна, как на главной */
  --sec-gap: 30px;      /* зазор между плашками */
  --sec-radius: clamp(28px, 3.9vw, 56px);

  /* типографика */
  --font: 'Google Sans', 'Poppins', sans-serif;
  --ease: cubic-bezier(.6, .6, 0, 1);
}

/* ---------- Сброс и база ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border: 0; object-fit: contain; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
b, strong { font-weight: 700; }
svg { display: block; }
::selection { background: var(--color-surface); color: var(--color-ink); }
:where(a, button, summary):focus-visible {
  outline: .125rem solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---------- Типографика --------------------------------------------------- */
.h1, .h2, .h3 { margin: 0; color: var(--color-ink); letter-spacing: -.02em; overflow-wrap: break-word; }
p, li, td, th, .txt, .lead { overflow-wrap: break-word; }
.h1 { font-size: clamp(32px, 2.6vw + 17px, 54px); line-height: 1.1; font-weight: 700; letter-spacing: -.022em; }
.h2 { font-size: clamp(28px, 2.3vw + 15px, 46px); line-height: 1.14; font-weight: 700; letter-spacing: -.022em; }
.h3 { font-size: clamp(18px, .35vw + 16px, 20px); line-height: 1.35; font-weight: 700; letter-spacing: -.01em; }
.lead { font-size: clamp(16px, .3vw + 15px, 18px); line-height: 1.6; color: var(--color-ink); }
.txt { color: var(--color-ink); }
.stack > * + * { margin-top: 18px; }

/* Единая типографика основного текста — все абзацы 18/26 (как на прошлых
   страницах кластера по просьбе заказчика). */
.txt, .lead, .note, .bullet__body, .card, .step__body, .faq-card__a { font-size: 18px; line-height: 26px; color: var(--color-ink); }
.txt--sm { font-size: 15px; line-height: 22px; }
.k { font-weight: 700; }
.k--zoom { color: var(--brand-zoom-dk); }
.k--blue { color: #2f6bff; }

.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-40 { margin-bottom: 40px; }

/* ---------- Каркас -------------------------------------------------------- */
.page { max-width: var(--page); margin: 0 auto; position: relative; padding-block: var(--sec-gap); }
.sec { position: relative; overflow-x: clip; }
.sec__inner { max-width: var(--content); margin: 0 auto; padding: var(--sec-pad) var(--gutter); position: relative; z-index: 1; }

.split { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
.col-text { min-width: 0; align-self: start; }
.col-media { min-width: 0; position: relative; }
.media { display: flex; align-items: flex-start; justify-content: center; }
.media img { width: 100%; height: auto; }

/* плашка секции — как на главной recording-bot.ru: радиус 56, поля 16 */
.sec--flat { background: var(--sec-bg, var(--color-canvas)); border-radius: var(--sec-radius); margin-inline: var(--sec-inset); }
.sec--flat + .sec--flat { margin-top: var(--sec-gap); }
.sec--flat > .sec__inner { max-width: var(--content); }

/* ---------- Кнопки — как на recording-bot.ru и «Странице 10»: пилюли 56 px ------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 28px; border: 0; border-radius: var(--r-pill);
  font: inherit; font-size: 16px; font-weight: 700; line-height: 1; color: #fff;
  cursor: pointer; white-space: nowrap;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease), filter .45s var(--ease);
}
.btn .bi { width: 21px; height: 21px; flex: none; }
.btn:hover { transform: translateY(-1px); filter: saturate(108%); }
.btn:active { transform: translateY(0); }
.btn--tg { background: linear-gradient(135deg, #35a8f0 0%, #1a7fd8 100%); box-shadow: var(--shadow-btn-tg); }
.btn--max { background: linear-gradient(90deg, #304dff 0%, #7f3ce6 100%); box-shadow: var(--shadow-btn-max); }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
@media (min-width: 720px) {
  .col-text > .cta-row { display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; width: max-content; max-width: 100%; }
}

/* ---------- Бейдж-надзаголовок ------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; height: 40px; padding: 0 18px 0 12px;
  border-radius: var(--r-pill); background: #fff; border: var(--border-pale); box-shadow: var(--shadow-tile);
  font-size: 14px; font-weight: 500; line-height: 1; color: var(--color-ink);
}
.eyebrow img { width: 22px; height: 22px; }
/* бейдж с точкой — макеты 07, 08 */
.eyebrow--dot { background: #eaf2ff; border-color: #cfe0ff; box-shadow: none; color: #1e4fd8; font-weight: 500; }
.eyebrow--dot::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #2f6bff; }
/* большая марка секции — синий квадрат Zoom над H1 */
.mark { width: 68px; height: 68px; border-radius: 20px; overflow: hidden; }
.mark img { width: 100%; height: 100%; object-fit: contain; }
/* марка секции — квадрат Zoom и подпись, макет 11 */
.mark-row { display: inline-flex; align-items: center; gap: 18px; font-size: 26px; font-weight: 500; color: var(--color-ink); }
.mark-row img { width: 64px; height: 64px; }

/* ---------- Плитка с иконкой ---------------------------------------------- */
.tile {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: #fff; border: var(--border-pale); box-shadow: var(--shadow-tile); overflow: hidden;
}
.tile img { width: 66%; height: 66%; object-fit: contain; }
.tile--48 { width: 48px; height: 48px; border-radius: 14px; }
.tile--plain { background: transparent; border-color: transparent; box-shadow: none; }
.tile--plain img { width: 100%; height: 100%; }
/* белый квадрат с объёмной иконкой — макеты 04, 06 */
.tile--card { width: 84px; height: 84px; border-radius: 22px; }
.tile--card img { width: 58%; height: 58%; }
/* бледная плитка с контурной иконкой — макеты 09, 12, 15, 16 */
.tile--soft { width: 84px; height: 84px; border-radius: 20px; border: 0; box-shadow: none; background: var(--sky-soft); color: #2f6bff; }
.tile--soft svg { width: 44px; height: 44px; }
.tile--lav { background: var(--lavender-soft); color: #5b5ce6; }
.tile--rose { background: #fdeaea; color: #e05252; }
/* яркая сиреневая плитка — макеты 02, 05 */
.tile--grad { width: 96px; height: 96px; border-radius: 22px; border: 0; box-shadow: 0 10px 24px rgba(91, 92, 230, .22); background: linear-gradient(160deg, #8b8cf7 0%, #6c6ff0 100%); color: #fff; }
.tile--grad svg { width: 50px; height: 50px; }

/* ---------- Строка «иконка + текст» --------------------------------------- */
.bullet { display: flex; gap: 22px; align-items: flex-start; }
.bullet__body { min-width: 0; padding-top: 2px; }
.bullet-list { display: grid; gap: 28px; }
.bullet--top .bullet__body { padding-top: 0; }

/* ---------- Карточка -------------------------------------------------------- */
.card { background: #fff; border: var(--border-pale); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 26px 28px; }
.card--row { display: flex; gap: 20px; align-items: flex-start; }
.card-list { display: grid; gap: 18px; }

/* ---------- Заметка --------------------------------------------------------- */
.note { display: flex; gap: 18px; align-items: flex-start; padding: 22px 26px; border-radius: 18px; background: #eef2fe; border: 1px solid #dfe7fb; }
.note--lav { background: #f1eefc; border-color: #e4ddf7; }
.note--white { background: #fff; border-color: #ecedf3; box-shadow: var(--shadow-card); }
.note__ico { flex: none; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.note__ico img { width: 100%; height: 100%; }
.note__ico svg { width: 40px; height: 40px; }
.note__ico--tile { width: 56px; height: 56px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-tile); }
.note__ico--tile img { width: 70%; height: 70%; }
.note--center { align-items: center; }
/* значок «i» в круге — макеты 03, 05, 12 */
.info-i::before { content: "i"; }
.info-i { width: 40px; height: 40px; border-radius: 50%; background: #2f6bff; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 22px; font-family: Georgia, 'Times New Roman', serif; font-style: italic; }
.info-i--ring { background: #fff; color: #2f6bff; border: 2px solid #2f6bff; }

/* стрелка-пилюля «Дальше разберём оба…» — макет 02 */
.arrow-pill { display: flex; align-items: center; gap: 18px; padding: 16px 22px; border-radius: 16px; background: #e9e8fb; }
.arrow-pill__ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: #5b5ce6; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.arrow-pill__ico svg { width: 20px; height: 20px; }

/* карточка с разделителем — макет 05 */
.card--rows { padding: 30px 32px; border-radius: 26px; }
.card--rows > .bullet + .bullet { margin-top: 26px; padding-top: 26px; border-top: 1px solid #ece9f4; }

/* ---------- Шаги — макет 06 ----------------------------------------------- */
.steps { display: grid; gap: 34px; position: relative; }
.step { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 22px; align-items: start; }
.step__tile { width: 96px; height: 96px; border-radius: 22px; background: #f4f2fb; border: 1px solid #e9e6f5; display: inline-flex; align-items: center; justify-content: center; position: relative; }
.step__tile img { width: 60%; height: 60%; }
.step__num::before { content: attr(data-n); }
.step__num { width: 36px; height: 36px; border-radius: 50%; background: #2f6bff; color: #fff; font-size: 17px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-top: 30px; }
.step__body { padding-top: 34px; }
.step + .step .step__tile::before { content: ""; position: absolute; left: 50%; top: -30px; height: 24px; border-left: 3px dotted #b7c4f5; transform: translateX(-50%); }

/* ---------- Ряд пяти карточек — макет 11 ---------------------------------- */
.cards-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; }
.mini-card { background: #fff; border: var(--border-pale); border-radius: 24px; box-shadow: var(--shadow-card); padding: 38px 20px 34px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.mini-card__ico { width: 104px; height: 104px; border-radius: 50%; background: #f1eefc; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.mini-card__ico img { width: 60%; height: 60%; }
.mini-card__t { font-size: 18px; line-height: 24px; font-weight: 700; margin-bottom: 8px; }
.mini-card__s { font-size: 15px; line-height: 21px; }

/* ---------- Две карточки с иллюстрацией — макет 13 ------------------------- */
.pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.feat { background: #fff; border: var(--border-pale); border-radius: 24px; box-shadow: var(--shadow-card); padding: 26px 28px; display: grid; grid-template-columns: 46px minmax(0, 1fr) minmax(0, 46%); gap: 18px; align-items: center; }
.feat__ban { width: 46px; height: 46px; border-radius: 50%; background: #e5323c; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 0 5px #fbd9db; }
.feat__ban svg { width: 24px; height: 24px; }
.feat__t { font-size: 17px; line-height: 23px; font-weight: 700; margin-bottom: 8px; }
.feat__s { font-size: 15px; line-height: 21px; }
.feat__pic { width: 100%; height: auto; }
.feat__pic--a { max-width: 253px; margin-left: auto; border: 1px solid #e3e6f2; border-radius: 12px; }
.feat__pic--b { max-width: 356px; margin-left: auto; }

/* ---------- Три карточки с иконкой над кромкой — макет 14 ----------------- */
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.warn { position: relative; background: #fbf9fd; border: 1px solid #e4dff0; border-radius: 24px; padding: 62px 28px 34px; margin-top: 30px; display: flex; flex-direction: column; }
.warn__ico { position: absolute; left: 0; top: -34px; width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(160deg, #7a5cf2 0%, #5b3fd6 100%); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(91, 63, 214, .28); }
.warn__ico svg { width: 30px; height: 30px; }
.warn .txt { font-size: 20px; line-height: 30px; font-weight: 500; }
.warn__pic { margin-top: auto; padding-top: 26px; display: flex; justify-content: center; }
.warn__pic img { width: 100%; height: auto; }
.warn__pic--a img { max-width: 283px; }
.warn__pic--b img { max-width: 385px; }
.warn__pic--c img { max-width: 347px; }

/* ---------- Ряд шести плиток с подписями — макет 15 ----------------------- */
.tiles-6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.tiles-6 > li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tiles-6 .tile--soft { width: 80px; height: 80px; margin-bottom: 18px; background: #f2f1fc; color: #4c4ee0; }
.tiles-6 .tile--soft svg { width: 40px; height: 40px; }
.tiles-6 span { font-size: 14px; line-height: 19px; }
/* плашка «Первые 15 минут бесплатно» */
.gift { display: flex; gap: 24px; align-items: center; padding: 24px 28px; border-radius: 20px; background: #eaf1fe; }
.gift__ico { flex: none; width: 82px; height: 82px; border-radius: 20px; background: #2f6bff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(47, 107, 255, .28); }
.gift__ico img { width: 74%; height: 74%; }
.gift .txt { font-size: 23px; line-height: 32px; font-weight: 500; }

/* ---------- Вопросы — макет 17 -------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.faq-card { background: #fff; border: var(--border-pale); border-radius: 24px; box-shadow: var(--shadow-card); padding: 26px 28px; display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 18px; align-items: start; }
.faq-card--wide { grid-column: 1 / -1; align-items: center; }
.faq-card__ico { width: 62px; height: 62px; border-radius: 16px; background: #eef2fe; display: inline-flex; align-items: center; justify-content: center; }
.faq-card__ico img { width: 72%; height: 72%; }
.faq-card__q { font-size: 20px; line-height: 27px; font-weight: 700; margin-bottom: 8px; }
.faq-card__a { font-size: 17px; line-height: 25px; }

#sec-03 .trio { gap: 16px; }
#sec-03 .trio .tile--card { width: 60px; height: 60px; border-radius: 16px; }
#sec-03 .trio .bullet { gap: 12px; }
#sec-03 .trio .txt--sm { font-size: 14px; line-height: 19px; }
#sec-03 .trio .k { font-size: 15px; }
/* перенос строки в заголовке — только на широких экранах, где он повторяет макет */
@media (max-width: 719px) { .br-d { display: none; } }

/* ---------- Иллюстрация в колонке -------------------------------------------- */
.media img { width: 100%; height: auto; }

/* Ссылка «Zoom-бот» в тексте — как на recording-bot.ru: клик открывает попап */
.rb-botlink { color: #005EFE; text-decoration: none; font-weight: 700; white-space: nowrap; transition: color .15s ease; }
.rb-botlink:hover { color: #FA090A; }
.rb-botlink__ico { width: 1em; height: 1em; vertical-align: -.16em; margin-right: .28em; display: inline-block; background: url(/favicon/f2.svg) center/contain no-repeat; }
.rb-botlink:hover .rb-botlink__ico { background-image: url(/favicon/f1.svg); }

/* ---------- Попап выбора мессенджера ------------------------------------------ */
.skb-bot-modal[hidden] { display: none; }
.skb-bot-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.skb-bot-modal__overlay { position: absolute; inset: 0; background: rgba(20, 10, 60, .55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.skb-bot-modal__dialog { position: relative; background: #fff; border-radius: 24px; padding: 34px 28px 30px; width: 100%; max-width: 340px; box-shadow: 0 30px 80px rgba(49, 12, 128, .28); text-align: center; animation: skbBotIn .2s ease; }
@keyframes skbBotIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.skb-bot-modal__close { position: absolute; top: 10px; right: 16px; border: none; background: none; font-size: 28px; line-height: 1; color: #8b83a6; cursor: pointer; padding: 4px; }
.skb-bot-modal__close:hover { color: #310c80; }
.skb-bot-modal__title { font-size: 20px; font-weight: 700; color: #1c0f45; margin-bottom: 22px; }
.skb-bot-modal__btns { display: flex; flex-direction: column; gap: 12px; }
.skb-bot-modal__btn { justify-content: center; width: 100%; height: 56px; }

/* подпись под реквизитами */
.legal { font-size: 15px; line-height: 1.5; color: var(--color-text-muted); }

/* ---------- Фон секций — фактический цвет углов макета ---------------------- */
#sec-01 { --sec-bg: #f0f6fe; }
#sec-02 { --sec-bg: #f8f3f9; }
#sec-03 { --sec-bg: #fefefe; }
#sec-04 { --sec-bg: #eef7fe; }
#sec-05 { --sec-bg: #f7f3f8; }
#sec-06 { --sec-bg: #fefefe; }
#sec-07 { --sec-bg: #eef6fd; }
#sec-08 { --sec-bg: #f8f4fa; }
#sec-09 { --sec-bg: #fdfefe; }
#sec-10 { --sec-bg: #ebf3fc; }
#sec-11 { --sec-bg: #f9f6f9; }
#sec-12 { --sec-bg: #fefefe; }
#sec-13 { --sec-bg: #ecf6fd; }
#sec-14 { --sec-bg: #f9f4fb; }
#sec-15 { --sec-bg: #fefefe; }
#sec-16 { --sec-bg: #ecf4fd; }
#sec-17 { --sec-bg: #f7f3f9; }
#sec-18 { --sec-bg: #fdfefe; }

/* ---------- Геометрия секций по макетам (от 1280) -----------------------------
   Для каждой секции: поля плашки, ширина иллюстрации (вырез × 1440/1536),
   зазор между колонками (отрицательный — заголовок заходит в пустой угол
   иллюстрации) и сдвиг по вертикали той колонки, что начинается ниже. */
@media (min-width: 1280px) {
  .sec--flat > .sec__inner { max-width: none; }
  .h1 { font-size: 60px; line-height: 62px; }
  .h2 { font-size: 46px; line-height: 52px; }
  .sec--flat .split { gap: 0; }
  .sec--flat .media img { width: 100%; }

  #sec-01 > .sec__inner { padding: 96px 56px 80px 82px; }
  #sec-01 .split { grid-template-columns: minmax(0, 1fr) 625px; column-gap: 38px; }
  #sec-01 .media { margin-top: 22px; }

  #sec-02 > .sec__inner { padding: 116px 24px 98px 97px; }
  #sec-02 .split { grid-template-columns: minmax(0, 1fr) 585px; column-gap: 35px; }
  #sec-02 .media { margin-top: 5px; }

  #sec-03 > .sec__inner { padding: 38px 41px 59px 74px; }
  #sec-03 .split { grid-template-columns: minmax(0, 1fr) 666px; }
  #sec-03 .col-media { margin-left: -22px; }
  #sec-03 .col-text { margin-top: 29px; position: relative; z-index: 2; }
  #sec-03 .col-text > :not(.h2, .trio) { max-width: 640px; }

  #sec-04 > .sec__inner { padding: 66px 38px 99px 72px; }
  #sec-04 .split { grid-template-columns: minmax(0, 1fr) 651px; column-gap: 46px; }
  #sec-04 .col-text { margin-top: 82px; }

  #sec-05 > .sec__inner { padding: 92px 130px 56px 123px; }
  #sec-05 .split { grid-template-columns: minmax(0, 1fr) 636px; column-gap: 1px; }
  #sec-05 .col-text { margin-top: 4px; }

  #sec-06 > .sec__inner { padding: 95px 0 0 91px; }
  #sec-06 .split { grid-template-columns: minmax(0, 1fr) 886px; }
  #sec-06 .col-media { margin-left: -22px; }
  #sec-06 .media { margin-top: 5px; }
  #sec-06 .h2 { width: 866px; max-width: none; position: relative; z-index: 2; }
  #sec-06 .col-text { position: relative; z-index: 2; }

  #sec-07 > .sec__inner { padding: 61px 81px 94px 91px; }
  #sec-07 .split { grid-template-columns: minmax(0, 1fr) 668px; }
  #sec-07 .col-media { margin-left: -46px; }
  #sec-07 .col-text { margin-top: 84px; position: relative; z-index: 2; }
  #sec-07 .col-text > :not(.h2) { max-width: 600px; }

  #sec-08 > .sec__inner { padding: 113px 75px 102px 86px; }
  #sec-08 .split { grid-template-columns: minmax(0, 1fr) 638px; }
  #sec-08 .col-media { margin-left: -39px; }
  #sec-08 .col-text { margin-top: 8px; position: relative; z-index: 2; }
  #sec-08 .col-text > :not(.h2) { max-width: 600px; }

  #sec-09 > .sec__inner { padding: 86px 39px 87px 91px; }
  #sec-09 .split { grid-template-columns: minmax(0, 1fr) 758px; }
  #sec-09 .col-media { margin-left: -13px; }
  #sec-09 .media { margin-top: 2px; }
  #sec-09 .col-text { position: relative; z-index: 2; }

  #sec-10 > .sec__inner { padding: 154px 45px 68px 68px; }
  #sec-10 .split { grid-template-columns: minmax(0, 1fr) 651px; column-gap: 8px; }
  #sec-10 .col-text { margin-top: 30px; }
  #sec-10 .col-text > :not(.h2) { max-width: 560px; }

  #sec-11 > .sec__inner { padding: 71px 87px 77px 95px; }
  #sec-11 .split { grid-template-columns: minmax(0, 1fr) 616px; }
  #sec-11 .col-media { margin-left: -13px; }
  #sec-11 .media { margin-top: 23px; }
  #sec-11 .col-text { position: relative; z-index: 2; }
  #sec-11 .col-text > :not(.h2) { max-width: 600px; }
  #sec-11 .cards-5 { margin-top: 8px; max-width: 1226px; }

  #sec-12 > .sec__inner { padding: 54px 13px 37px 72px; }
  #sec-12 .split { grid-template-columns: minmax(0, 1fr) 803px; }
  #sec-12 .col-media { margin-left: -34px; }
  #sec-12 .media { margin-top: 75px; }
  #sec-12 .col-text { position: relative; z-index: 2; }
  #sec-12 .col-text > :not(.h2) { max-width: 486px; }

  #sec-13 > .sec__inner { padding: 98px 35px 72px 63px; }
  #sec-13 .split { grid-template-columns: minmax(0, 1fr) 826px; }
  #sec-13 .col-media { margin-left: -30px; }
  #sec-13 .col-text { margin-top: 28px; position: relative; z-index: 2; }
  #sec-13 .col-text > :not(.h2) { max-width: 500px; }
  #sec-13 .pair { margin-top: 83px; max-width: 1307px; margin-left: 4px; }

  #sec-14 > .sec__inner { padding: 65px 60px 109px 67px; }
  #sec-14 .split { grid-template-columns: minmax(0, 1fr) 612px; column-gap: 19px; }
  #sec-14 .col-text { margin-top: 75px; }
  #sec-14 .trio { margin-top: 41px; max-width: 1305px; }

  #sec-15 > .sec__inner { padding: 73px 0 34px 66px; }
  #sec-15 .split { grid-template-columns: minmax(0, 1fr) 666px; }
  #sec-15 .col-media { margin-left: -74px; }
  #sec-15 .col-text { margin-top: 9px; position: relative; z-index: 2; }
  #sec-15 .col-text > .stack { max-width: 700px; }
  #sec-15 .col-text > .tiles-6 { max-width: 720px; }
  #sec-15 .col-text > .gift { max-width: 590px; }

  #sec-16 > .sec__inner { padding: 143px 63px 126px 87px; }
  #sec-16 .split { grid-template-columns: minmax(0, 1fr) 718px; column-gap: 40px; }
  #sec-16 .media { margin-top: 11px; }

  #sec-17 > .sec__inner { padding: 33px 84px 66px 102px; }
  #sec-17 .split { grid-template-columns: minmax(0, 1fr) 392px; column-gap: 215px; }
  #sec-17 .col-text { margin-top: 77px; }
  #sec-17 .faq-grid { margin-top: 22px; }

  #sec-18 > .sec__inner { padding: 125px 41px 130px 80px; }
  #sec-18 .split { grid-template-columns: minmax(0, 1fr) 741px; column-gap: 90px; }
  #sec-18 .media { margin-top: 4px; }
}


/* Пустые поля вырезов (бледный узор без контента) на одной колонке съедаем
   отрицательным полем; проценты — от ширины колонки, то есть от ширины картинки. */
#sec-01 { --trim-t: 3.6%; }
#sec-02 { --trim-t: 20.4%; }
#sec-03 { --trim-t: 2.4%; }
#sec-04 { --trim-t: 2.2%; }
#sec-05 { --trim-t: 2.2%; }
#sec-06 { --trim-t: 2.8%; }
#sec-07 { --trim-t: 21.3%; }
#sec-08 { --trim-t: 2.3%; }
#sec-09 { --trim-t: 2.1%; }
#sec-10 { --trim-t: 2.3%; }
#sec-11 { --trim-t: 2.1%; }
#sec-12 { --trim-t: 1.8%; }
#sec-13 { --trim-t: 5.7%; }
#sec-14 { --trim-t: 2.1%; }
#sec-15 { --trim-t: 2.0%; }
#sec-16 { --trim-t: 5.4%; }
#sec-17 { --trim-t: 9.3%; }
#sec-18 { --trim-t: 4.6%; }

/* ---------- Респонсив --------------------------------------------------------- */
@media (max-width: 1279px) {
  :root { --sec-pad: 64px; --content: 860px; --gutter: 22px; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 40px; row-gap: 0; }
  .split > .col-media { margin-right: 0; }
  /* иллюстрация — сразу под заголовком: колонки расформировываем в общую сетку */
  .split > .col-text, .split > .col-media { display: contents; }
  .split > .col-text > * { order: 3; }
  .split > .col-text > .mark,
  .split > .col-text > .mark-row,
  .split > .col-text > .eyebrow,
  .split > .col-text > .h1,
  .split > .col-text > .h2 { order: 1; }
  .split > .col-text > .mark,
  .split > .col-text > .mark-row,
  .split > .col-text > .eyebrow { justify-self: start; }
  .split > .col-media > * { order: 4; }
  .split > .col-media > .media { order: 2; margin: 30px 0 38px; }
  .media img { width: 100%; max-width: 560px; margin-inline: auto; }
  .cards-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 40px; }
  .trio { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
  .pair { margin-top: 40px; grid-template-columns: minmax(0, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 40px; }
  .tiles-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}

@media (min-width: 720px) { .h2 { font-size: 46px; line-height: 52px; } }

@media (min-width: 720px) and (max-width: 1279px) {
  .sec--flat > .sec__inner { max-width: min(100% - 48px, 960px); }
  .split > .col-text > *, .split > .col-media > :not(.media), .sec__inner > :not(.split) { max-width: 704px; }
  .split > .col-text > .tiles-6, .sec__inner > .cards-5, .sec__inner > .pair, .sec__inner > .trio, .sec__inner > .faq-grid { max-width: none; }
  .media img { max-width: 100%; margin-inline: 0; }
  .split > .col-media > .media { justify-content: flex-start; margin: 26px 0 32px; }
  #sec-01 .media img { max-width: 625px; }
  #sec-02 .media img { max-width: 585px; }
  #sec-03 .media img { max-width: 666px; }
  #sec-04 .media img { max-width: 651px; }
  #sec-05 .media img { max-width: 636px; }
  #sec-06 .media img { max-width: 886px; }
  #sec-07 .media img { max-width: 668px; }
  #sec-08 .media img { max-width: 638px; }
  #sec-09 .media img { max-width: 758px; }
  #sec-10 .media img { max-width: 651px; }
  #sec-11 .media img { max-width: 616px; }
  #sec-12 .media img { max-width: 803px; }
  #sec-13 .media img { max-width: 826px; }
  #sec-14 .media img { max-width: 612px; }
  #sec-15 .media img { max-width: 666px; }
  #sec-16 .media img { max-width: 718px; }
  #sec-17 .media img { max-width: 392px; }
  #sec-18 .media img { max-width: 741px; }
}
@media (min-width: 1000px) and (max-width: 1279px) {
  .faq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  :root { --sec-pad: 28px; --sec-gap: 15px; --gutter: 18px; }
  /* картинка занимает всю колонку, поэтому процент подрезки точен */
  .media img { max-width: 100%; }
  .split > .col-media > .media { margin: calc(6px - var(--trim-t, 0%)) 0 10px; position: relative; z-index: 0; }
  .split > .col-text > .mark, .split > .col-text > .mark-row, .split > .col-text > .eyebrow, .split > .col-text > .h1, .split > .col-text > .h2 { position: relative; z-index: 1; }
  .mark { width: 58px; height: 58px; border-radius: 17px; }
  .split > .col-text > .h2 { margin-bottom: 12px; }
  body { font-size: 16px; }
  .btn { width: 100%; height: 54px; }
  .cta-row { gap: 12px; }
  .cta-row .btn { flex: 1 1 100%; }
  .card { padding: 22px 20px; }
  .card--rows { padding: 22px 20px; }
  .bullet { gap: 14px; }
  .bullet-list { gap: 20px; }
  .tile { width: 48px; height: 48px; }
  .tile--card, .tile--soft, .tile--grad { width: 64px; height: 64px; border-radius: 16px; }
  .tile--soft svg, .tile--grad svg { width: 34px; height: 34px; }
  .note { padding: 18px 18px; gap: 14px; }
  .step { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; }
  .step__tile { width: 64px; height: 64px; border-radius: 16px; }
  .step__num { width: 30px; height: 30px; font-size: 15px; margin-top: 17px; }
  .step__body { padding-top: 19px; }
  .steps { gap: 24px; }
  .step + .step .step__tile::before { top: -22px; height: 18px; }
  .cards-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
  .mini-card { padding: 24px 14px; border-radius: 18px; }
  .mini-card__ico { width: 72px; height: 72px; margin-bottom: 16px; }
  .mini-card__t { font-size: 16px; line-height: 22px; }
  .mini-card__s { font-size: 14px; line-height: 20px; }
  .pair, .trio, .faq-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; margin-top: 26px; }
  .feat { grid-template-columns: 40px minmax(0, 1fr); padding: 20px; }
  .feat__pic { grid-column: 1 / -1; }
  .warn { padding: 48px 20px 26px; margin-top: 30px; }
  .warn .txt { font-size: 17px; line-height: 25px; }
  .tiles-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .tiles-6 > li { padding: 18px 10px; background: #f7f6fd; border-radius: 16px; }
  .tiles-6 .tile--soft { background: #fff; }
  .tiles-6 .tile--soft { width: 64px; height: 64px; margin-bottom: 12px; }
  .tiles-6 .tile--soft svg { width: 32px; height: 32px; }
  .gift { flex-direction: column; align-items: flex-start; padding: 20px; gap: 16px; }
  .gift .txt { font-size: 19px; line-height: 28px; }
  .gift__ico { width: 64px; height: 64px; border-radius: 16px; }
  .faq-card { padding: 20px; grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  .faq-card__ico { width: 48px; height: 48px; border-radius: 12px; }
  .faq-card__q { font-size: 18px; line-height: 24px; }
  .faq-card__a { font-size: 16px; line-height: 24px; }
  .mark-row { font-size: 20px; gap: 12px; }
  .mark-row img { width: 48px; height: 48px; }
  .arrow-pill { padding: 14px 16px; gap: 12px; }
}
@media (max-width: 479px) {
  .note, .card--row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cards-5 { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ===================================================================
   Шапка, cookie-баннер и подвал — общие с остальными страницами сайта.
   Перенесены из /zoom-zapis-gde-hranitsya/styles.css без правок.
   =================================================================== */
/* ---------- 5. Шапка ------------------------------------------------------ */
/* Шапка один в один с главной (замерено в браузере на recording-bot.ru):
   не липкая, лежит поверх карточки героя на 16px ниже её верха; плашка 57px,
   фон rgba(255,255,255,.4) + blur(6px), радиус 16, зазор 28, без рамки. */
.nav-wrap {
  /* На главной recording-bot.ru меню position:fixed и следует за скроллом
     (замерено в браузере). Здесь так же — иначе шапка уезжает вверх и на
     длинной странице до неё не добраться. */
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 0 16px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 57px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 0;
  border-radius: 16px;
  box-shadow:
    0 100px 80px rgba(0, 0, 0, .07),
    0 30px 24px rgba(0, 0, 0, .04),
    0 12.5px 10px rgba(0, 0, 0, .04),
    0 4.5px 3.5px rgba(0, 0, 0, .03);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.nav__brand img { width: 32px; height: 32px; border-radius: 6px; }
/* Разделитель главной: штрих 1×20 после бренда. */
.nav__brand::after {
  content: '';
  width: 1px;
  height: 20px;
  margin-left: 16px;
  background: rgba(32, 9, 83, .1);
}
/* Слово-марка повторяет .skb-wordmark главной: Rec обычным, Bot жирным. */
.wordmark { font-size: 1.3rem; font-weight: 500; line-height: 1; color: #231645;
  letter-spacing: -.01em; white-space: nowrap; }
.wordmark strong { font-weight: 800; }
.nav__links { display: flex; gap: 20px; }
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--color-accent); }
.nav__act { display: flex; gap: 12px; flex: none; }
.nav__act .btn--sm { height: 46px; padding: 0 26px; font-size: 16px; }
.nav__act .lbl-m { display: none; }
.nav__burger {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: var(--border-pale);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav__burger span {
  display: block; width: 17px; height: 2px;
  background: var(--color-ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drop {
  pointer-events: auto;
  display: none;
  max-width: 1010px;
  margin: 10px auto 0;
  padding: 16px;
  background: #fff;
  border: var(--border-pale);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
}
.nav-drop.is-open { display: block; }
.nav-drop a.nav-drop__link {
  display: block;
  padding: 12px 8px;
  font-size: 16px;
  color: var(--color-ink);
  border-bottom: var(--border-pale);
}
.nav-drop__btns { display: grid; gap: 10px; margin-top: 14px; }

/* ---------- 13. Cookie-баннер -------------------------------------------- */
/* Ключ согласия общий с остальным сайтом (assets/js/cookie.js), поэтому
   принявший баннер на главной здесь его уже не увидит. */
/* Оформление — как на главной (assets/css/custom.css): тонкая тёмная полоса
   во всю ширину внизу, а не светлая карточка по центру. */
.skb-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 20px;
  background: #1c1c1e;
  color: #c7c7cc;
  font-size: 13px;
  line-height: 1.25;
}
.skb-cookie[hidden] { display: none; }
.skb-cookie-text { margin: 0; font-size: 13px; line-height: 1.25; color: #c7c7cc; }
.skb-cookie-text a { color: #3b9bff; text-decoration: none; }
.skb-cookie-text a:hover { text-decoration: underline; }
.skb-cookie-btn {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 8px 26px;
  border: 0;
  border-radius: 9px;
  background: #0a84ff;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
}
.skb-cookie-btn:hover { background: #0a74e0; }
@media (max-width: 560px) {
  .skb-cookie { padding: 7px 12px; gap: 10px; font-size: 12px; }
  .skb-cookie-text { font-size: 12px; }
  .skb-cookie-btn { padding: 7px 18px; font-size: 13px; }
  .skb-cookie-extra { display: none; }
}

@media (max-width: 639px) {
  .pfooter { padding: 36px 20px 44px; }
}

/* ---------- 14. Шапка: ступени сжатия главной (замерено в браузере) ----------
   ≥992  — бренд + ссылки + кнопки;
   768–991 — бренд + кнопки, ссылки скрыты (плашка 62px, отступы 8/8/8/16);
   ≤767  — только две кнопки во всю ширину (плашка 54px, кнопки 38px, 14.4px).
   Бургера и выпадающего меню на главной нет — здесь тоже не показываем. */
@media (max-width: 991px) {
  .nav__links,
  .nav__burger,
  .nav-drop { display: none !important; }
  .nav__brand::after { display: none; }
  .nav__act { display: flex; }
  .nav { width: fit-content; height: 62px; padding: 8px 8px 8px 16px; }
  .nav-wrap { top: 8px; padding: 0 8px; }
  
  
}
@media (max-width: 767px) {
  .nav__brand { display: none; }
  .nav-wrap { top: 24px; padding: 0 12px; }
  .nav { width: 100%; height: 54px; padding: 8px 10px; }
  .nav__act { width: 100%; gap: 10px; }
  .nav__act .btn--sm {
    flex: 1 1 0; min-width: 0; width: auto;
    height: 38px; padding: 0 10px;
    font-size: 14.4px; text-transform: none; letter-spacing: 0;
  }
  .nav__act .lbl-d { display: none; }
  .nav__act .lbl-m { display: inline; }
  #sec-01 .sec__inner { padding-top: 96px; }
}


/* Герой уступает место шапке: она absolute (top 32 + плашка 57 = 89px),
   поэтому первому экрану нужен запас сверху. Замерено в браузере. */
#sec-01 > .sec__inner { padding-top: 113px; }
@media (max-width: 991px) {
  #sec-01 > .sec__inner { padding-top: 94px; }
}
@media (max-width: 767px) {
  #sec-01 > .sec__inner { padding-top: 102px; }
}

/* ---------- Подвал сайта (единый для всех страниц) -------------------------
   Вариант 1d «Компактный — статьи тегами» из Footer variants.dc.html.
   Значения перенесены из исходника один в один (размеры, цвета, отступы).
   Заданы явно, без var(): подвал стоит на страницах с тремя разными наборами
   токенов (главная, статьи, юридические) и обязан выглядеть одинаково везде.
   Отличие от макета одно: там подвал — карточка с радиусом 20px на сером
   полотне холста; на сайте это полоса во всю ширину, содержимое ограничено
   1280px — как и ширина артборда. */
.rb-footer{background:#fff;color:#14162b;padding:44px 64px 28px;
  -webkit-font-smoothing:antialiased;}
/* !important здесь вынужденно: в assets/css/custom.css главной висит сквозное
   `body,h1..h6,p,a,button,li,… {font-family:'Google Sans'!important}`, и без
   этого <p> и <a> подвала отрисовывались Google Sans вместо Manrope.
   Правило ограничено подвалом и ничего за его пределами не задевает. */
.rb-footer,.rb-footer *{font-family:'Manrope',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif!important;}
.rb-footer *{box-sizing:border-box;}
.rb-footer__inner{max-width:1280px;margin:0 auto;}
/* Второй селектор поднимает специфичность до (0,2,1): в assets/css/embeds.css
   есть `a:not([class]){text-decoration:underline}` с той же (0,1,1), и он
   подключён ПОСЛЕ custom.css — при равной специфичности побеждал он, из-за чего
   теги и ссылки на документы (у них нет class) отрисовывались подчёркнутыми. */
.rb-footer a,
.rb-footer a:not([class]){text-decoration:none;}
.rb-footer a:hover,
.rb-footer a:not([class]):hover{color:#26114a;text-decoration:none;}

/* верхняя строка: бренд + теги */
.rb-footer__top{display:flex;gap:56px;align-items:flex-start;}
.rb-footer__brand{display:flex;align-items:center;gap:12px;padding-top:2px;color:inherit;flex:none;}
.rb-footer__mark{width:34px;height:34px;border-radius:8px;background:#0b5cff;
  display:grid;place-items:center;color:#fff;font:800 14px/1 'Manrope',sans-serif;flex:none;}
.rb-footer__name{font:700 20px/1 'Manrope',sans-serif;letter-spacing:-0.01em;white-space:nowrap;}
.rb-footer__name b{font-weight:800;}
.rb-footer__brand:hover .rb-footer__name{color:#0b5cff;}

.rb-footer__tags{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:10px;flex:1;}
.rb-footer__tags a{display:inline-block;font:500 14px/1 'Manrope',sans-serif;color:#3d4453;
  padding:9px 14px;border-radius:999px;background:#f4f5f8;transition:background .15s,color .15s;}
.rb-footer__tags a:hover{background:#e9ebf1;color:#26114a;}

/* нижняя строка */
.rb-footer__bottom{margin-top:32px;padding-top:22px;border-top:1px solid #e8eaef;
  display:flex;justify-content:space-between;align-items:flex-end;gap:32px;flex-wrap:wrap;}
.rb-footer__legalcol{display:flex;flex-direction:column;gap:8px;}
.rb-footer__copy{margin:0;font:400 14px/1.5 'Manrope',sans-serif;color:#6b7280;}
.rb-footer__legal{margin:0;font:400 13px/1.5 'Manrope',sans-serif;color:#9aa1af;}
.rb-footer__docs{display:flex;gap:22px;flex-wrap:wrap;}
.rb-footer__docs a{font:500 14px/1 'Manrope',sans-serif;color:#6b7280;}

@media (max-width:900px){
  .rb-footer{padding:36px 24px 24px;}
  .rb-footer__top{flex-direction:column;gap:24px;}
  .rb-footer__tags{flex:none;}
  .rb-footer__bottom{flex-direction:column;align-items:flex-start;gap:18px;}
}
@media (max-width:560px){
  .rb-footer{padding:32px 18px 22px;}
  .rb-footer__tags{gap:8px;}
  .rb-footer__tags a{padding:9px 13px;font-size:13.5px;}
  .rb-footer__docs{gap:18px;}
}

/* ---------- Единый размер H2 (как на двух других статьях) ------------------
   46px на десктопе. Формула, а не плоские 46px: на телефоне заголовки должны
   остаться 28px. clamp даёт ровно 46px от ширины окна 1348px. */
.h2{font-size:clamp(28px, 2.3vw + 15px, 46px);line-height:1.14;}

/* Герой уступает место шапке: она fixed (top 32 + плашка 57 = 89px). */
#sec-01 > .sec__inner{padding-top:113px;}
@media (max-width:991px){ #sec-01 > .sec__inner{padding-top:94px;} }
@media (max-width:767px){ #sec-01 > .sec__inner{padding-top:102px;} }

/* ---------- Первая секция вплотную к верху (правка владельца) --------------
   У .page стоял padding-block: var(--sec-gap) — он же 30px сверху, из-за чего
   между верхом окна и скруглённой карточкой героя оставалась белая полоса.
   Снизу зазор нужен, сверху — нет: на двух других статьях сайта у .page
   вертикальных отступов нет вовсе, там герой начинается от нуля.
   Плавающее меню не задето: оно position:fixed и от потока не зависит. */
.page{padding-top:0;}

/* ---------- Размер H1 (правка владельца) -----------------------------------
   60px / line-height 60px на десктопе. Формула, а не плоские 60px: заголовок
   первого экрана на телефоне должен оставаться читаемым (60px там дали бы
   ~6 символов в строке). clamp достигает ровно 60px от ширины окна 1324px,
   `line-height:1` при 60px кегля — это и есть 60px, и он верно сжимается ниже.
   Перечислен и `#sec-01 .h1`: у него ID-специфичность, простым `.h1` не перебить. */
.h1,
#sec-01 .h1{font-size:clamp(32px, 3.4vw + 15px, 60px);line-height:1;}

/* ---------- Цвет текста на побочных страницах (правило владельца) ----------
   Основной текст статей — только #26114a (--color-ink). Приглушённые серые
   на отдельных элементах были расхождением: шапки таблиц (#84899d), ответы
   FAQ (#5c5b6e), подписи под ценой (#7C8598) и .accent (--color-text-muted).
   Цветные акценты не трогаем: белый на кнопках, синие/фиолетовые метки-ключи
   и цены — это осознанные акценты, а не основной текст. */
.tbl thead th,
.faq-row__a,
.pk-note,
.accent{color:#26114a;}

/* «Удобная альтернатива:» — обычный текст (правка владельца): без жирного и
   без фиолетового акцента, цветом основного текста страницы. */
.card__k--bot{font-weight:400;color:#26114a;}

/* ---------- Кнопки Telegram/MAX в попапе ----------------------------------
   Попап .skb-bot-modal перенесён с главной как есть, а его кнопки опираются на
   классы .skb-nav-btn*, которые живут в assets/css/custom.css главной. Здесь
   их не было — кнопки отрисовывались голым текстом. Правила скопированы
   один в один из custom.css, сам код попапа не тронут. */
.skb-nav-btn{ display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 26px; border-radius:999px; white-space:nowrap; cursor:pointer;
  font-family:'Google Sans','Poppins',sans-serif; font-weight:700; font-size:1rem; line-height:1;
  color:#fff !important; text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease; }
.skb-nav-btn__ico{ width:22px; height:22px; flex:0 0 auto; display:block; object-fit:contain !important; }
.skb-nav-btn:active{ transform:translateY(0); }
.skb-nav-btn--tg{ background:linear-gradient(135deg,#35a8f0 0%,#1a7fd8 100%);
  letter-spacing:.04em; text-transform:uppercase;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.28), 0 12px 28px rgba(26,134,217,.35); }
.skb-nav-btn--tg:hover{ filter:brightness(1.06); transform:translateY(-2px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.28), 0 18px 36px rgba(26,134,217,.45); }
.skb-nav-btn--max{ background:linear-gradient(90deg,#304DFF 0%,#7F3CE6 100%);
  box-shadow:0 10px 24px rgba(80,64,230,.32); }
.skb-nav-btn--max:hover{ filter:brightness(1.06); transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(80,64,230,.42); }

/* Плашка-подсветка в заголовке — тот же приём, что .skb-q7-hl на главной.
   box-decoration-break:clone, чтобы при переносе строки фон был у каждой части. */
.rb-hl{background:linear-gradient(90deg,#6effe7 0%,#b8ff59 100%);border-radius:.24em;
  padding:.02em .18em .1em;
  -webkit-box-decoration-break:clone;box-decoration-break:clone;}

/* ---------- Единые отступы шапки секций (правка владельца) -----------------
   Эталон — секция 19 «Чтобы не было ложных ожиданий»: 61px от верха секции до
   плашки и 26px от плашки до заголовка. До правки было 13 разных значений
   сверху (44–113px) и 17 разных зазоров до заголовка (20–59px): почти у каждой
   секции своё переопределение с ID-специфичностью.
   !important здесь вынужденный — перебить два десятка посекционных правил
   перечислением селекторов вышло бы длиннее и хрупче.
   Герой (#sec-01) исключён: у него отступ рассчитан под фиксированное меню. */
.sec:not(#sec-01) > .sec__inner{padding-top:61px !important;}
.sec:not(#sec-01) .sec__inner .eyebrow,
.sec:not(#sec-01) .sec__inner .mark{margin-bottom:26px !important;}

/* ---------- Контекстные ссылки между статьями (правило владельца 10.09.2026) ----
   Подчёркнутая, жирная, #005efe; при наведении #fa090a. Класс, а не голый <a>:
   на главной живёт a:not([class]), в статьях a{color:inherit} — оба обходим. */
a.rb-link,a.rb-link:visited{color:#005efe;font-weight:700;text-decoration:underline;text-underline-offset:2px;}
a.rb-link:hover{color:#fa090a;}
