/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;

  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}


/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not(
  [fill="none"],
  [fill^="url"]
)) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not(
  [stroke="none"],
  [stroke^="url"]
)) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light theme inspired by Tochka */
  --white: #ffffff;
  --bg: #f5f6fa;
  --bg2: #eef0f8;
  --surface: #ffffff;
  --border: #e4e6f0;
  --border-strong: #d0d3e8;

  --ink: #0f1120;
  --ink2: #4a4e6a;
  --ink3: #8589a8;

  --accent: #4f46e5;       /* indigo — primary */
  --accent-h: #3730c4;
  --accent-light: #eef0ff;
  --accent-mid: #c7d2fe;

  --green: #16a34a;
  --green-bg: #dcfce7;
  --orange: #ea580c;
  --orange-bg: #fff7ed;
  --coral: #f87171;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-h: 64px;

  --font: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.25s;
}

html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 2px 12px rgba(79,70,229,0.25);
}
.btn--primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.3); }
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: var(--white);
  color: var(--ink);
  padding: 14px 28px;
  font-size: 15px;
  border: 2px solid var(--border-strong);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  padding: 14px 28px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 24px rgba(15,17,32,0.08);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--xl { padding: 18px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(15,17,32,0.08); }
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Хедер и футер — высота совпадает с бывшим logo__text (20px) */
.logo__img--header {
  height: 26px;
  width: auto;
  display: block;
}
/* Hero h1 — масштаб под clamp(64px..120px), логотип занимает строку */
.logo__img--hero {
  height: clamp(63px, 13vw, 100px);
  width: auto;
  display: block;
  margin-bottom: 0px;
}
/* Футер — чуть меньше хедера */
.logo__img--footer {
  margin-bottom: 5px;
  margin-top: 16px;
  height: 18px;
  width: auto;
  display: block;
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.logo__text {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo__text sup { color: var(--accent); font-size: 12px; vertical-align: super; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink2);
  border-radius: 8px;
  transition: all var(--dur) var(--ease);
}

.nav a:last-child{
  margin-left: 33px;
}
.nav__link:hover,
.nav__link.active { color: var(--accent); background: var(--accent-light); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── MENU BLUR OVERLAY ── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15,17,32,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.menu-overlay.open {
  display: block;
}
.menu-overlay.visible {
  opacity: 1;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 2px;
  position: relative;
  z-index: 100;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink2);
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}
.mobile-link:hover { background: var(--bg); color: var(--accent); }
.mobile-cta { margin-top: 12px; justify-content: center; }

/* ── SECTION HEADER ─────────────────────────── */
.sh { text-align: center; margin-bottom: 56px; }
.sh__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.sh__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.sh__sub { margin-top: 14px; font-size: 20px; color: var(--ink2); }

.sh__sub_hero{
  margin-bottom: 55px; font-size: 20px; color: var(--ink2);}
  .sh__sub_benefits{
    font-weight: 600;
    margin-top: 0px;
   text-align: center;
    font-size: 20px; color: var(--ink2);

  }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(160deg, #f0f2ff 0%, #faf8ff 50%, #f0f9ff 100%);
  overflow: hidden;
  z-index: 1;
}

.hero__decor { position: absolute; inset: 0; pointer-events: none;  }
.hd-circle {
  position: absolute;
  border-radius: 50%;
}
.hd-circle--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.hd-circle--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 65%);
  bottom: -100px; left: 5%;
}
.hd-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(79,70,229,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 20%, black 0%, transparent 195%);
}

.hero__content { 
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  position: relative;
  z-index: 2; 
  max-width: 680px;
  width: 100%;
  }
  .hero__content-main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }


.hero__h1 sup {
  color: var(--accent);
  font-size: 0.35em;
  vertical-align: super;
  margin-left: 0.35em;
}

.hero__note {
  font-size: clamp(32px, 4.5vw, 48px);
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.123;
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: -0.01em;
}
.hero__note-first { color: var(--accent); }
.hero__note em { color: var(--accent); font-style: normal; font-weight: 400; }

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  
}

/* ── HERO CHARACTERS ────────────────────────── */
.hero__chars {
  margin: 0 auto;
  max-width: 1500px;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* M character — top right */
.hchar--m {
  position: absolute;
  top: calc(var(--header-h) - 10px);
  right: 120px;
  width: clamp(170px, 23vw, 330px);
}

/* G character — bottom left */
.hchar--g {
  position: absolute;
  bottom: -190px;
  left: 143px;
  width: clamp(170px, 23vw, 330px);
}

/* Image stack */
.hchar {
  position: absolute;
  aspect-ratio: 1 / 1.5;
}

.hchar__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.45s ease;
}

.hchar__img--1 { opacity: 1; }
.hchar__img--2 { opacity: 0; }

/* When swapped */
.hchar--swapped .hchar__img--1 { opacity: 0; }
.hchar--swapped .hchar__img--2 { opacity: 1; }

