 
/* =========================================================
   ИПЛА — Дизайн-система v4 «Optimizer»
   Чистый технический финтех: grid-based, data-first.
   Палитра: cool-white canvas · electric signal blue ·
            charcoal ink · semantic green/red/orange/teal.
   Шрифт: Manrope (geometric grotesque) + JetBrains Mono.
   Без тёплых тонов. Без серифов. Без декоративной «премиальности».
   Жёсткий контроль overflow — текст не должен съезжать.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* --- Холодный фон: практически белый, с лёгким серым (НЕ тёплый ivory) --- */
  --canvas:     #F4F5F7;
  --canvas-2:   #ECEEF1;
  --surface:    #FFFFFF;
  --surface-2:  #F8F9FB;

  /* --- Графит / антрацит вместо тёплого navy --- */
  --ink:        #0A0E14;
  --ink-2:      #141821;
  --ink-soft:   #424A57;
  --ink-mute:   #7A8290;
  --line:       #E1E4EA;
  --line-soft:  #EDF0F4;

  /* --- Акцент: электрик-синий сигнал (signature) --- */
  --blue:       #0060F0;
  --blue-d:     #004ACB;
  --blue-l:     #3B82F6;
  --blue-xl:    #DCE8FE;

  /* --- Семантические цвета (как в гайде: даташка) --- */
  --green:      #00A651;   /* успех / деньги в */
  --green-l:    #60E090;
  --green-xl:   #DEF7EA;
  --red:        #F5333F;   /* ошибка / минус */
  --red-xl:     #FDE7E9;
  --orange:     #FF8A00;   /* предупреждение / в процессе */
  --orange-xl:  #FFF0D6;
  --teal:       #00A8B5;   /* информационный акцент */
  --teal-xl:    #D6F2F5;

  --grad-blue:    linear-gradient(135deg, #3B82F6 0%, #0060F0 55%, #004ACB 100%);
  --grad-ink:     linear-gradient(180deg, #0A0E14 0%, #141821 100%);
  --grad-green:   linear-gradient(135deg, #60E090 0%, #00A651 100%);

  --sh-xs: 0 1px 2px rgba(10,14,20,.04);
  --sh-sm: 0 1px 3px rgba(10,14,20,.06), 0 1px 2px rgba(10,14,20,.04);
  --sh-md: 0 4px 12px rgba(10,14,20,.06), 0 2px 4px rgba(10,14,20,.04);
  --sh-lg: 0 12px 32px rgba(10,14,20,.08), 0 4px 8px rgba(10,14,20,.04);
  --sh-xl: 0 24px 56px rgba(10,14,20,.12);
  --sh-blue: 0 8px 24px rgba(0,96,240,.28);
  --ring-blue: 0 0 0 4px rgba(0,96,240,.16);

  --r-xs: 6px; --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 28px;
  --r-pill: 999px;

  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  letter-spacing: -0.011em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 100%;
}
p  { margin: 0; max-width: 100%; }
section { position: relative; }
::selection { background: var(--blue); color: #fff; }

/* ---------- Контейнер ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 920px; }
.container--wide   { max-width: 1360px; }

/* ---------- Типографика ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  max-width: 100%; padding: 6px 12px; border-radius: var(--r-sm);
  background: var(--blue-xl); color: var(--blue-d);
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase; border: 1px solid rgba(0,96,240,.16);
}
.eyebrow--ink    { background: var(--ink); color: #fff; border-color: var(--ink); }
.eyebrow--blue   { background: var(--blue); color: #fff; border-color: var(--blue); }
.eyebrow--ghost  { background: var(--surface); color: var(--ink-soft); border-color: var(--line); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(0,166,81,.45);} 70%{box-shadow:0 0 0 8px rgba(0,166,81,0);} 100%{box-shadow:0 0 0 0 rgba(0,166,81,0);} }

.display { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; }
.h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; letter-spacing: -0.032em; }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-soft); font-weight: 400; line-height: 1.6; }
.muted { color: var(--ink-mute); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.hl {
  color: var(--blue);
  background-image: linear-gradient(180deg, transparent 62%, rgba(0,96,240,.16) 62%);
  background-repeat: no-repeat; background-size: 100% 100%;
  padding: 0 2px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hl--green { color: var(--green); background-image: linear-gradient(180deg, transparent 62%, rgba(0,166,81,.16) 62%); }
.em { color: var(--blue); font-style: normal; }
.em-green { color: var(--green); font-style: normal; }
.mono { font-family: var(--font-mono); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  max-width: 100%; padding: 14px 24px; border-radius: var(--r-sm);
  font-family: var(--font); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .15s cubic-bezier(.2,.8,.2,1), box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--sh-md); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); background: var(--ink-2); }
.btn--blue { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,96,240,.42); }
.btn--green { background: var(--grad-green); color: #fff; box-shadow: 0 8px 24px rgba(0,166,81,.28); }
.btn--green:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--soft { background: var(--canvas-2); color: var(--ink); border-color: var(--line); }
.btn--soft:hover { background: var(--line); }
.btn--white { background: #fff; color: var(--ink); box-shadow: var(--sh-md); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn--outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--outline-w:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Шапка ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,245,247,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.03em; color: var(--ink);
}
.brand__logo {
  width: 34px; height: 34px; border-radius: 9px; background: var(--grad-blue); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 19px;
}
.brand__dot { color: var(--blue); }

.brand--image {
  gap: 0;
}
.brand__image {
  display: block;
  width: 122px;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}
.site-footer .brand__image {
  filter: brightness(0) invert(1);
  opacity: .96;
}
@media (max-width: 520px) {
  .brand__image { width: 104px; max-height: 26px; }
}


.nav { display: flex; align-items: center; gap: 2px; min-width: 0; }
.nav__link {
  display: inline-flex; align-items: center; padding: 8px 13px; border-radius: var(--r-sm);
  color: var(--ink-soft); font-weight: 500; font-size: 14.5px; white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--ink); background: var(--canvas-2); }
.nav__link.is-active { background: var(--blue); color: #fff; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.menu-toggle {
  display: none; width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--canvas-2); align-items: center; justify-content: center; flex-shrink: 0;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: transform .2s, opacity .2s;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after  { position: absolute; top: 6px; }
@media (max-width: 1080px) {
  .nav, .header-cta .btn--soft { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-nav {
  position: fixed; inset: 68px 0 0 0; background: var(--canvas);
  padding: 24px var(--gutter) 40px; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1); z-index: 99; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 8px; font-family: var(--font); font-size: 18px; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-nav__link.is-active { color: var(--blue); }
.mobile-nav__link::after { content: "→"; color: var(--ink-mute); font-weight: 400; }
.mobile-nav .btn { margin-top: 24px; }

/* ---------- Секции ---------- */
.section { padding: clamp(56px, 6vw, 88px) 0; position: relative; }
.section--paper { background: var(--surface); }
.section--ivory { background: var(--canvas); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .muted { color: rgba(255,255,255,.6); }
.section--navy2 { background: var(--ink-2); color: #fff; }
.section--navy2 h2, .section--navy2 h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.text-center { margin-inline: auto; }
.section-head .lead { margin-top: 14px; }
.section-head .eyebrow { margin-bottom: 16px; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(120px, auto); gap: 14px; }
.bento__cell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; position: relative; overflow: hidden; min-width: 0;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bento__cell:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--blue); }
.bento__cell--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.bento__cell--ink h3, .bento__cell--ink .bento__num { color: #fff; }
.bento__cell--ink p { color: rgba(255,255,255,.75); }
.bento__cell--blue { background: var(--grad-blue); color: #fff; border-color: var(--blue); }
.bento__cell--blue h3 { color: #fff; }
.bento__cell--blue p { color: rgba(255,255,255,.88); }
.bento__cell--green { background: var(--grad-green); color: #fff; border-color: var(--green); }
.bento__cell--green h3 { color: #fff; }
.bento__cell--green p { color: rgba(255,255,255,.88); }
.bento__cell--2 { grid-column: span 2; }
.bento__cell--3 { grid-column: span 3; }
.bento__cell--4 { grid-column: span 4; }
.bento__cell--6 { grid-column: span 6; }
.bento__cell h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); margin-bottom: 10px; }
.bento__cell p { color: var(--ink-soft); font-size: 15px; }
.bento__num { font-family: var(--font-mono); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.bento__cell .bento__icon {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: var(--blue-xl); color: var(--blue); margin-bottom: 18px; flex-shrink: 0;
}
.bento__cell--ink .bento__icon { background: rgba(59,130,246,.22); color: var(--blue-l); }
.bento__cell--blue .bento__icon, .bento__cell--green .bento__icon { background: rgba(255,255,255,.22); color: #fff; }
.bento__icon svg { width: 24px; height: 24px; }
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--3, .bento__cell--4, .bento__cell--6 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--2, .bento__cell--3, .bento__cell--4, .bento__cell--6 { grid-column: span 1; }
}

/* ---------- Сетка ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid > * { min-width: 0; }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Карточки ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--sh-xs);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--blue); }
.card__icon {
  width: 48px; height: 48px; border-radius: 11px; display: grid; place-items: center;
  background: var(--blue-xl); color: var(--blue); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--blue { background: var(--blue); color: #fff; }
.card__icon--green { background: var(--green); color: #fff; }
.card__icon--clay { background: var(--orange); color: #fff; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p  { color: var(--ink-soft); font-size: 15px; }

/* ---------- Feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature > * { min-width: 0; }
.feature + .feature { margin-top: 64px; }
.feature--reverse .feature__media { order: -1; }
.feature__media { border-radius: var(--r-xl); overflow: hidden; position: relative; min-width: 0; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature--reverse .feature__media { order: 0; }
  .feature + .feature { margin-top: 56px; }
}

/* ---------- Списки ---------- */
.checks li {
  position: relative; padding: 13px 0 13px 34px;
  color: var(--ink-soft); font-weight: 500; font-size: 15.5px;
  border-bottom: 1px solid var(--line-soft);
}
.checks li:last-child { border-bottom: 0; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 22px; height: 22px; border-radius: 7px; background: var(--green);
  background-image: url("data:image/svg+xml;utf8,");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}

/* ---------- Шаги ---------- */
.steps { display: grid; gap: 18px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps > * { min-width: 0; }
.step { position: relative; padding: 28px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.step__num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 11px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-weight: 700; font-size: 18px; margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) { .steps--3, .steps--4 { grid-template-columns: 1fr; } }

/* ---------- Метрики ---------- */
.stat-band {
  background: var(--ink); border-radius: var(--r-2xl); padding: clamp(40px, 6vw, 72px);
  color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.stat-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 90% 10%, rgba(0,96,240,.20), transparent 60%),
    radial-gradient(400px 240px at 0% 100%, rgba(0,166,81,.18), transparent 60%);
}
.stat-band > * { position: relative; z-index: 1; min-width: 0; }
.stat-band h2 { color: #fff; }
.stat-band .lead { color: rgba(255,255,255,.72); }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.metric { padding: 24px 22px; border-radius: var(--r-md); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.metric__value { font-family: var(--font-mono); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; color: var(--blue-l); }
.metric__label { color: rgba(255,255,255,.65); font-weight: 500; margin-top: 8px; font-size: 14px; }
@media (max-width: 800px) { .stat-band { grid-template-columns: 1fr; } }

/* ---------- Чипы ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--surface); color: var(--ink-soft); font-weight: 500; font-size: 13.5px;
  border: 1px solid var(--line); max-width: 100%;
}
.chip--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip--blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.chip--green { background: var(--green); color: #fff; border-color: var(--green); }

/* ---------- Тикер ---------- */
.ticker { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker__track { display: flex; gap: 44px; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item { font-family: var(--font-display); font-weight: 600; font-size: 19px; white-space: nowrap; opacity: .75; display: inline-flex; align-items: center; gap: 10px; }
.ticker__item::before { content: "◆"; color: var(--blue-l); font-size: 9px; }

/* ---------- Логотипы ---------- */
.logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-tile {
  display: grid; place-items: center; height: 86px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 14px; transition: transform .2s, border-color .2s;
}
.logo-tile:hover { transform: translateY(-2px); border-color: var(--blue); }
.logo-tile span { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); text-align: center; }
@media (max-width: 900px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .logos { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Тариф ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-grid > * { min-width: 0; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--sh-sm); position: relative; }
.price-card--featured { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--sh-xl); transform: scale(1.02); }
.price-card--featured h3, .price-card--featured .price { color: #fff; }
.price-card--featured .checks li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.12); }
.price-card__tag {
  position: absolute; top: -14px; left: 32px;
  background: var(--blue); color: #fff; padding: 7px 16px; border-radius: var(--r-pill);
  font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 600; margin: 20px 0 4px; letter-spacing: -.03em; line-height: 1; }
.price-card .price--rate { display: inline-flex; align-items: baseline; gap: .14em; word-spacing: 0; }
.price-card .price__prefix { letter-spacing: -.05em; }
.price-card .price__num { letter-spacing: -.06em; }
.price-card .price small { margin-left: .18em; font-size: 1rem; font-weight: 500; color: var(--ink-mute); }
.price-card--featured .price small { color: rgba(255,255,255,.6); }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } .price-card--featured { transform: none; } }

/* ---------- CTA ---------- */
.cta-band {
  background: var(--grad-blue); border-radius: var(--r-2xl); padding: clamp(44px, 6vw, 80px);
  color: #fff; text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-xl);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(600px 300px at 80% 90%, rgba(0,166,81,.28), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 16px; color: #fff; }
.cta-band p { font-size: 1.12rem; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px; font-family: var(--font); font-weight: 600; font-size: 1.05rem; text-align: left; color: var(--ink);
}
.faq-item__q .ico {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--canvas-2); display: grid; place-items: center;
  transition: transform .25s, background .2s, color .2s; color: var(--ink); font-size: 18px;
}
.faq-item.is-open .faq-item__q .ico { transform: rotate(135deg); background: var(--blue); color: #fff; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--ink-soft); }
.faq-item__a-inner { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.6; }

/* ---------- Табы ---------- */
.pill-tab { display: inline-flex; padding: 5px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); flex-wrap: wrap; }
.pill-tab button {
  padding: 9px 18px; border-radius: var(--r-pill); font-family: var(--font);
  font-weight: 600; font-size: 14.5px; color: var(--ink-soft); transition: background .15s, color .15s; white-space: nowrap;
}
.pill-tab button.is-active { background: var(--blue); color: #fff; }

/* ---------- Подвал ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 44px; margin-bottom: 52px; }
.footer-grid > * { min-width: 0; }
.footer-grid .brand { color: #fff; margin-bottom: 16px; }
.footer-col h4 {
  font-family: var(--font-mono); color: #fff; font-size: 12px; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 16px; opacity: .85; font-weight: 500;
}
.footer-col a { display: block; padding: 7px 0; color: rgba(255,255,255,.6); font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: var(--blue-l); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--blue-l); }
.footer-docs { display: flex; flex-wrap: wrap; gap: 8px 20px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ---------- Меш-градиент ---------- */
.mesh-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.mesh-wrap { position: relative; }
.mesh-wrap > .container { position: relative; z-index: 1; }

/* ---------- Мокапы ---------- */
.mock { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--sh-lg); }
.mock__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; display: block; flex-shrink: 0; }
.mock__bar i:nth-child(1){ background:#F5333F; } .mock__bar i:nth-child(2){ background:#FF8A00; } .mock__bar i:nth-child(3){ background:#00A651; }
.mock__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 15px; border-radius: var(--r-sm); background: var(--surface-2);
  border: 1px solid var(--line-soft); margin-bottom: 8px;
}
.mock__row .l { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--ink); min-width: 0; }
.mock__row .dot { width: 30px; height: 30px; border-radius: 8px; background: var(--ink); flex-shrink: 0; }
.mock__row .sum { font-weight: 700; font-family: var(--font-mono); white-space: nowrap; }
.mock__row .ok { color: var(--green); font-size: 12px; font-weight: 700; }

/* ---------- Код-блок ---------- */
.code-block {
  background: var(--ink); border-radius: var(--r-lg); padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 13.5px; line-height: 1.8; color: #D6DCE8; overflow-x: auto; box-shadow: var(--sh-lg);
}
.code-block .k{color:#60E090}.code-block .s{color:#7FCFA0}.code-block .n{color:#3B82F6}.code-block .c{color:#7A8290;font-style:italic}.code-block .f{color:#9DB8E0}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; animation: none !important; }
}

/* ---------- Утилиты ---------- */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}
.flex{display:flex;min-width:0}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}
.flex-wrap{flex-wrap:wrap}.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}
.hidden-mobile{}
@media(max-width:700px){.hidden-mobile{display:none!important}}


/* Уникальные иконки доверия в hero: щит вместо круглой галочки */
.trust-icon {
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 2px rgba(0, 166, 81, .18));
}

/* Hero trust badges: восстанавливаем исходные отступы между подписями */
.hero-trust {
  gap: 16px;
  font-size: 14px;
  line-height: 1.35;
}
.hero-trust__item {
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-trust__item .trust-icon {
  width: 18px;
  height: 18px;
}


/* Контраст для синей bento-карточки «1 день» */
.bento__cell--blue .bento__num,
.bento__cell--blue h3 {
  color: #FFFFFF;
}
.bento__cell--blue p {
  color: rgba(255,255,255,.90);
}
.bento__cell--blue .bento__icon--light {
  background: rgba(255,255,255,.20);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,.22);
}
.bento__cell--launch {
  min-height: 220px;
}

/* Hero trust labels: возвращаем исходный размер и начертание подписей */
.hero-trust-list {
  font-size: 14px;
  line-height: 1.35;
}
.hero-trust-item {
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-trust-item .trust-icon {
  width: 18px;
  height: 18px;
}


/* Финальная правка контраста: тёмный тикер и цветные bento-карточки */
.ticker-section { color: #FFFFFF; }
.ticker-section .text-center { color: rgba(255,255,255,.78) !important; }
.ticker__item { color: rgba(255,255,255,.88); opacity: 1; }
.ticker__item::before { color: var(--blue-l); opacity: 1; }

.bento__cell--ink p { color: rgba(255,255,255,.82) !important; }
.bento__cell--ink h3 { color: #FFFFFF !important; }
.bento__cell--ink .chip--ink { color: #5FA0FF; border-color: rgba(95,160,255,.28); }

.bento__cell--blue p { color: rgba(255,255,255,.94) !important; }
.bento__cell--blue .bento__num { color: #FFFFFF !important; }
.bento__cell--blue .bento__icon--light {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255,255,255,.22);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,.26);
}

.bento__cell--green p { color: rgba(255,255,255,.92) !important; }
.bento__cell--green h3 { color: #FFFFFF !important; }
 </style>