/* Entrance animations */
.hchar--m {
  opacity: 0;
  transform: translate(40px, -20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.2s;
}
.hchar--g {
  opacity: 0;
  transform: translate(-30px, 30px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.35s;
}
.hchar--m.visible,
.hchar--g.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Parallax scroll — JS управляет transform и opacity напрямую */
/* После visible убираем transition чтобы JS-скролл был плавным через rAF */
.hchar--m.visible,
.hchar--g.visible {
  /* transition только для entrance, потом JS рулит */
}


/* ── BENEFITS ──────────────────────────────── */
.benefits {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  background: var(--white);
  
}

.bento {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bcard {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.bcard:hover {
  border-color: var(--accent-mid);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(79,70,229,0.08);
}
.bcard--lg {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}
.bcard__lg-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
/* Шапка: иконка + заголовок в одну строку */
.bcard__lg-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.bcard__lg-header .bcard__tag {
  margin-bottom: 0;
  flex-shrink: 0;
}
.bcard__lg-header h3 {
  margin-bottom: 0;
}
.bcard--lg .bcard__visual {
  flex-shrink: 0;
  width: 42%;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
}
.bcard--accent {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-color: transparent;
  color: white;
}

.bcard--accent h3, .bcard--accent p { color: white; }
.bcard--accent .bcard__tag { background: rgba(255,255,255,0.15); }

.bcard__tag {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(15,17,32,0.07);
  transition: transform var(--dur) var(--ease);
  color: var(--accent);
}
.bcard__tag svg { width: 24px; height: 24px; }
.bcard--accent .bcard__tag { color: white; }
.bcard:hover .bcard__tag { transform: scale(1.1) rotate(5deg); }
.bcard h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}


.bcard p { font-size: 17px; font-weight: 600; color: var(--ink2); line-height: 1.65; }
.bcard.bcard--accent h3,
.bcard.bcard--accent p { color: #ffffff !important; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 180px;
  width: 100%;
  padding: 4px;
}
.cb {
  flex: 1;
  height: var(--h);
  background: var(--accent);
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease);
  transform: scaleY(0);
  transform-origin: bottom;
}
.cb--night { background: #f97316; opacity: 0.6; }
.bcard:hover .cb { opacity: 1; }

@keyframes barGrow {
  0%   { transform: scaleY(0);    opacity: 0;   }
  55%  { transform: scaleY(1.12); opacity: 1;   }
  72%  { transform: scaleY(0.94);               }
  85%  { transform: scaleY(1.04);               }
  93%  { transform: scaleY(0.98);               }
  100% { transform: scaleY(1);    opacity: 0.7; }
}
@keyframes barGrowNight {
  0%   { transform: scaleY(0);    opacity: 0;   }
  55%  { transform: scaleY(1.12); opacity: 1;   }
  72%  { transform: scaleY(0.94);               }
  85%  { transform: scaleY(1.04);               }
  93%  { transform: scaleY(0.98);               }
  100% { transform: scaleY(1);    opacity: 0.6; }
}

.chart-bars.animated .cb {
  animation: barGrow 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.chart-bars.animated .cb--night {
  animation: barGrowNight 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.chart-bars.animated .cb:nth-child(1) { animation-delay: 0.00s; }
.chart-bars.animated .cb:nth-child(2) { animation-delay: 0.07s; }
.chart-bars.animated .cb:nth-child(3) { animation-delay: 0.14s; }
.chart-bars.animated .cb:nth-child(4) { animation-delay: 0.21s; }
.chart-bars.animated .cb:nth-child(5) { animation-delay: 0.28s; }
.chart-bars.animated .cb:nth-child(6) { animation-delay: 0.35s; }
.chart-bars.animated .cb:nth-child(7) { animation-delay: 0.42s; }

/* ══════════════════════════════════════
   TESTER
══════════════════════════════════════ */

/* — Section wrapper — */
.tester {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
   z-index: 2;
}

/* — Stage: phone left, arrow center, mac right — */
.tester__devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* — Device column — */
.td {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.td__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink3);
  background: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  white-space: nowrap;
}

/* — Tooltip bubble: sits to the LEFT of the iPhone column —
   Position: absolute inside td--iphone, right side points at phone  */
/* — iOS notification: pops above the phone — */
/* — iOS notification inside phone-screen — */
.ios-notif {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(22,22,26,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(-10px) scale(.96);
  transition: opacity .38s var(--ease), transform .38s var(--ease);
  pointer-events: none;
}
.ios-notif.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ios-notif__app-icon {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.ios-notif__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ios-notif__text strong { font-size: 10px; font-weight: 800; }
.ios-notif__text span   { font-size: 9px; opacity: .75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ══════════════════════════════════════
   iPHONE: 440×872 transparent PNG
   Screen: left=5.227% top=2.523% w=88.864% h=94.725%
══════════════════════════════════════ */
.phone-wrap {
  position: relative;
  width: 220px;
  aspect-ratio: 440 / 872;   /* = 0.5046 */
  flex-shrink: 0;
}
.phone-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}
/* Screen overlay sits exactly on the green area */
.phone-screen {
  position: absolute;
  left:   5.227%;
  top:    2.56%;
  width:  89%;
  height: 94.9%;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════
   MacBOOK: 1301×854 transparent PNG
   Screen: left=9.147% top=1.991% w=81.783% h=76.464%
   Full image, no crop
══════════════════════════════════════ */
.mac-wrap {
  position: relative;
  width: 656px;
  aspect-ratio: 1301 / 854;
  flex-shrink: 0;
}
.mac-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}
.mac-screen {
  position: absolute;
  left:   9.147%;
  top:    1.991%;
  width:  81.793%;
  height: 78.464%;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  z-index: 2;
  display: flex;
}

/* — iPhone form content — */
#iphForm {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.iph-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 12px 9px;
  border-bottom: 1px solid #f0f0f5;
  flex-shrink: 0;
}
.iph-logo {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 6px; flex-shrink: 0;
}
.iph-brand { font-size: 12px; font-weight: 800; color: var(--ink); }

.iph-cert-preview {
  padding: 10px 12px 9px;
  text-align: center;
  background: linear-gradient(160deg, #eef0ff 0%, #f5f3ff 100%);
  border-bottom: 1px solid #e8eaf8;
  flex-shrink: 0;
}
.iph-cert-icon  { margin-bottom: 3px; display:flex; align-items:center; justify-content:center; color: var(--accent); }
.iph-cert-icon svg { width: 28px; height: 28px; }
.iph-cert-label { font-size: 11px; font-weight: 800; color: var(--ink); }

/* iph-form stretches to fill and pushes button down */
.iph-form {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.iph-flabel {
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--ink3); margin-bottom: 2px;
}
.iph-finput {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 7px 9px;
  font-size: 11px; font-weight: 600; color: var(--ink);
  font-family: var(--font); display: block; width: 100%;
  box-sizing: border-box;
}
.iph-sel  { display: flex; justify-content: space-between; align-items: center; }
.iph-msg  { font-size: 10px; color: var(--ink2); }
/* Push button to bottom */
.iph-form .iph-field:last-of-type { margin-bottom: auto; }

.iph-btn {
  width: 100%;
  background: var(--accent); color: #fff;
  border-radius: 11px; padding: 11px;
  font-size: 12px; font-weight: 800; font-family: var(--font);
  cursor: pointer; border: none;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 14px rgba(79,70,229,.3);
  flex-shrink: 0;
}
.iph-btn:hover   { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(79,70,229,.35); }
.iph-btn:active  { transform: scale(.98); box-shadow: none; }
.iph-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* — iPhone success — */
.iph-success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px; gap: 10px; height: 100%; text-align: center;
}
.iph-s-icon { font-size: 44px; animation: pop .45s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes pop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.iph-s-title { font-size: 15px; font-weight: 900; color: var(--ink); }
.iph-s-sub   { font-size: 12px; color: var(--ink2); line-height: 1.5; }
.iph-s-cert {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
  border-radius: 14px; padding: 16px; color: #fff; margin-top: 4px;
}
.iph-s-cert-name { font-size: 11px; opacity: .8; margin-bottom: 4px; font-weight: 600; }
.iph-s-cert-sum  { font-size: 28px; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.iph-s-cert-type { font-size: 11px; opacity: .8; margin-top: 4px; }

/* — Connector arrow — */
.tester__connector {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex-shrink: 0; padding-bottom: 11px;
}
.tc-pulse {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}
.tc-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), rgba(79,70,229,.15));
  border-radius: 2px;
}
.tc-head { color: var(--accent); line-height: 1; margin-left: 20px; display: flex; align-items: center; }
.tc-head svg { width: 35px; height: 35px; stroke-width: 2; }

/* — Hint & reset — */
.tester__hint {
  text-align: center; margin-top: 32px;
  font-size: 14px; font-weight: 600; color: var(--ink3);
  background: var(--white); display: inline-block;
  padding: 10px 24px; border-radius: 50px;
  border: 1.5px solid var(--border);
  position: relative; left: 50%; transform: translateX(-50%);
}
.tester__reset { text-align: center; margin-top: 20px; display: none; }

/* ══════════════════════════════════════
   MAC ADMIN UI — inside mac-screen
══════════════════════════════════════ */
.mac-ui {
  display: flex;
  height: 100%;
  font-family: var(--font);
}
.mac-sidebar {
  width: 120px;
  flex-shrink: 0;
  background: #f8f8fa;
  border-right: 1px solid #eeeef2;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mac-sb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 12px;
  border-bottom: 1px solid #eeeef2;
  margin-bottom: 6px;
  color: var(--accent);
}
.mac-sb-logo svg { width: 18px; height: 18px; }
.mac-sb-link {
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink2);
  border-radius: 8px;
  margin: 0 6px;
  cursor: default;
  transition: all .15s;
}
.mac-sb-link.active {
  background: var(--accent-light);
  color: var(--accent);
}
.mac-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mac-body-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px 10px;
  border-bottom: 1px solid #eeeef2;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.mac-new-badge {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  animation: pop .4s cubic-bezier(.34,1.56,.64,1) both;
}
.mac-tbl { padding: 8px 0; flex: 1; }
.mac-tbl-head {
  display: grid;
  grid-template-columns: 1fr 80px 90px;
  padding: 4px 16px 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink3);
  border-bottom: 1px solid #f0f0f4;
  margin-bottom: 4px;
}
.mac-tbl-row {
  display: none; /* hidden by default — shown when tester runs */
  grid-template-columns: 1fr 80px 90px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 6px;
  margin: 0 6px;
  transition: background .4s, border-color .4s;
  align-items: center;
}
/* Pre-existing rows (Мария, Игорь) always visible */
.mac-tbl-row:not(.mac-tbl-row--new) {
  display: grid;
}

.mac-tbl-row--new { display: none; } /* shown by JS */
.mst {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  text-align: center;
}
.mst--paid    { background: #dcfce7; color: #16a34a; text-align: center;}
.mst--pending { background: #fef9c3; color: #a16207; text-align: center;}

/* Admin Demo */
.ademo {
  background: linear-gradient(170deg, #0f1120 0%, #1a1440 55%, #0f1120 100%);
  padding: 50px 0 66px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.ademo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(79,70,229,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(99,102,241,.1) 0%, transparent 60%);
  pointer-events: none;
}
.ademo::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}
/* Ademo заголовки — белые на тёмном */
.ademo .sh__label { color: #818cf8; background: rgba(99,102,241,.15); }
.ademo .sh__title { color: #fff; }
.ademo .sh__sub   { color: rgba(255,255,255,.55); }
.ademo .af-text strong { color: #fff; }
.ademo .af-text p { color: rgba(255,255,255,.5); }
.ademo .af-icon { background: rgba(99,102,241,.2); border-color: rgba(99,102,241,.25); }
.ademo .af-icon svg { stroke: #818cf8; }
.ademo__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.ademo__screen { }
.ademo__win {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 16px 48px rgba(15,17,32,0.08);
}
.ademo__win-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink3);
  flex-shrink: 0;
}
.ademo__dots { display: flex; gap: 6px; }
.ademo__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.ademo__dots span:nth-child(1) { background: #ff5f57; }
.ademo__dots span:nth-child(2) { background: #febc2e; }
.ademo__dots span:nth-child(3) { background: #28c840; }

/* Win body: sidebar left + main right */
.ademo__win-body {
  display: flex;
  min-height: 300px;
}

/* ── Sidebar (desktop: vertical column) ── */
.ademo__sidebar {
  width: 140px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ademo__sb-item {
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  color: var(--ink2);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ademo__sb-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.ademo__sb-item:hover { background: var(--bg); color: var(--ink); }
.ademo__sb-item.active { background: var(--accent-light); color: var(--accent); }

/* ── Tab panels ── */
.ademo__main {
  flex: 1;
  padding: 16px;
  min-width: 0;
}
.ademo__main--hidden { display: none; }

.ademo__toolbar { display: flex; gap: 10px; margin-bottom: 12px; }
.ademo__search {
  flex: 1;
  height: 34px;
  background: var(--bg);
  border-radius: 8px;
  border: 1.5px solid var(--border);
}
.ademo__add {
  padding: 8px 14px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.ademo__add:hover { background: var(--accent-h); }

.ademo__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 8px;
  padding: 9px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 7px;
  align-items: center;
  transition: background var(--dur) var(--ease);
}
.ademo__row:hover { background: var(--bg); }
.ademo__row--head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink3);
  border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  margin-bottom: 4px;
}
.ademo__row--new { background: #f0fdf4; border: 1.5px solid #bbf7d0; }
.ast { display: inline-flex; align-items: center; justify-content: center; padding: 3px 8px; border-radius: 50px; font-size: 10px; font-weight: 700; }
.ast--paid    { background: var(--green-bg); color: var(--green); }
.ast--pending { background: var(--orange-bg); color: var(--orange); }
.ademo__close-btn { cursor: pointer; color: var(--ink3); font-size: 12px; transition: color var(--dur); }
.ademo__close-btn:hover { color: #ef4444; }

/* ── Statistics panel - ── */
.ada__section-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink3);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.ada__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.ada__stat {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 12px 10px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ada__stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.ada__stat--green::before  { background: #22c55e; }
.ada__stat--blue::before   { background: #3b82f6; }
.ada__stat--purple::before { background: #a855f7; }
.ada__stat--orange::before { background: #f59e0b; }
.ada__stat-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink3);
  line-height: 1.3;
  margin-bottom: 6px;
}
.ada__stat-val {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.ada__stat--green  .ada__stat-val { color: #16a34a; }
.ada__stat--blue   .ada__stat-val { color: #2563eb; }
.ada__stat--purple .ada__stat-val { color: #9333ea; }
.ada__stat--orange .ada__stat-val { color: #d97706; }
.ada__stat-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink3);
}

/* ── Right column features ── */
.ademo__features { display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.af-item { display: flex; gap: 16px; align-items: flex-start; }
.af-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  color: var(--accent);
}
.af-icon svg { width: 22px; height: 22px; }
.af-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.af-text p { font-size: 14px;font-weight: 600; color: var(--ink2); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────── */
.faq {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.open { border-color: var(--accent-mid); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: color var(--dur) var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-chevron {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--ink3);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq-chevron svg { width: 100%; height: 100%; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.7;
}

/* ── PRICING ──────────────────────────────── */
.pricing {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.plan {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(15,17,32,0.08); }
.plan--hot {
  background: linear-gradient(145deg, #4f46e5, #6366f1);
  border-color: transparent;
  color: white;
}
.plan__badge-top {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}
.plan__name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}
.plan__sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink2);
  margin-top: 2px;
}
.plan--hot .plan__sub { color: rgba(255,255,255,0.65); }
.plan--hot .plan__name { color: white; }
.plan__setup {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.plan--hot .plan__setup { color: white; }
.plan__setup span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink3);
}
.plan--hot .plan__setup span { color: rgba(255,255,255,0.7); }
.plan__monthly {
  font-size: 16px;
  color: var(--ink2);
  margin-top: 6px;
  margin-bottom: 20px;
}
.plan--hot .plan__monthly { color: rgba(255,255,255,0.8); }
.plan__monthly strong { font-size: 18px; color: var(--ink); font-weight: 900; }
.plan--hot .plan__monthly strong { color: white; }
.plan__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.plan__divider-benefits{
  margin-top: 70px;
  height: 1px;
  background: var(--border);

}
.plan--hot .plan__divider { background: rgba(255,255,255,0.2); }
.plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink2);
}
.plan--hot .plan__list { color: rgba(255,255,255,0.9); }
.plan__list li { display: flex; gap: 8px; align-items: flex-start; }
.plc {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.lt{
  text-decoration: line-through;
}
.plc svg { width: 14px; height: 14px; stroke: currentColor; }
.plan--hot .plc { color: rgba(255,255,255,0.9); }
.plan__tip {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.plan .btn {
  margin-top: auto;
}
.plan__desc {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 16px;
  line-height: 1.55;
}
.plan--hot .plan__desc { color: rgba(255,255,255,0.75); }
.plan__note {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.55;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}
.plan--hot .plan__note {
  background: rgba(255,255,255,0.12);
  border-left-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
}

/* ── PRICING PERKS ────────────────────────── */
.pricing-perks {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
}
.pricing-perks__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink2);
  margin-bottom: 20px;
}
.pricing-perks__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.pperk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pperk__ic {
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* ── CONTACTS ─────────────────────────────── */
.contacts {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
}

/* ── 2×2 GRID ── */
.clinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.clink-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}

.clink-card:first-child{
  border:  1.5px solid var(--accent);
}
.clink-card:hover {
  border-color: var(--accent-mid);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.08);
}

.clink-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink3);
  line-height: 1.4;
}

.clink-card__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Form */
.cform {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.cform__title { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fl { display: block; font-size: 13px; font-weight: 700; color: var(--ink2); margin-bottom: 7px; }
.fi {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--ink);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fi::placeholder { color: var(--ink3); }
.fi:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.fi.err { border-color: #ef4444; animation: shake 0.4s ease; }

.fchk { display: flex; gap: 10px; margin-bottom: 20px; margin-top: 6px; align-items: flex-start; }
.fchk__inp { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--accent); margin-top: 2px; cursor: pointer; }
.fchk__lbl { font-size: 13px; color: var(--ink2); line-height: 1.5; cursor: pointer; }
.il { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.cform-done { display: none; flex-direction: column; align-items: center; text-align: center; padding: 20px 0; gap: 10px; }
.cform-done__ic { font-size: 48px; }
.cform-done h4 { font-size: 22px; font-weight: 900; }
.cform-done p { color: var(--ink2); font-size: 15px; }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer_logo_c{
  display: flex;
  flex-direction: column;
}

.footer__policy { font-size: 14px; font-weight: 600; color: var(--ink2); transition: color var(--dur); }
.footer__policy:hover { color: var(--accent); }
.footer__copy { font-size: 10px; color: var(--ink3); }

/* ── Hotspot pulse markers ────────────── */
.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 40;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.hotspot::before,
.hotspot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.hotspot::before {
  background: #4ade80;
  transform: scale(0.65);
  box-shadow: 0 0 0 1.5px rgba(74,222,128,.5);
}
.hotspot::after {
  background: transparent;
  border: 2px solid rgba(74,222,128,.7);
  animation: hsPing 1.8s ease-out infinite;
}
@keyframes hsPing {
  0%   { transform: scale(0.65); opacity: 1; }
  100% { transform: scale(2.4);  opacity: 0; }
}
.hotspot--gone {
  opacity: 0;
}
/* Phone: bottom-right of iph-btn */
#hsPhone {
  bottom: 43px;
  right: 10px;
}
/* Ademo: top-right of button wrapper */
.hotspot--ademo {
  top: -5px;
  right: -5px;
}
/* Tab hotspot — top-right corner of sidebar item */
.hotspot--tab {
  top: -2px;
  right: 6px;
}


/* ── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--lg { grid-column: span 2; }
  .tester__devices { gap: 24px; }
  .mac-wrap { width: 460px; }
    .hchar--m {
        top: calc(var(--header-h) - -11px);
        right: -42px;
        width: 15em;
}
.hchar--g{
      bottom: -200px;
      width: 17em;
      left: -32px;
}
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero { min-height: 100vh; padding-bottom: 60px; }
  .hero__content { align-items: flex-start; }
  .hero__content-main { align-items: flex-start; }
  .hero__note { text-align: left; }
  .hero__btns { align-self: flex-start; }
  .bento { grid-template-columns: 1fr; }
  .bcard--lg {
    grid-column: span 1;
    flex-direction: column;
  }
  .chart-bars{
    height: 90px;
  }
  .bcard--lg .bcard__visual {
    width: 100%;
    height: 70px;
  }

  .tester__devices { flex-direction: column; align-items: center; gap: 32px; }
  .tester__connector { display: none; }
  .tester-tip {
    position: static;
    transform: none;
    animation: none;
    flex-direction: column;
    align-items: center;
    order: 10;
    margin-top: 6px;
  }
  .tester-tip__arr {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--ink);
    border-bottom: none;
    order: -1;
  }

  .phone-wrap { width: 285px; }
  .td--mac { width: 100%; }
  .mac-wrap { width: 105%; aspect-ratio: 1301 / 854; }
  .mac-sb-link { font-size: 9px; padding: 5px 8px; }
  .mac-sb-logo { padding: 2px 0 8px; }
  .mac-tbl-head span,
  .mac-tbl-row span { font-size: 9px; padding-inline: 4px; text-align: center; }
  .mst { font-size: 9px; padding: 2px 6px; }

  .ademo__layout { grid-template-columns: 1fr; }
  .clinks-grid { grid-template-columns: 1fr; }
  .clink-card__value { font-size: 18px; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }

  .hchar--m {
        top: calc(var(--header-h) - -16px);
        right: -35px;
        width: 14em;
}
.hchar--g{
      bottom: -217px;
      width: 15em;
      left: -17px;
}
}

@media (max-width: 600px) {

  .logo__img--header{
    height: 20;
  }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .logo__img--hero {
    display: none;
  }
  .hero__note {
    line-height: 1.15;
    font-size: 30px;
    font-family: 'Dela Gothic One', sans-serif;
    font-weight: 400;
    text-align: left;
    padding: 10px 0px;
    margin-bottom: 20px;
  }
  
   .hchar--m {
    top: unset;
    bottom: -173px;
    right: -76px;
    width: 14.5em;
  }
  .hero{
    padding-top: var(--header-h);
    padding-bottom: 30%;
  }
  .hero__content {
    padding-bottom: 70px;
  }
  .hchar--g {
        width: 14.5em;
        bottom: -173px;
        left: -69px;
    }
    .sh__sub_hero{
      margin-bottom: 25px; font-size: 15px;
    }
    


  /* ── iPhone screen tweaks ── */
  .phone-wrap { width: 240px; }
  .iph-cert-preview { padding: 0; }
  .iph-s-cert-sum { font-size: 25px; }

  /* ── MacBook tester screen ── */
  .mac-sidebar { width: 63px; }
  .mac-sb-link { font-size: 8px; padding: 3px 0px; margin-right: 0px; }
  .mac-body-head { padding: 3px 7px 0; font-size: 11px; }
  .mac-tbl-head,
  .mac-tbl-row { grid-template-columns: 1fr 60px 72px; padding: 4px 0; }

  /* ── ademo__win: mobile phone layout ─────────────────
     • win-bar: убираем заголовок, оставляем только точки
     • sidebar → горизонтальные табы наверху
     • win-body → колонка (табы + контент)
  ─────────────────────────────────────────────────────── */
  .ademo__win-bar span { display: none; }

  .ademo__win-body {
    flex-direction: column;
    min-height: unset;
  }

  /* Sidebar превращается в строку табов */
  .ademo__sidebar {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0;
    gap: 0;
    background: var(--white);
  }
  .ademo__sb-item {
    flex: 1;
    text-align: center;
    padding: 11px 8px;
    font-size: 12px;
    border-radius: 0;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1px; /* перекрываем border-bottom родителя */
  }
  .ademo__sb-item.active {
    background: transparent;
    color: var(--accent);
    border-bottom-color: var(--accent);
  }

  /* Панели идут на всю ширину */
  .ademo__main {
    width: 100%;
    padding: 14px;
  }

  .ada__stats { grid-template-columns: 1fr 1fr; }
  .ada__stat-val { font-size: 20px; }

  .cform { padding: 24px; }
  .footer__row { flex-direction: column; align-items: center; text-align: center; }

}

/* ════════════════════════════════════════════
   REQUIREMENTS — Что нужно для старта
   ════════════════════════════════════════════ */
.requirements {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.req__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.req__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.req__card:hover {
  box-shadow: 0 8px 32px rgba(79,70,229,.08);
  border-color: var(--accent-mid);
}
.req__card-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.req__card-icon svg { width: 20px; height: 20px; }
.req__card h3 { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.req__card p  { font-size: 16px;font-weight: 600; color: var(--ink2); line-height: 1.65; }

.req__tags    { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.req__tag {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 13px;
  font-size: 13px; font-weight: 600; color: var(--ink2);
}
.req__providers { display: flex; flex-wrap: wrap; gap: 8px; margin-top:auto; }
.req__provider {
  background: var(--accent-light); color: var(--accent);
  border: 1px solid var(--accent-mid);
  border-radius: 50px; padding: 5px 14px;
  font-size: 13px; font-weight: 700;
}

/* Dark wide card */
.req__wide {
  background: linear-gradient(145deg, #4f46e5, #6366f1);
  border-color: transparent;
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.req__wide::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(255,255,255,.05) 0%, transparent 60%);
  pointer-events: none;
}
.req__wide:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(79,70,229,0.25); }
.req__wide-left  { position: relative; z-index: 1; }
.req__wide-right { margin-top: 7px; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 29px; }

.req__wide-left h3 {
  font-size: 20px; font-weight: 800; color: #fff;
  letter-spacing: -0.025em; margin-bottom: 10px;
}
.req__wide-left > p {
  font-size: 14px; color: rgba(255,255,255,.7);
  font-weight: 600;
  line-height: 1.7; margin-bottom: 24px;
}
.req__commission-row { display: flex; gap: 16px; }
.req__commission {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 16px 20px; flex: 1;
}
.req__commission-label {
  display: block; font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px;
}
.req__commission-value {
  display: block; font-size: 26px; font-weight: 900;
  color: #fff; letter-spacing: -0.03em;
}
.req__highlight { display: flex; gap: 14px; align-items: flex-start; }
.req__highlight-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.req__highlight-icon svg { width: 16px; height: 16px; stroke: #fff; }
.req__highlight strong {
  display: block; font-size: 17px; font-weight: 800;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 4px;
}
.req__highlight p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.65; }

@media (max-width: 900px) {
  .req__grid { grid-template-columns: 1fr 1fr; }
  .req__wide  { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
}

/* ── PLAN DISABLED (В разработк) ── */
.plan--disabled {
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(0.3);
}
.plan--disabled .btn {
  background: var(--border);
  color: var(--ink3);
  border-color: var(--border);
  box-shadow: none;
  cursor: not-allowed;
}
.plan__badge-wip {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--amber, #d97706);
  background: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .req__grid          { grid-template-columns: 1fr; }
  .req__commission-row { flex-direction: column; gap: 10px; }
}


/* ═══════════════════════════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════════════════════════ */

.security {
  padding: 100px 0 120px;
  background: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 -8px 40px rgba(15,17,32,0.06);
}

/* ── Двухколонная сетка ── */
.sec__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Панель ── */
.sec__panel {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 48px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.sec__panel:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 16px 48px rgba(79,70,229,0.07);
}

/* ── Текстовая часть ── */
.sec__panel-text {
  position: relative;
  z-index: 1;
}
.sec__panel-title {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 18px;
}
.sec__panel-desc {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 380px;
}

/* ── Визуальная зона ── */
.sec__panel-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

/* ════════════════════
   МАКЕТ СЕРТИФИКАТА
   ════════════════════ */
.sec__cert-mockup {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(145deg, #1e1b4b, #312e81);
  border-radius: 20px 20px 0 0;
  padding: 28px 28px 36px;
  color: #fff;
  position: relative;
  box-shadow: 0 -8px 40px rgba(79,70,229,0.25);
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.sec__panel:hover .sec__cert-mockup {
  transform: translateY(-6px);
}

.sec__cert-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.sec__cert-logo {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.sec__cert-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.sec__cert-amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1;
}

.sec__cert-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
}
.sec__cert-code {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #a5b4fc;
}
.sec__cert-valid {
  font-size: 13px;
  font-weight: 700;
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.sec__panel.sec--active .sec__cert-valid {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}

/* Щит-иконка в правом верхнем углу */
.sec__cert-shield {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #a5b4fc;
}
.sec__cert-shield svg {
  width: 18px; height: 18px;
}

/* Пульсирующий код при активации */
.sec__panel.sec--active .sec__cert-code {
  animation: codePulse 3s ease-in-out 0.5s 1;
}
@keyframes codePulse {
  0%,100% { color: #a5b4fc; }
  40%      { color: #fff; text-shadow: 0 0 20px rgba(165,180,252,0.8); }
}


/* ════════════════════
   МАКЕТ ОБЛАКА
   ════════════════════ */
.sec__cloud-mockup {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.sec__cloud-devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* Устройства */
.sec__device {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.sec__panel:hover .sec__device {
  transform: translateY(-4px);
}
.sec__panel:hover .sec__device--mac { transition-delay: 0.06s; }

.sec__device--phone {
  width: 72px;
  height: 100px;
  border-radius: 14px;
  padding: 10px 8px;
}
.sec__device--mac {
  width: 110px;
  height: 80px;
  border-radius: 8px 8px 0 0;
  padding: 8px;
}

.sec__device-screen {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: center;
}
.sec__device-row {
  height: 6px;
  background: var(--accent-light);
  border-radius: 3px;
}
.sec__device-row--short { width: 65%; }
.sec__device-stand {
  width: 40px;
  height: 6px;
  background: var(--border);
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

/* Облако по центру */
.sec__cloud-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.sec__cloud-icon {
  width: 52px; height: 52px;
  stroke: var(--accent);
  opacity: 0.5;
  transition: opacity 0.4s;
}
.sec__panel.sec--active .sec__cloud-icon {
  opacity: 1;
  animation: cloudBreathe 3s ease-in-out infinite;
}
@keyframes cloudBreathe {
  0%,100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Точки синхронизации */
.sec__cloud-sync-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
}
.sec__panel.sec--active .sec__cloud-sync-dot {
  animation: dotFlow 1.6s ease-in-out infinite;
}
@keyframes dotFlow {
  0%,80%,100% { opacity: 0; transform: translateY(0); }
  40%          { opacity: 1; transform: translateY(-6px); }
}

.sec__cloud-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink3);
  text-align: center;
  padding: 12px 0 0;
  width: 100%;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.sec__panel.sec--active .sec__cloud-label {
  color: var(--accent);
}


/* ── Адаптив ── */
@media (max-width: 900px) {
  .sec__split { grid-template-columns: 1fr; gap: 16px; }
  .sec__panel { min-height: 400px; padding: 36px 32px 0; }
}
@media (max-width: 600px) {
  .security { padding: 72px 0 80px; }
  .sec__panel { padding: 28px 22px 0; min-height: 360px; }
  .sec__panel-title { font-size: 24px; }
  .sec__panel-desc { font-size: 16px; }
  .sec__cert-amount { font-size: 34px; }
  .sec__cert-code { font-size: 13px; }
  .sec__cert-mockup { padding: 22px 22px 30px; }
  .sec__cert-valid{font-size: 10px;}
}


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */

.how {
  padding: 45px 0 45px;
  background: var(--bg);
  position: relative;
  z-index: 2;
  box-shadow: 0 -8px 40px rgba(15,17,32,0.10);
}

/* ── Поток шагов ── */
.how__flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

/* ── Стрелки между шагами ── */
.how__arrow {
  flex-shrink: 0;
  width: 40px;
  /* num(11px line-height~26px) + half icon(80px) = 66px — to vertically center on icon */
  margin-top: 66px;
  color: var(--accent-mid);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__arrow svg {
  width: 40px;
  height: 16px;
  display: block;
}

/* ── Шаг ── */
.how__step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.how__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Номер */
.how__step-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.how__step.is-visible .how__step-num {
  opacity: 1;
  transform: translateY(0);
}

/* Иконка — большой кружок */
.how__step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  transform: scale(0.85);
  opacity: 0;
}
.how__step.is-visible .how__step-icon {
  transform: scale(1);
  opacity: 1;
}
.how__step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  transition: transform 0.3s var(--ease);
}

/* Активный шаг — акцентный */
.how__step.is-active .how__step-icon {
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(79,70,229,0.28);
  transform: scale(1.1);
}
.how__step.is-active .how__step-icon svg {
  transform: scale(1.08);
}
.how__step.is-active .how__step-num {
  color: var(--accent-h);
}

/* Hover */
.how__step:hover .how__step-icon {
  transform: scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(79,70,229,0.18);
}
.how__step:hover .how__step-icon svg {
  transform: scale(1.1);
}

/* Текст */
.how__step-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.how__step-body p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink3);
  line-height: 1.6;
}

/* Соединительная линия между иконками (desktop) */

.how__step-icon { z-index: 1; }

/* ── Итоговая строка ── */
.how__result {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.how__result-inner {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.how__result-inner:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 8px 32px rgba(79,70,229,0.07);
}
.how__result-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.how__result-text {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink2);
  line-height: 1.5;
}
.how__result-inner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Анимация появления ── */
/* opacity/transform уже объявлены выше в .how__step */

/* ── Адаптив: планшет ── */
@media (max-width: 1024px) {
  .how__step-icon { width: 68px; height: 68px; }
  .how__step-icon svg { width: 24px; height: 24px; }
  .how__flow::before { top: 55px; }
  .how__arrow { margin-top: 60px; }
  .how__step-body h3 { font-size: 14px; }
  .how__step-body p { font-size: 13px; }
}

/* ── Адаптив: мобайл ── */
@media (max-width: 700px) {
  .how { padding: 30px 0 80px; }

  /* Вертикальный стек на мобиле */
  .how__flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .how__flow::before { display: none; }

  .how__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto;
    width: 40px;
    height: 24px;
    transform: rotate(90deg);
    padding: 0;
  }

  .how__step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
  }
  .how__step-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .how__step-icon svg { width: 22px; height: 22px; }
  .how__step-num {
    display: none;
  }
  .how__step-body { padding-top: 4px; }
  .how__step-body h3 { font-size: 16px; margin-bottom: 4px; }
  .how__step-body p { font-size: 14px; }

  .how__result-inner {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
  }
  .how__result-text { font-size: 15px; }
}


/* ═══════════════════════════════════════════════════════════
   EDITOR PROMO SECTION
   ═══════════════════════════════════════════════════════════ */

.editor-promo {
  padding: 50px 0 60px;
  background: linear-gradient(170deg, #0f1120 0%, #1a1440 55%, #0f1120 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Фоновый орнамент */
.editor-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(79,70,229,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(99,102,241,.12) 0%, transparent 60%);
  pointer-events: none;
}
.editor-promo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Заголовки белые на тёмном фоне */
.editor-promo .sh__label { color: #818cf8; background: rgba(99,102,241,.15); }
.editor-promo .sh__title { color: #fff; margin-bottom: 30px;}
.editor-promo .sh__sub   { color: rgba(255,255,255,.55); }

/* ── Split layout ── */
.ep__split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* ── Features list ── */
.ep__features { display: flex; flex-direction: column; gap: 0; }

.ep__feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: border-color .2s;
}
.ep__feat:hover { border-bottom-color: rgba(99,102,241,.35); }
.ep__feat:first-child { padding-top: 0; }

.ep__feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.ep__feat-icon svg { width: 20px; height: 20px; stroke: #818cf8; }

.ep__feat h3 {
  font-size: 15px; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
  margin-bottom: 5px; line-height: 1.2;
}
.ep__feat p {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.45); line-height: 1.65;
  margin: 0;
}

/* CTA блок */
.ep__cta {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ep__plans-badge { display: flex; gap: 8px; }
.ep__plan-tag {
  font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.ep__plan-tag--biz { background: rgba(99,102,241,.2); color: #818cf8; border: 1px solid rgba(99,102,241,.3); }
.ep__plan-tag--pro { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.25); }
.ep__cta p { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; margin: 0; }

/* ── Demo window ── */
.ep__demo { position: relative; z-index: 1; }

.ep__demo-window {
  background: #16172a;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(99,102,241,.15);
}

/* Chrome bar */
.ep__demo-chrome {
  background: #1f2040;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ep__chrome-dots { display: flex; gap: 6px; }
.ep__chrome-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.ep__chrome-dots span:nth-child(1) { background: #ff5f57; }
.ep__chrome-dots span:nth-child(2) { background: #febc2e; }
.ep__chrome-dots span:nth-child(3) { background: #28c840; }
.ep__chrome-title {
  flex: 1; text-align: center;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .01em;
}
.ep__chrome-actions { display: flex; gap: 6px; }
.ep__chrome-actions span {
  width: 28px; height: 11px;
  background: rgba(255,255,255,.07); border-radius: 3px;
}

/* Demo body */
.ep__demo-body {
  display: flex;
  height: 340px;
}

/* Sidebar */
.ep__demo-sb {
  width: 130px;
  flex-shrink: 0;
  background: #1a1b30;
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 12px 10px;
  overflow: hidden;
}
.ep__demo-sb-title {
  font-size: 9px; font-weight: 800;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.ep__demo-field {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; border-radius: 6px;
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,.45);
  cursor: default; margin-bottom: 2px;
  transition: all .15s;
}
.ep__demo-field--active {
  background: rgba(99,102,241,.2);
  color: #c7d2fe;
}
.ep__demo-field--custom { color: rgba(250,204,21,.6); }
.ep__demo-field-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(99,102,241,.6); flex-shrink: 0;
}
.ep__demo-field--active .ep__demo-field-dot { background: #818cf8; }
.ep__demo-field-dot--custom { background: rgba(250,204,21,.6); }

/* Props box */
.ep__demo-prop-box {
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 7px;
  padding: 8px 9px;
  margin-top: 10px;
}
.ep__demo-prop-label {
  font-size: 8.5px; font-weight: 800;
  color: #818cf8; text-transform: uppercase;
  letter-spacing: .09em; margin-bottom: 8px;
}
.ep__demo-prop-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 6px;
  margin-bottom: 5px; font-size: 10px;
  color: rgba(255,255,255,.35);
}
.ep__demo-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 2px 6px;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.7);
  min-width: 36px; text-align: right;
  font-family: monospace;
}
.ep__demo-prop-color {
  display: flex; align-items: center;
  justify-content: space-between; gap: 6px;
  font-size: 10px; color: rgba(255,255,255,.35);
}
.ep__demo-swatch {
  width: 28px; height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.2);
}

/* Canvas */
.ep__demo-canvas {
  flex: 1; position: relative; overflow: hidden;
  background: #252640;
}

/* Cert background — шаблон по образцу */
.ep__cert-bg {
  position: absolute; inset: 10px;
  border-radius: 10px;
  background: #5b50ee;
  padding: 10px;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.ep__cert-title {
  text-align: center;
  font-size: 11px; font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  margin: 4px 0 8px;
  flex-shrink: 0;
}

.ep__cert-card {
  background: #fff;
  border-radius: 7px;
  flex: 1;
  padding: 10px 12px 8px;
  display: flex; flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

/* Поле с лейблом и линией */
.ep__cfield {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.ep__cfield-label {
  font-size: 8px; font-weight: 800;
  color: #0f1120;
  white-space: nowrap; flex-shrink: 0;
}
.ep__cfield-line {
  flex: 1;
  border-bottom: 1px solid #d0d3e8;
  min-height: 14px;
  position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 1px;
}
.ep__cfield-val {
  display: flex;

  font-size: 8px; font-weight: 600;
  color: #0f1120;
  white-space: nowrap;
}
.ep__cfield-val--code {
  font-family: 'Courier New', monospace;
  font-size: 7.5px; font-weight: 700;
  color: #4f46e5; letter-spacing: .05em;
}
.ep__cfield-val--target {
  color: #0f1120; font-weight: 700;
  transition: opacity .3s;
}

.ep__cert-disclaimer {
  font-size: 6.5px; color: #4f46e5;
  margin-top: auto; padding-top: 4px;
  font-weight: 600;
}
/* Ghost field — появляется после дропа */
.ep__cfield--ghost {
  display: none;
  animation: ghostAppear 0.4s ease both;
}
.ep__cfield--ghost.show { display: flex; }
@keyframes ghostAppear {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Выделение поля при клике */
.ep__cfield--selected .ep__cfield-line {
  border-bottom-color: #4f46e5;
  background: rgba(79,70,229,.04);
}

/* Перетаскиваемый текст */
.ep__drag-text {
  position: absolute;
  font-size: 8.5px; font-weight: 700;
  color: #0f1120;
  white-space: nowrap;
  pointer-events: none;
  background: rgba(255,255,255,.9);
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid #c7d2fe;
  box-shadow: 0 2px 6px rgba(79,70,229,.2);
  z-index: 20;
  transform: translate(-2px, -8px);
}
.ep__drag-text.snapped {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

/* Field pins */
.ep__pin {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  pointer-events: none;
}
/* ── Field pins на шаблоне ── */
.ep__pin {
  position: absolute; pointer-events: none;
  display: flex; align-items: center; gap: 5px;
  z-index: 20;
}
.ep__pin--static { opacity: .65; }
.ep__pin--active { z-index: 30; }

.ep__pin-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.ep__pin-dot--active {
  background: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,.35), 0 2px 6px rgba(0,0,0,.4);
}
.ep__pin-dot--gray { background: rgba(255,255,255,.35); box-shadow: 0 1px 3px rgba(0,0,0,.3); }

.ep__pin-lbl {
  font-size: 8.5px; font-weight: 700; color: #fff;
  background: #4f46e5; padding: 1px 6px; border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.ep__pin-lbl--gray {
  background: rgba(255,255,255,.2); color: rgba(255,255,255,.7);
  box-shadow: none;
}

/* Перетаскиваемый призрак (drag ghost) — курсор держит точку */
.ep__drag-text { display: none; }
.ep__pin--static { opacity: .7; }

/* Cursor */
.ep__cursor {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
  transform: translate(-3px,-2px);
}

/* ── Адаптив ── */
@media (max-width: 1024px) {
  .ep__split { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  .ep__split { grid-template-columns: 1fr; gap: 48px; }
  .ep__demo { order: -1; }
  .ep__demo-body { height: 280px; }
  .ep__demo-sb { width: 110px; }
}
@media (max-width: 540px) {
  .editor-promo { padding: 72px 0 80px; }
  .ep__demo-body { height: 240px; }
  .ep__demo-sb { display: none; }
  .ep__feat-icon { width: 36px; height: 36px; }
  .ep__feat h3 { font-size: 14px; }
  .ep__feat p  { font-size: 13px; }
}

/* ═══════════════════════════════════════════════
   SEC DATA — Импорт и экспорт
   ═══════════════════════════════════════════════ */
.sec__data {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.sec__data:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 16px 48px rgba(79,70,229,0.07);
}

.sec__data-half {
  padding: 48px 48px 0;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.sec__data-divider {
  width: 1.5px;
  background: var(--border);
  margin: 40px 0 0;
  align-self: stretch;
}

/* Иконка */
.sec__data-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.sec__data-icon svg { width: 22px; height: 22px; }
.sec__data-icon--export {
  background: #f0fdf4;
  color: #16a34a;
}

.sec__data-content { flex: 1; }

/* Визуальная зона */
.sec__data-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 36px;
  position: relative;
}


/* ═══════════════════════════════════════════════════
   EXCEL-LIKE MOCKUP (Импорт)
   ═══════════════════════════════════════════════════ */
.sec__xl-mockup {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  border: 1.5px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  transform: translateY(6px);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 12px 40px rgba(15,17,32,0.09);
  font-size: 12px;
}
.sec__data:hover .sec__xl-mockup { transform: translateY(0); }

/* Буквы колонок — A B C D */
.sec__xl-letters {
  display: grid;
  grid-template-columns: 28px repeat(4, 1fr);
  background: #f1f3f9;
  border-bottom: 1.5px solid var(--border);
}
.sec__xl-letters > div {
  padding: 5px 8px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink3);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.sec__xl-corner { background: #e8ebf4; }

/* Строки */
.sec__xl-row {
  display: grid;
  grid-template-columns: 28px repeat(4, 1fr);
  border-bottom: 1px solid #eef0f8;
  transition: background .15s;
}
.sec__xl-row:last-child { border-bottom: none; }
.sec__xl-row--head { background: #f8f9fd; }
.sec__xl-row--selected { background: #eef0ff; }
.sec__xl-row--faded { opacity: .45; }

/* Номера строк */
.sec__xl-num {
  padding: 9px 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink3);
  background: #f1f3f9;
  border-right: 1px solid var(--border);
}

/* Ячейки */
.sec__xl-cell {
  padding: 9px 10px;
  border-right: 1px solid #eef0f8;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec__xl-cell:last-child { border-right: none; }
.sec__xl-cell--head {
  font-size: 10.5px;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sec__xl-cell--code {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
}
.sec__xl-cell--email { color: var(--ink3); font-size: 11px; }

/* Бейджи статусов */
.sec__xl-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}
.sec__xl-badge--paid   { background: #dcfce7; color: #15803d; }
.sec__xl-badge--used   { background: #e0e7ff; color: #4338ca; }
.sec__xl-badge--exp    { background: #fef3c7; color: #92400e; }

/* Строка прогресса импорта */
.sec__xl-import-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--accent-light) 0%, #f0fdf4 100%);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  border-top: 1.5px solid var(--accent-mid);
}
.sec__xl-import-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: xl-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes xl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ═══════════════════════════════════════════════════
   EXPORT PANEL MOCKUP
   ═══════════════════════════════════════════════════ */
.sec__export-mockup {
  padding-top: 13px;
  width: 100%;
  max-width: 310px;
  transform: translateY(6px);
  transition: transform 0.35s var(--ease);
}
.sec__data:hover .sec__export-mockup { transform: translateY(0); }

.sec__exp-panel {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,17,32,.09);
}

.sec__exp-panel-title {
  padding: 14px 18px 12px;
  font-size: 12px;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 1px solid var(--border);
  background: #f8f9fd;
}

/* Фильтры */
.sec__exp-filters {
  display: flex;
  gap: 4px;
  padding: 12px 14px 10px;
}
.sec__exp-filter {
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink3);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.sec__exp-filter--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Статистика */
.sec__exp-stats {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fafbff;
}
.sec__exp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 2px;
}
.sec__exp-stat-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.sec__exp-stat-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sec__exp-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* Кнопка скачать */
.sec__exp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 14px 10px;
  padding: 11px 18px;
  background: #16a34a;
  color: #fff;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22,163,74,.22);
  transition: transform .2s, box-shadow .2s;
}
.sec__data:hover .sec__exp-btn {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22,163,74,.3);
}
.sec__exp-btn svg { width: 15px; height: 15px; }

/* Файл-результат */
.sec__exp-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: #f8fdf9;
}
.sec__exp-file-icon {
  width: 32px; height: 32px;
  background: #dcfce7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
}
.sec__exp-file-icon svg { width: 16px; height: 16px; }
.sec__exp-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sec__exp-file-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec__exp-file-meta {
  font-size: 10.5px;
  color: var(--ink3);
  font-weight: 500;
}
.sec__exp-file-check {
  width: 20px; height: 20px;
  background: #16a34a;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Адаптив ── */
@media (max-width: 900px) {
  .sec__data {
    grid-template-columns: 1fr;
  }
  .sec__data-divider {
    width: auto;
    height: 1.5px;
  }
  .sec__data-half {
    padding: 36px 32px 0;
    min-height: 380px;
  }
}
@media (max-width: 560px) {
  .sec__data-half { padding: 28px 22px 0; min-height: 320px; }
  .sec__xl-cell--email { display: none; }
  .sec__xl-letters > div:last-child { display: none; }
}
