/* ============================================================
   ККК — main.css  v2.0
   Design System + Marketing Site Styles
   Fonts loaded via <link> in HTML head
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-white:    #FFFFFF;
  --bg-section:  #F8FAFC;
  --bg-canvas:   #F8FAFC;
  --bg-surface:  #FFFFFF;
  --border:      #E2E8F0;

  --primary-900: #0F2540;
  --primary-700: #1E3A5F;
  --primary-500: #2C5282;

  --accent-700: #00875A;
  --accent-600: #00B388;
  --accent-100: #D1FAE5;

  --warm-600:   #EC6F3F;
  --warm-500:   #F59E0B;
  --warm-100:   #FEF3C7;

  --success: #10B981;
  --warning: #F59E0B;
  --error:   #EF4444;
  --info:    #3B82F6;

  --text-heading: #0F172A;
  --text-body:    #334155;
  --text-muted:   #64748B;
  --fg-1: #0F172A;
  --fg-2: #334155;
  --fg-3: #64748B;
  --fg-on-dark:   #FFFFFF;
  --fg-on-dark-2: rgba(255,255,255,0.78);
  --fg-on-dark-3: rgba(255,255,255,0.52);

  --ink-100: #F1F5F9;
  --ink-200: #E2E8F0;
  --ink-300: #CBD5E1;
  --ink-400: #94A3B8;
  --ink-500: #64748B;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 999px;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --shadow-sm:     0 1px 3px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --shadow-md:     0 4px 16px rgba(10,22,40,.08), 0 2px 4px rgba(10,22,40,.04);
  --shadow-lg:     0 12px 32px rgba(10,22,40,.12), 0 4px 8px rgba(10,22,40,.06);
  --shadow-xl:     0 24px 64px rgba(10,22,40,.18);
  --shadow-accent: 0 8px 24px rgba(0,179,136,.28);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:  150ms;
  --dur-base:  240ms;
  --dur-slow:  400ms;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --fs-h1: 48px; --fs-h2: 36px; --fs-h3: 24px; --fs-h4: 20px; --fs-h5: 18px;
  --fs-body-lg: 18px; --fs-body: 16px; --fs-body-sm: 14px;
  --fs-caption: 13px;

  --lh-heading: 1.15; --lh-body: 1.6; --lh-tight: 1.3;
  --ls-heading: -0.01em;

  --container-max: 1280px;
  --container-pad: 80px;
}

@media (max-width: 768px) {
  :root {
    --fs-h1: 32px; --fs-h2: 26px; --fs-h3: 20px;
    --container-pad: 24px;
  }
}

/* ─── Reset + Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg-1);
  background: var(--bg-canvas);
}
img { display: block; max-width: 100%; }
a { color: var(--accent-700); text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1 { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h1); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }
h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h3); line-height: var(--lh-tight); }
h4 { font-family: var(--font-body); font-weight: 600; font-size: var(--fs-h4); line-height: var(--lh-tight); }
h5 { font-family: var(--font-body); font-weight: 600; font-size: var(--fs-h5); line-height: var(--lh-tight); }

.t-eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-600);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  background: rgba(0, 179, 136, 0.12);
  border: 1px solid rgba(0, 179, 136, 0.3);
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(0, 179, 136, 0.12);
}
.t-eyebrow .dot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 999px; background: var(--accent-600);
  flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border-radius: var(--radius-full); border: 0; cursor: pointer;
  transition: all .2s var(--ease-out);
  padding: 14px 24px; line-height: 1; text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-primary { background: var(--accent-600); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,179,136,.35); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-secondary { background: #fff; color: var(--primary-900); border: 1px solid var(--border); padding: 13px 23px; }
.btn-secondary:hover { background: var(--bg-section); border-color: var(--primary-700); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); padding: 13px 23px; backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.32); padding: 13px 23px; }
.btn-ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.btn-outline-navy { background: transparent; color: var(--primary-700); border: 2px solid var(--primary-700); padding: 13px 28px; font-weight: 600; letter-spacing: .01em; }
.btn-outline-navy:hover { background: var(--primary-700); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,.22); }

/* Кнопка "Демо кабинета" с пульсирующей точкой */
.btn-demo-live {
  background: rgba(236,111,63,.18); color: #fff;
  border: 1.5px solid rgba(236,111,63,.7); padding: 13px 23px;
  box-shadow: 0 0 22px rgba(236,111,63,.22);
  animation: demo-btn-breathe 3s ease-in-out infinite;
}
.btn-demo-live:hover {
  background: rgba(236,111,63,.32); border-color: var(--warm-600);
  box-shadow: 0 0 36px rgba(236,111,63,.42);
}
@keyframes demo-btn-breathe {
  0%, 100% { box-shadow: 0 0 16px rgba(236,111,63,.22); }
  50%       { box-shadow: 0 0 34px rgba(236,111,63,.48); }
}
.demo-live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--warm-600); flex-shrink: 0;
  box-shadow: 0 0 8px var(--warm-600);
  animation: demo-dot-pulse 1.4s ease-in-out infinite;
}
@keyframes demo-dot-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.5); opacity: .7; }
}

/* ─── Layout helpers ─────────────────────────────────────────── */
.kkk-section-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.kkk-section-head { max-width: 760px; margin: 0 0 56px; }
.kkk-section-head h2 { margin-top: 14px; }
.kkk-section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; max-width: none; }
.kkk-section-sub { color: var(--fg-2); margin-top: 14px; font-size: 17px; line-height: 1.55; max-width: 560px; }

/* ─── Scroll reveal ──────────────────────────────────────────── */
/* Progressive enhancement: контент виден без JS (для краулеров,
   превью-сервисов, пользователей с отключённым JS). Анимация
   появления при скролле активируется только при .js на <html>,
   который inline-скрипт в <head> ставит синхронно до парсинга body. */
.js .kkk-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.js .kkk-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ─── Header ─────────────────────────────────────────────────── */
.kkk-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s;
}
.kkk-header.is-scrolled { box-shadow: 0 4px 24px rgba(15,37,64,.08); }

/* ── Selling ticker (replaces old static bar) ── */
.kkk-ticker {
  background: var(--primary-900);
  overflow: hidden;
  height: 34px;
  display: flex; align-items: center;
}
.kkk-ticker__track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker-run 45s linear infinite;
  will-change: transform;
}
.kkk-ticker__track:hover { animation-play-state: paused; }
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.kkk-ticker__item {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  padding: 0 32px;
  display: inline-flex; align-items: center; gap: 8px;
}
.kkk-ticker__item strong { color: #fff; font-weight: 600; }
.kkk-ticker__sep {
  color: var(--accent-600);
  font-size: 16px; line-height: 1;
  padding: 0 4px;
  opacity: .6;
  user-select: none;
}
.kkk-ticker__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-600);
  display: inline-block;
  animation: kkk-pulse 2s infinite;
}

/* ── Header main bar ── */
.kkk-header__bar {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 72px;
  display: flex; align-items: center; gap: 32px;
  border-bottom: 1px solid var(--border);
}
.kkk-header.is-scrolled .kkk-header__bar { border-bottom-color: transparent; }
.kkk-header__logo {
  position: relative;
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
  padding: 4px 8px;
  isolation: isolate;
  text-decoration: none;
}
.kkk-logo-gem-svg {
  display: block; width: 56px; height: 56px;
  flex-shrink: 0;
  transition: transform .35s var(--ease-out);
}
.kkk-logo-text {
  display: flex; flex-direction: column; gap: 4px;
  line-height: 1;
}
.kkk-logo-mark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 26px;
  color: var(--primary-900);
  letter-spacing: .14em;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 1.5px solid var(--accent-600);
}
.kkk-logo-desc {
  font-family: var(--font-body);
  font-weight: 700; font-size: 8.5px;
  color: var(--text-muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
}
.kkk-header__logo:hover .kkk-logo-gem-svg { transform: scale(1.04); }
.kkk-header__logo:hover .kkk-logo-mark { color: var(--accent-700); }
.kkk-header__nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.kkk-header__link {
  color: var(--primary-900); font-weight: 600; font-size: 14px;
  text-decoration: none; position: relative; padding: 6px 0;
  transition: color .15s;
}
.kkk-header__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--accent-600);
  transition: width .25s var(--ease-out), left .25s var(--ease-out);
}
.kkk-header__link:hover::after { width: 100%; left: 0; }
.kkk-header__link--active { color: var(--accent-700); }
.kkk-header__link--active::after { width: 100%; left: 0; }
.kkk-header__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.kkk-header__phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-900); font-weight: 600; font-size: 13px;
  text-decoration: none; font-family: var(--font-mono);
  transition: color .15s;
  white-space: nowrap;
}
.kkk-header__phone:hover { color: var(--accent-700); }
.kkk-header__login {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-900); font-weight: 600; font-size: 13px;
  text-decoration: none; padding: 8px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-full);
  transition: all .2s var(--ease-out);
  white-space: nowrap;
}
.kkk-header__login:hover { border-color: var(--primary-700); color: var(--accent-700); background: var(--bg-section); }
.kkk-burger {
  display: none; background: none; border: 0; padding: 8px;
  cursor: pointer; color: var(--primary-900);
}

/* Mobile menu */
.kkk-mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 0 var(--container-pad);
  overflow: hidden; max-height: 0;
  transition: max-height .35s var(--ease-out), padding .35s var(--ease-out);
}
.kkk-mobile-menu.is-open { max-height: 440px; padding: 8px var(--container-pad) 20px; }
.kkk-mobile-menu a {
  padding: 14px 0; border-bottom: 1px solid var(--ink-100);
  color: var(--primary-900); text-decoration: none; font-weight: 500; font-size: 15px;
}
.kkk-mobile-menu a:last-child { border-bottom: 0; color: var(--accent-600); font-weight: 600; }

@media (max-width: 1280px) {
  .kkk-header__nav { gap: 20px; }
  .kkk-header__bar { gap: 20px; padding: 0 32px; }
  .kkk-header__login { display: none; }
}
@media (max-width: 1100px) {
  .kkk-header__nav { display: none; }
  .kkk-burger { display: block; }
  .kkk-mobile-menu { display: flex; }
}
@media (max-width: 700px) {
  .kkk-logo-gem-svg { width: 44px; height: 44px; }
  .kkk-logo-aura { width: 60px; height: 60px; }
  .kkk-logo-mark { font-size: 20px; }
  .kkk-logo-desc { font-size: 6.5px; letter-spacing: .08em; max-width: 140px; }
  .kkk-header__logo { gap: 10px; }
  .kkk-header__phone {
    font-size: 0; gap: 0; padding: 8px;
    background: var(--warm-600); color: #fff;
    border-radius: 50%; width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(236,111,63,.4);
  }
  .kkk-header__phone svg { width: 17px; height: 17px; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.kkk-hero {
  position: relative;
  min-height: 740px; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(15,37,64,.82) 0%, rgba(15,37,64,.92) 60%, rgba(0,87,90,.80) 100%),
    linear-gradient(135deg, #0F2540 0%, #1E3A5F 55%, #00875A 130%);
  box-shadow: inset 0 -60px 80px -40px rgba(5,14,31,.9);
}
/* Bottom fade-in to next section */
.kkk-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 80px; pointer-events: none; z-index: 4;
  background: linear-gradient(180deg, transparent 0%, rgba(5,14,31,.9) 100%);
}
.kkk-hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=2400&q=85');
  background-size: cover; background-position: center 30%;
  opacity: .28; mix-blend-mode: luminosity;
}
/* HUD grid overlay */
.kkk-hero__hud {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(0,179,136,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,136,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
}
/* Mouse-follow glow */
.kkk-hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  transition: background .08s linear;
  mix-blend-mode: screen;
}
.kkk-hero__inner {
  position: relative; z-index: 3;
  max-width: var(--container-max); margin: 0 auto;
  padding: 120px var(--container-pad);
  width: 100%;
  display: flex; align-items: center;
  gap: 64px; justify-content: space-between;
}
.kkk-hero__content { flex: 1; max-width: 620px; }
.kkk-hero__eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  color: var(--accent-600); text-transform: uppercase; letter-spacing: 0.24em;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.kkk-hero__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent-600); }
.kkk-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5.5vw, 72px); line-height: 1.05; letter-spacing: -0.02em;
  color: #fff;
}
.kkk-hero__sub {
  margin-top: 20px; max-width: 560px;
  color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.55;
}
.kkk-hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Hero command panel ─────────────────────────────────────── */
.kkk-hero__panel {
  flex-shrink: 0;
  width: 300px;
  background: rgba(8, 18, 34, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,179,136,.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 0 1px rgba(0,179,136,.08),
    0 30px 60px rgba(0,0,0,.42),
    0 22px 48px -6px rgba(236,111,63,.28),
    0 50px 100px -18px rgba(236,111,63,.22);
  animation: panel-appear .9s var(--ease-out) .2s both;
}
@keyframes panel-appear {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.kkk-panel__header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.5); letter-spacing: .04em;
}
.kkk-panel__live-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-600);
  box-shadow: 0 0 0 0 rgba(0,179,136,.7);
  animation: kkk-pulse 2s infinite;
}
.kkk-panel__time { margin-left: auto; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600; }
/* ── Slides wrapper ── */
.kkk-panel__slides {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.kkk-panel__slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.kkk-panel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.kkk-panel__slide.is-leaving {
  opacity: 0;
  pointer-events: none;
}
/* ── Slide heading ── */
.kkk-panel__slide-title {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.85); letter-spacing: .06em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.kkk-panel__slide-icon { display: flex; align-items: center; flex-shrink: 0; }
/* ── Dots navigation ── */
.kkk-panel__dots {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px 6px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.kkk-panel__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: none; padding: 0; cursor: pointer;
  transition: background .25s, transform .25s;
}
.kkk-panel__dot.is-active {
  background: var(--accent-600);
  transform: scale(1.4);
}
.kkk-panel__dot:hover:not(.is-active) { background: rgba(255,255,255,.45); }
/* ── Rows (unchanged style, now inside slides) ── */
.kkk-panel__rows { padding: 4px 0; }
.kkk-panel__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 18px;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.62);
  transition: background .2s;
}
.kkk-panel__row:hover { background: rgba(255,255,255,.04); }
.kkk-panel__tag {
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  transition: all .3s;
}
.kkk-panel__tag--ok  { background: rgba(0,179,136,.22); color: #FFFFFF; }
.kkk-panel__tag--warn { background: rgba(245,158,11,.25); color: #F59E0B; }
.kkk-panel__tag.flash {
  animation: tag-flash .5s var(--ease-out);
}
@keyframes tag-flash {
  0%   { background: rgba(0,179,136,.5); color: #fff; transform: scale(1.12); }
  100% { }
}
.kkk-panel__footer {
  padding: 9px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,.28);
  display: flex; align-items: center; gap: 6px;
}
.kkk-panel__refresh { animation: spin-slow 10s linear infinite; display: inline-block; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .kkk-hero__panel { width: 260px; }
}
@media (max-width: 880px) {
  .kkk-hero__inner { flex-direction: column; gap: 40px; padding: 80px var(--container-pad); }
  .kkk-hero__panel { width: 100%; max-width: 480px; }
}
@media (max-width: 500px) {
  .kkk-hero { min-height: auto; }
}

/* ─── Operational proof — dark control-room theme ────────────── */
.kkk-proof {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,179,136,.18), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(236,111,63,.12), transparent 55%),
    linear-gradient(180deg, #050E1F 0%, #08172E 100%);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* SEAM — bright top edge separating from Hero */
.kkk-proof::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,179,136,.4) 15%,
    var(--accent-600) 35%,
    var(--accent-600) 65%,
    rgba(0,179,136,.4) 85%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(0,179,136,.7), 0 0 48px rgba(0,179,136,.4);
  z-index: 3;
}
/* "Console" notch above the seam — visual handshake to hero */
.kkk-proof::after {
  content: ""; position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--accent-600);
  box-shadow: 0 0 20px var(--accent-600), 0 0 40px rgba(0,179,136,.5);
  z-index: 4;
}
.kkk-proof__grid-bg {
  position: absolute; inset: -2px; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,179,136,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,136,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 65%, transparent 100%);
  animation: grid-drift 24s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}
.kkk-proof__scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,179,136,.6) 50%, transparent 100%);
  z-index: 1; pointer-events: none;
  animation: scan-sweep 8s linear infinite;
}
@keyframes scan-sweep {
  0%   { top: -2px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.kkk-proof__inner {
  position: relative; z-index: 2;
  max-width: var(--container-max); margin: 0 auto;
  padding: 88px var(--container-pad) 96px;
}
.kkk-proof__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 12px;
}
.kkk-proof .t-eyebrow { color: var(--accent-600); }
.kkk-proof__live {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.55); letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.kkk-proof__live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-600); animation: kkk-pulse 2s infinite; }
.kkk-proof__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 24px 64px rgba(0,0,0,.35);
}
.kkk-proof__cell {
  position: relative;
  background: linear-gradient(180deg, rgba(15,37,64,.92) 0%, rgba(11,27,51,.96) 100%);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .35s var(--ease-out);
  overflow: hidden;
  cursor: default;
}
.kkk-proof__cell::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,179,136,.22), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.kkk-proof__cell::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-600) 50%, transparent 100%);
  transform: scaleX(0); transform-origin: center;
  transition: transform .5s var(--ease-out);
}
.kkk-proof__cell:hover::before { opacity: 1; }
.kkk-proof__cell:hover::after  { transform: scaleX(1); }
.kkk-proof__cell:hover .kkk-proof__num-value {
  text-shadow: 0 0 24px rgba(0,179,136,.6), 0 0 64px rgba(0,179,136,.3);
}
.kkk-proof__cell-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  position: relative; z-index: 2;
}
.kkk-proof__cell-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,179,136,.14);
  border: 1px solid rgba(0,179,136,.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-600);
  transition: all .3s var(--ease-out);
}
.kkk-proof__cell:hover .kkk-proof__cell-icon {
  background: rgba(0,179,136,.28);
  border-color: var(--accent-600);
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(0,179,136,.4);
}
.kkk-proof__spark { display: block; opacity: .85; }
.kkk-proof__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 5.2vw, 68px);
  line-height: 1; letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 4px;
  position: relative; z-index: 2;
  margin: 6px 0 2px;
}
.kkk-proof__num-value {
  background: linear-gradient(180deg, #FFFFFF 0%, #BFE3D6 60%, #00B388 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(0,179,136,.35);
  transition: text-shadow .4s var(--ease-out);
}
.kkk-proof__num-suffix {
  font-family: var(--font-mono); font-size: 22px;
  color: var(--accent-600); font-weight: 500;
  -webkit-text-fill-color: var(--accent-600);
}
.kkk-proof__label {
  font-size: 14px; color: rgba(255,255,255,.86); font-weight: 600;
  position: relative; z-index: 2;
  letter-spacing: -0.005em;
}
.kkk-proof__sub {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 6px;
  position: relative; z-index: 2;
  letter-spacing: .02em;
}
.kkk-proof__delta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
}
.kkk-proof__delta.is-up   { background: rgba(0,179,136,.22); color: var(--accent-600); }
.kkk-proof__delta.is-down { background: rgba(236,111,63,.22); color: var(--warm-600); }

@media (max-width: 900px) {
  .kkk-proof__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 500px) {
  .kkk-proof__grid { grid-template-columns: 1fr; }
  .kkk-proof__inner { padding: 64px var(--container-pad) 72px; }
}

/* ─── Trust Bar (calculator page) ───────────────────────────── */
.kkk-trust {
  position: relative;
  background: linear-gradient(180deg, #050E1F 0%, #08172E 100%);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.kkk-trust::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,179,136,.5) 20%, var(--accent-600) 50%, rgba(0,179,136,.5) 80%, transparent 100%);
  box-shadow: 0 0 20px rgba(0,179,136,.6);
  z-index: 3;
}
.kkk-trust__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,179,136,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,136,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
  animation: grid-drift 24s linear infinite;
}
.kkk-trust__inner {
  position: relative; z-index: 2;
  max-width: var(--container-max); margin: 0 auto;
  padding: 52px var(--container-pad);
}
.kkk-trust__stats {
  display: flex; align-items: center; justify-content: space-between;
}
.kkk-trust__stat {
  flex: 1; text-align: center; padding: 12px 20px;
  cursor: default; transition: transform .25s var(--ease-out);
}
.kkk-trust__stat:hover { transform: translateY(-5px); }
.kkk-trust__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1; letter-spacing: -0.03em;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  margin-bottom: 10px;
}
.kkk-trust__num-value {
  background: linear-gradient(180deg, #FFFFFF 0%, #9DD4C3 55%, #00B388 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  transition: filter .3s var(--ease-out);
}
.kkk-trust__stat:hover .kkk-trust__num-value {
  filter: drop-shadow(0 0 14px rgba(0,179,136,.75));
}
.kkk-trust__num-prefix {
  font-family: var(--font-mono); font-size: 0.42em; font-weight: 600;
  color: var(--accent-600); -webkit-text-fill-color: var(--accent-600);
  letter-spacing: .08em; align-self: center; margin-right: 2px;
}
.kkk-trust__num-suffix {
  font-family: var(--font-mono); font-size: 0.42em; font-weight: 500;
  color: var(--accent-600); -webkit-text-fill-color: var(--accent-600);
  letter-spacing: .02em; align-self: flex-end; padding-bottom: 3px;
}
.kkk-trust__stat--orange .kkk-trust__num-value {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5B08A 50%, #EC6F3F 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.kkk-trust__stat--orange .kkk-trust__num-prefix,
.kkk-trust__stat--orange .kkk-trust__num-suffix {
  color: var(--warm-600); -webkit-text-fill-color: var(--warm-600);
}
.kkk-trust__stat--orange:hover .kkk-trust__num-value {
  filter: drop-shadow(0 0 14px rgba(236,111,63,.75));
}
.kkk-trust__label {
  font-size: 13px; color: rgba(255,255,255,.52);
  font-weight: 500; letter-spacing: .01em;
}
.kkk-trust__divider {
  width: 1px; height: 60px; flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.13) 30%, rgba(255,255,255,.13) 70%, transparent);
}
@media (max-width: 860px) {
  .kkk-trust__stats { flex-wrap: wrap; gap: 8px 0; }
  .kkk-trust__stat { flex: 0 0 50%; }
  .kkk-trust__divider { display: none; }
  .kkk-trust__inner { padding: 40px var(--container-pad); }
}
@media (max-width: 400px) {
  .kkk-trust__stat { flex: 0 0 100%; }
  .kkk-trust__num { font-size: 40px; }
}

/* ─── Industries ─────────────────────────────────────────────── */
.kkk-ind { padding: 120px 0; background: var(--bg-section); }
.kkk-ind__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.kkk-ind__card {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--primary-900); color: #fff;
  border: 2px solid transparent;
  transition: all .3s var(--ease-out); text-decoration: none;
  display: block;
}
.kkk-ind__card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .52; transition: opacity .3s, transform .5s;
}
.kkk-ind__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,22,40,.9) 100%);
}
.kkk-ind__card-body {
  position: absolute; inset: auto 22px 22px; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.kkk-ind__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; }
.kkk-ind__card-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; flex-shrink: 0;
}
.kkk-ind__card:hover { border-color: var(--warm-600); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(236,111,63,.2); }
.kkk-ind__card:hover img { opacity: .68; transform: scale(1.06); }
.kkk-ind__card:hover .kkk-ind__card-arrow { background: var(--warm-600); }

@media (max-width: 900px) { .kkk-ind__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .kkk-ind__grid { grid-template-columns: 1fr; } }

/* ─── Services ───────────────────────────────────────────────── */
.kkk-svc {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #EBF0FA 0%, #DDE6F5 100%);
  overflow: hidden;
}
.kkk-svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,37,64,.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 80%);
}
.kkk-svc__groups { margin-top: 48px; display: flex; flex-direction: column; gap: 88px; }
.kkk-svc__group { position: relative; }
.kkk-svc__group::before {
  content: ""; display: block;
  width: 56px; height: 3px;
  background: var(--warm-600);
  margin-bottom: 20px;
  border-radius: 2px;
}
.kkk-svc__cat-title {
  width: 100%;
  font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.15;
  color: var(--primary-900); padding-bottom: 20px;
  display: flex; align-items: baseline; gap: 16px;
  background: none; border: none;
  text-align: left; cursor: default;
}
.kkk-svc__cat-title-num {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 36px; line-height: 1;
  color: var(--accent-600);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.kkk-svc__acc-chevron { display: none; margin-left: auto; flex-shrink: 0; align-self: center; }
.kkk-svc__group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .kkk-svc__group-grid { grid-template-columns: repeat(2, 1fr); }
}
.kkk-svc-card {
  position: relative;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition:
    transform .35s var(--ease-out),
    border-color .25s var(--ease-out),
    box-shadow .35s var(--ease-out);
  cursor: pointer;
}
/* top gradient bar on hover */
.kkk-svc-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
  z-index: 2;
}
/* photo wrapper */
.kkk-svc-card__photo {
  height: 200px; overflow: hidden; flex-shrink: 0;
}
.kkk-svc-card__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease-out);
}
/* text body */
.kkk-svc-card__body {
  padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.kkk-svc-card__icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .4s var(--ease-out), box-shadow .3s;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(59,130,246,.45), 0 1px 4px rgba(29,78,216,.18);
}
.kkk-svc-card h4 { font-weight: 700; color: var(--primary-900); font-size: 15px; margin: 0; }
.kkk-svc-card p { font-size: 13px; color: var(--text-muted); line-height: 1.45; margin: 0; flex: 1; }
.kkk-svc-card__more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--accent-600);
  margin-top: auto;
  transition: gap .2s var(--ease-out);
}
/* hover states */
.kkk-svc-card:hover {
  border-color: var(--primary-500);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30,58,95,.18), 0 2px 8px rgba(30,58,95,.08);
}
.kkk-svc-card:hover::after { transform: scaleX(1); }
.kkk-svc-card:hover .kkk-svc-card__photo img { transform: scale(1.05); }
.kkk-svc-card:hover .kkk-svc-card__icon {
  background: linear-gradient(145deg, #60A5FA, #2563EB);
  box-shadow: 0 6px 22px rgba(59,130,246,.6), 0 2px 8px rgba(29,78,216,.22);
}
.kkk-svc-card:hover .kkk-svc-card__more { gap: 7px; }

@media (max-width: 768px) {
  .kkk-svc__groups { gap: 56px; }
  .kkk-svc__group::before { width: 44px; height: 2px; margin-bottom: 14px; }
  .kkk-svc__cat-title { font-size: 19px; padding-bottom: 14px; gap: 12px; }
  .kkk-svc__cat-title-num { font-size: 26px; }
}
@media (max-width: 600px) {
  .kkk-svc__groups { gap: 0; }
  .kkk-svc__group::before { display: none; }
  .kkk-svc__cat-title {
    font-size: 17px;
    cursor: pointer;
    justify-content: space-between;
    padding: 16px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,.10);
  }
  .kkk-svc__cat-title-num { font-size: 22px; }
  .kkk-svc__acc-chevron {
    display: block;
    transition: transform .3s ease;
  }
  .kkk-svc__cat-title[aria-expanded="false"] .kkk-svc__acc-chevron {
    transform: rotate(-90deg);
  }
  .kkk-svc__group-grid { grid-template-columns: 1fr; }
  .kkk-svc__group-grid.svc-hidden { display: none; }
}

/* ─── Platform ───────────────────────────────────────────────── */
.kkk-platform {
  padding: 120px 0; background: var(--bg-section);
  position: relative; overflow: hidden;
}
.kkk-platform__inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 56px; align-items: center;
}
.kkk-platform h2 { color: var(--text-heading); margin-top: 14px; }
.kkk-platform h2 .kkk-sec__hl { white-space: normal; }
.kkk-platform .t-eyebrow { color: var(--accent-600); }
.kkk-platform__lead { color: var(--fg-2); margin: 18px 0 28px; font-size: 17px; line-height: 1.55; }
.kkk-platform__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.kkk-platform__feature { display: flex; gap: 16px; align-items: flex-start; }
.kkk-platform__feature-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,179,136,.14); color: var(--accent-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kkk-platform__feature h4 { color: var(--fg-1); font-size: 15px; margin-bottom: 3px; }
.kkk-platform__feature p { color: var(--fg-2); font-size: 13px; line-height: 1.45; }
/* btn-light не читается на светлом фоне — заменяем на primary */
.kkk-platform .btn-light {
  background: var(--accent-600); color: #fff;
  border: none; box-shadow: var(--shadow-accent);
  backdrop-filter: none;
}
.kkk-platform .btn-light:hover {
  background: var(--accent-700); color: #fff;
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,179,136,.35);
}

/* Animated mock */
.kkk-platform__mock {
  background: linear-gradient(145deg, #1A3055, #0F2540);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 20px; box-shadow: var(--shadow-xl);
}
.kkk-platform__mock-bar { display: flex; gap: 6px; margin-bottom: 16px; align-items: center; }
.kkk-platform__mock-bar span:not(.mock-live) { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.mock-live {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  color: var(--accent-600); display: inline-flex; align-items: center; gap: 5px;
}
.mock-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-600); flex-shrink: 0;
  animation: kkk-pulse 2s infinite;
}
.kkk-platform__mock-rows { display: flex; flex-direction: column; gap: 8px; min-height: 264px; }
.kkk-platform__mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.72); transition: all .4s var(--ease-out);
}
.kkk-platform__mock-row span:first-child { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kkk-platform__mock-row.row-new {
  animation: row-slide-in .4s var(--ease-out) both;
}
@keyframes row-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kkk-platform__mock-row.row-done {
  animation: row-complete .5s var(--ease-out);
}
@keyframes row-complete {
  0%   { background: rgba(0,179,136,.2); border-color: rgba(0,179,136,.4); }
  100% { }
}
.kkk-platform__mock-pill {
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
}
.kkk-platform__mock-pill.ok   { background: rgba(0,179,136,.2); color: var(--accent-600); }
.kkk-platform__mock-pill.warn { background: rgba(245,158,11,.2); color: var(--warm-500); }
.kkk-platform__mock-pill.err  { background: rgba(239,68,68,.2); color: var(--error); }

@media (max-width: 900px) { .kkk-platform__inner { grid-template-columns: 1fr; } }

/* ─── Dashboard Preview ──────────────────────────────────────── */
.kkk-db {
  background: #0a1628;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  max-height: 520px;
}
.kkk-db::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0a1628);
  pointer-events: none;
  z-index: 2;
}
.kkk-db::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(0,179,136,.07), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(15,37,64,.5), transparent 50%);
  pointer-events: none;
}
.kkk-db__header {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--accent-600);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kkk-db__header::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-600);
  flex-shrink: 0;
  animation: kkk-pulse 2s infinite;
}
/* row 1: cleaning status + sla */
.kkk-db__row1 { display: grid; grid-template-columns: 1fr 168px; gap: 12px; margin-bottom: 12px; }
/* row 2: remarks + nps + risks */
.kkk-db__row2 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 12px; }
/* row 3: docs full width */
.kkk-db__row3 { margin-bottom: 12px; }
/* row 4: team full width */
.kkk-db__row4 {}

/* Panel card */
.kkk-db-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px;
}
.kkk-db-panel__title {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Cleaning status */
.kkk-db-zones { display: flex; flex-direction: column; gap: 5px; }
.kkk-db-zone {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,.75);
  padding: 6px 8px;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
}
.kkk-db-zone__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.kkk-db-zone__dot--green { background: #00B388; box-shadow: 0 0 6px rgba(0,179,136,.6); }
.kkk-db-zone__dot--orange { background: #EC6F3F; box-shadow: 0 0 6px rgba(236,111,63,.6); animation: kkk-pulse 1.5s infinite; }
.kkk-db-zone__name { font-weight: 600; min-width: 82px; font-size: 11px; color: #fff; }
.kkk-db-zone__status { flex: 1; }
.kkk-db-zone__status--progress { color: #EC6F3F; font-weight: 600; }
.kkk-db-zone__time { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.38); margin-left: auto; }

/* SLA panel */
.kkk-db-sla { min-width: 0; }
.kkk-db-sla__big {
  font-family: var(--font-mono);
  font-size: 32px; font-weight: 600;
  color: var(--accent-600);
  line-height: 1; margin-bottom: 4px;
  text-shadow: 0 0 24px rgba(0,179,136,.4);
}
.kkk-db-sla__label {
  font-size: 10px; color: rgba(255,255,255,.45);
  line-height: 1.3; margin-bottom: 10px;
}
.kkk-db-sla__mini { display: flex; gap: 6px; margin-bottom: 10px; }
.kkk-db-sla__mini-block {
  flex: 1; text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 6px 4px;
}
.kkk-db-sla__mini-num {
  font-family: var(--font-mono);
  font-size: 16px; font-weight: 600; color: #fff;
  display: block;
}
.kkk-db-sla__mini-lbl { font-size: 9px; color: rgba(255,255,255,.38); }
.kkk-db-sla__stats { display: flex; flex-direction: column; gap: 4px; }
.kkk-db-sla__stat {
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,.5);
  padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.kkk-db-sla__stat:last-child { border-bottom: none; }
.kkk-db-sla__stat span:last-child { color: rgba(255,255,255,.8); font-weight: 600; font-family: var(--font-mono); }

/* Remarks */
.kkk-db-remarks { }
.kkk-db-remarks__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.kkk-db-remarks__btn {
  font-size: 9px; color: var(--accent-600);
  border: 1px solid rgba(0,179,136,.3);
  border-radius: 4px; padding: 2px 7px;
  background: rgba(0,179,136,.07);
  cursor: default;
}
.kkk-db-remark {
  display: flex; flex-direction: column; gap: 2px;
  padding: 7px 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 10px;
}
.kkk-db-remark:last-child { border-bottom: none; }
.kkk-db-remark__date { font-family: var(--font-mono); color: rgba(255,255,255,.32); font-size: 9px; }
.kkk-db-remark__text { color: rgba(255,255,255,.72); line-height: 1.3; }
.kkk-db-badge {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: 9px; font-weight: 600; align-self: flex-start;
}
.kkk-db-badge--green { background: rgba(0,179,136,.18); color: #00B388; }
.kkk-db-badge--orange { background: rgba(236,111,63,.18); color: #EC6F3F; }
.kkk-db-badge--red { background: rgba(239,68,68,.18); color: #EF4444; }
.kkk-db-badge--blue { background: rgba(59,130,246,.18); color: #3B82F6; }
.kkk-db-badge--yellow { background: rgba(245,158,11,.18); color: #F59E0B; }

/* NPS */
.kkk-db-nps__big {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 600;
  color: var(--accent-600); line-height: 1;
  margin-bottom: 2px;
}
.kkk-db-nps__sub { font-size: 9px; color: rgba(255,255,255,.38); margin-bottom: 10px; }
.kkk-db-nps__chart { display: flex; gap: 3px; align-items: flex-end; height: 36px; margin-bottom: 8px; }
.kkk-db-nps__bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, rgba(0,179,136,.7), rgba(0,179,136,.3));
}
.kkk-db-nps__months {
  display: flex; gap: 3px;
  font-family: var(--font-mono); font-size: 8px;
  color: rgba(255,255,255,.28); margin-bottom: 8px;
}
.kkk-db-nps__months span { flex: 1; text-align: center; }
.kkk-db-nps__years {
  display: flex; gap: 4px; justify-content: center;
}
.kkk-db-nps__year {
  font-size: 9px; padding: 2px 8px; border-radius: 4px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.35);
  cursor: default;
}
.kkk-db-nps__year--active {
  background: rgba(0,179,136,.2);
  color: var(--accent-600);
}

/* Risks */
.kkk-db-risk {
  display: flex; flex-direction: column; gap: 2px;
  padding: 7px 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 10px;
}
.kkk-db-risk:last-child { border-bottom: none; }
.kkk-db-risk__name { color: rgba(255,255,255,.78); font-weight: 600; font-size: 10px; }
.kkk-db-risk__desc { color: rgba(255,255,255,.42); font-size: 9px; line-height: 1.3; }
.kkk-db-risk__row { display: flex; align-items: center; justify-content: space-between; }

/* Docs */
.kkk-db-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.kkk-db-doc {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.kkk-db-doc__icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(236,111,63,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kkk-db-doc__name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.85); }
.kkk-db-doc__meta { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,.35); }
.kkk-db-doc__btn {
  margin-top: auto; display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 600;
  color: var(--accent-600);
  border: 1px solid rgba(0,179,136,.3);
  border-radius: 4px; padding: 4px 10px;
  background: rgba(0,179,136,.07);
  cursor: default; align-self: flex-start;
}

/* Team */
.kkk-db-team { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kkk-db-member {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}
.kkk-db-member__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #1E3A5F, #2C5282);
  border: 2px solid rgba(0,179,136,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--accent-600); flex-shrink: 0;
}
.kkk-db-member__role {
  font-family: var(--font-mono);
  font-size: 8px; letter-spacing: .1em;
  color: rgba(255,255,255,.35); text-transform: uppercase;
  margin-bottom: 2px;
}
.kkk-db-member__name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.kkk-db-member__desc { font-size: 10px; color: rgba(255,255,255,.42); line-height: 1.3; margin-bottom: 8px; }
.kkk-db-member__btns { display: flex; flex-wrap: wrap; gap: 4px; }
.kkk-db-member__btn {
  font-size: 9px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  cursor: default;
}
.kkk-db-member__btn--green {
  border-color: rgba(0,179,136,.35);
  background: rgba(0,179,136,.1);
  color: var(--accent-600);
}

/* ─── Cases ──────────────────────────────────────────────────── */
.kkk-cases {
  padding: 120px 0;
  background: #fff;
  position: relative;
}
.kkk-cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,179,136,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,136,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.kkk-cases__row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.kkk-case {
  display: flex; flex-direction: column; background: var(--bg-section);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .25s var(--ease-out); text-decoration: none;
}
.kkk-case:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent-100); }
.kkk-case__photo { aspect-ratio: 16/10; overflow: hidden; }
.kkk-case__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.kkk-case:hover .kkk-case__photo img { transform: scale(1.04); }
.kkk-case__body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.kkk-case__type { font-family: var(--font-mono); font-size: 11px; color: var(--accent-700); text-transform: uppercase; letter-spacing: .1em; }
.kkk-case h3 { font-size: 18px; color: var(--primary-900); }
.kkk-case__metrics { display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.kkk-case__metric-num { font-family: var(--font-mono); font-weight: 600; font-size: 20px; color: var(--accent-700); }
.kkk-case__metric-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) { .kkk-cases__row { grid-template-columns: 1fr; } }

/* ─── Why ккк — main reasons ─────────────────────────────────── */
/* ══════════════════════ WHY ══════════════════════ */
.kkk-why {
  padding: 110px 0 100px;
  position: relative;
  background: linear-gradient(180deg, #EBF4FF 0%, #DBEAFE 55%, #EBF4FF 100%);
  overflow: hidden;
}
.kkk-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 85%);
}
.kkk-why .kkk-section-inner { position: relative; z-index: 1; }

/* Grid: 12-col, regular span 4 (3/row), accent span 6 (2/row) */
.kkk-why__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.kkk-why-card         { grid-column: span 4; }
.kkk-why-card--accent { grid-column: span 6; }

/* ── Base card ── */
.kkk-why-card {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(186,215,255,.65);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 2px 6px rgba(30,58,95,.04), 0 8px 24px rgba(30,58,95,.07);
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s var(--ease-out),
    border-color .25s var(--ease-out);
  display: flex;
  flex-direction: column;
}

/* Colored top-border stripe */
.kkk-why-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: .5;
  transition: opacity .3s var(--ease-out);
}
.kkk-why-card:hover::after { opacity: 1; }
.kkk-why-card--green::after  { background: linear-gradient(90deg, var(--accent-600), rgba(0,179,136,.2)); }
.kkk-why-card--orange::after { background: linear-gradient(90deg, var(--warm-600),   rgba(236,111,63,.2)); }
.kkk-why-card--navy::after   { background: linear-gradient(90deg, var(--primary-500), rgba(44,82,130,.2)); }

/* ── Icon — iOS app-icon style ── */
.kkk-why-card__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: transform .35s var(--ease-out);
  color: #fff;
}
.kkk-why-card__icon svg { width: 32px; height: 32px; }
.kkk-why-card:hover .kkk-why-card__icon { transform: translateY(-4px) scale(1.07); }

.kkk-why-card--green .kkk-why-card__icon {
  background: linear-gradient(145deg, #00C99A, #00916A);
  box-shadow: 0 8px 24px rgba(0,179,136,.35);
}
.kkk-why-card--orange .kkk-why-card__icon {
  background: linear-gradient(145deg, #F4854E, #D4531E);
  box-shadow: 0 8px 24px rgba(236,111,63,.38);
}
.kkk-why-card--navy .kkk-why-card__icon {
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  box-shadow: 0 8px 28px rgba(59,130,246,.55), 0 2px 8px rgba(29,78,216,.2);
}

/* ── Label & text ── */
.kkk-why-card__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 7px;
}
.kkk-why-card--green .kkk-why-card__num  { color: var(--accent-600); }
.kkk-why-card--orange .kkk-why-card__num { color: var(--warm-600); }
.kkk-why-card--navy .kkk-why-card__num   { color: var(--primary-500); }

.kkk-why-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary-900);
  margin-bottom: 8px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.kkk-why-card p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}

/* ── Big stat number at card bottom ── */
.kkk-why-card__stat {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.04em;
}
.kkk-why-card__stat sup {
  font-size: 18px;
  vertical-align: .18em;
  font-weight: 700;
  letter-spacing: 0;
}
.kkk-why-card--green .kkk-why-card__stat  { color: var(--accent-600); }
.kkk-why-card--orange .kkk-why-card__stat { color: var(--warm-600); }
.kkk-why-card--navy .kkk-why-card__stat   { color: var(--primary-700); }

.kkk-why-card__stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ── Hover ── */
.kkk-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(30,58,95,.06), 0 20px 48px rgba(30,58,95,.12);
}
.kkk-why-card--green:hover  { border-color: rgba(0,179,136,.32); }
.kkk-why-card--orange:hover { border-color: rgba(236,111,63,.32); }
.kkk-why-card--navy:hover   { border-color: rgba(30,58,95,.24); }

/* ── Progress bar ── */
.kkk-why-card__progress {
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 3px;
  border-radius: 0 3px 0 var(--radius-lg);
  transition: width .9s var(--ease-out);
  z-index: 3;
}
.kkk-why-card--green .kkk-why-card__progress  { background: linear-gradient(90deg, var(--accent-600), rgba(0,179,136,.3)); }
.kkk-why-card--orange .kkk-why-card__progress { background: linear-gradient(90deg, var(--warm-600), rgba(236,111,63,.3)); }
.kkk-why-card--navy .kkk-why-card__progress   { background: linear-gradient(90deg, var(--primary-500), rgba(44,82,130,.3)); }
.kkk-why-card:hover .kkk-why-card__progress   { width: 100%; }

/* ── Accent cards 07-08: wide horizontal layout ── */
.kkk-why-card--accent {
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
}
.kkk-why-card--accent.kkk-why-card--navy {
  background: linear-gradient(135deg, #EFF6FF 0%, #F8FBFF 100%);
  border-color: rgba(30,58,95,.14);
}
.kkk-why-card--accent.kkk-why-card--orange {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFBF5 100%);
  border-color: rgba(236,111,63,.2);
}
.kkk-why-card--accent .kkk-why-card__icon {
  width: 68px; height: 68px; border-radius: 18px;
  margin-bottom: 0;
  flex-shrink: 0;
  align-self: flex-start;
}
.kkk-why-card--accent .kkk-why-card__icon svg { width: 30px; height: 30px; }
.kkk-why-card--accent .kkk-why-card__body { flex: 1; min-width: 0; }
.kkk-why-card--accent h4 { font-size: 21px; line-height: 1.25; margin-bottom: 8px; }
.kkk-why-card--accent p  { font-size: 13.5px; }
.kkk-why-card--accent .kkk-why-card__stat {
  flex-shrink: 0;
  margin-top: 0;
  padding-left: 28px;
  border-left: 1.5px solid rgba(0,0,0,.07);
  text-align: right;
  font-size: 52px;
  align-self: center;
}
.kkk-why-card--accent .kkk-why-card__stat-label { text-align: right; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .kkk-why-card         { grid-column: span 6; }
  .kkk-why-card--accent {
    grid-column: span 12;
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    align-items: flex-start;
  }
  .kkk-why-card--accent .kkk-why-card__stat {
    margin-top: 16px;
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 1.5px solid rgba(0,0,0,.07);
    text-align: left;
    font-size: 44px;
    align-self: auto;
  }
  .kkk-why-card--accent .kkk-why-card__stat-label { text-align: left; }
}
@media (max-width: 600px) {
  .kkk-why-card         { grid-column: span 12; }
  .kkk-why-card--accent { grid-column: span 12; }
}

/* ─── CTA form ───────────────────────────────────────────────── */
.kkk-cta { padding: 120px 0; background: #fff; }
.kkk-cta__box {
  background: linear-gradient(145deg, var(--primary-900) 0%, var(--primary-700) 55%, #005C40 130%);
  color: #fff; border-radius: 24px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
.kkk-cta__box::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,179,136,.15), transparent 70%);
  pointer-events: none;
}
.kkk-cta__box h2 { color: #fff; margin-top: 14px; }
.kkk-cta__box .t-eyebrow { color: var(--accent-600); }
.kkk-cta__lead { color: rgba(255,255,255,.75); margin-top: 14px; font-size: 16px; line-height: 1.55; }
.kkk-cta__form { display: flex; flex-direction: column; gap: 11px; position: relative; z-index: 2; }
.kkk-cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.kkk-cta__input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; border-radius: 10px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px; outline: 0;
  transition: border-color .15s; width: 100%;
}
.kkk-cta__input::placeholder { color: rgba(255,255,255,.45); }
.kkk-cta__input:focus { border-color: var(--accent-600); background: rgba(255,255,255,.11); }
textarea.kkk-cta__input { resize: vertical; min-height: 80px; }
.kkk-cta__guarantee { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

@media (max-width: 900px) { .kkk-cta__box { grid-template-columns: 1fr; padding: 40px 28px; } .kkk-cta__row { grid-template-columns: 1fr; } }

/* ─── Footer ─────────────────────────────────────────────────── */
.kkk-footer {
  background: var(--primary-900); color: #fff; padding: 0 0 32px;
  position: relative;
}
.kkk-footer::before {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--accent-700) 0%, var(--accent-600) 50%, var(--warm-600) 100%);
}
.kkk-footer__inner-wrap { max-width: var(--container-max); margin: 0 auto; padding: 64px var(--container-pad) 48px; }
.kkk-footer__top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 48px;
  flex-wrap: wrap;
}
.kkk-footer__logo {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
}
.kkk-footer__gem { display: block; flex-shrink: 0; }
.kkk-footer__logo-text { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.kkk-footer__logo-mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; color: #fff;
  letter-spacing: .14em;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--accent-600);
}
.kkk-footer__logo-desc {
  font-family: var(--font-body); font-weight: 500;
  font-size: 9px; color: rgba(255,255,255,.55);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 2px;
}
.kkk-footer__brand-block { display: flex; flex-direction: column; gap: 6px; }
.kkk-footer__slogan { font-weight: 600; font-size: 12px; color: var(--accent-600); text-transform: uppercase; letter-spacing: .2em; }
.kkk-footer__descriptor { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; }
.kkk-footer__top-actions { display: flex; gap: 12px; align-items: center; }
.kkk-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
.kkk-footer__brand p { color: rgba(255,255,255,.55); margin-top: 12px; max-width: 260px; font-size: 13px; line-height: 1.6; }
.kkk-footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.kkk-footer__social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: all .2s; font-size: 13px;
}
.kkk-footer__social-icon:hover { background: rgba(0,179,136,.18); border-color: var(--accent-600); color: var(--accent-600); }
.kkk-footer__col { display: flex; flex-direction: column; gap: 9px; }
.kkk-footer__col h5 { color: rgba(255,255,255,.38); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; }
.kkk-footer__col a, .kkk-footer__col span { color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; line-height: 1.5; transition: color .15s; }
.kkk-footer__col a:hover { color: var(--accent-600); }
.kkk-footer__bottom {
  max-width: var(--container-max); margin: 0 auto;
  padding: 24px var(--container-pad) 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; gap: 24px;
  color: rgba(255,255,255,.35); font-size: 11px; flex-wrap: wrap;
}
.kkk-footer__bottom div { display: flex; gap: 24px; }
.kkk-footer__bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.kkk-footer__bottom a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 1100px) { .kkk-footer__grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .kkk-footer__grid { grid-template-columns: 1fr 1fr; } .kkk-footer__top { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) { .kkk-footer__grid { grid-template-columns: 1fr; } }

/* ─── Global keyframes ───────────────────────────────────────── */
@keyframes kkk-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,179,136,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,179,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,179,136,0); }
}

/* ══════════════════════ GUARANTEES ══════════════════════ */
.kkk-gtee {
  background: linear-gradient(160deg, #0F2540 0%, #1a3058 100%);
  padding: 96px 0 80px;
}
.kkk-gtee .kkk-section-head { text-align: left; }
.kkk-gtee h2 { color: #fff; }
.kkk-gtee .kkk-section-sub { color: rgba(255,255,255,.6); }
.kkk-gtee .t-eyebrow { color: rgba(255,255,255,.5); }
.kkk-gtee .t-eyebrow .dot { background: var(--accent-600); }

.kkk-gtee__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
  padding-top: 56px;
  align-items: start;
}

.kkk-gtee-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 32px 36px 36px;
  position: relative;
  overflow: visible;
}
.kkk-gtee-card:nth-child(2) { margin-top: 56px; }

/* Floating icon — вылетает за верхний край */
.kkk-gtee-card__icon {
  position: absolute;
  top: -48px;
  right: 32px;
  width: 96px; height: 96px;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .35s var(--ease-out);
}
.kkk-gtee-card__icon svg { width: 44px; height: 44px; }
.kkk-gtee-card:hover .kkk-gtee-card__icon { transform: translateY(-6px) scale(1.05); }

.kkk-gtee-card:nth-child(1) .kkk-gtee-card__icon {
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  box-shadow: 0 16px 48px rgba(59,130,246,.65), 0 4px 16px rgba(29,78,216,.25);
}
.kkk-gtee-card:nth-child(2) .kkk-gtee-card__icon {
  background: linear-gradient(145deg, #F4854E, #D4531E);
  box-shadow: 0 16px 40px rgba(236,111,63,.5);
}

.kkk-gtee-card__label {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.kkk-gtee-card__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; line-height: 1.22;
  color: #fff;
  margin: 0 0 14px;
}
.kkk-gtee-card__text {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.58);
  margin: 0 0 28px;
}
.kkk-gtee-card__stat {
  font-family: var(--font-display);
  font-weight: 800; font-size: 52px;
  line-height: 1; letter-spacing: -.04em;
}
.kkk-gtee-card__stat sup {
  font-size: .42em;
  vertical-align: super;
  letter-spacing: 0;
}
.kkk-gtee-card__stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}
.kkk-gtee-card:nth-child(1) .kkk-gtee-card__stat { color: #60A5FA; }
.kkk-gtee-card:nth-child(2) .kkk-gtee-card__stat { color: #FB923C; }

/* Responsive */
@media (max-width: 768px) {
  .kkk-gtee__grid { grid-template-columns: 1fr; padding-top: 56px; }
  .kkk-gtee-card { padding-top: 68px; }
  .kkk-gtee-card__icon { top: -28px; }
  .kkk-gtee-card:nth-child(2) { margin-top: 56px; }
}

/* ═══════════════════════════════════════════════════════════════
   КАЛЬКУЛЯТОР СТОИМОСТИ — kkk-calc
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section wrapper ────────────────────────────────────────── */
.kkk-calc-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg-section);
  overflow: hidden;
}
.kkk-calc-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,37,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,37,64,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.kkk-calc-section .kkk-section-inner { position: relative; z-index: 1; }

/* ─── Progress bar ───────────────────────────────────────────── */
.kkk-calc-progress {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--ink-200);
  height: 4px;
}
.kkk-calc-progress__step {
  flex: 1;
  height: 4px;
  background: var(--ink-200);
  transition: background .3s var(--ease-out);
  position: relative;
}
.kkk-calc-progress__step + .kkk-calc-progress__step {
  margin-left: 2px;
}
.kkk-calc-progress__step.is-active,
.kkk-calc-progress__step.is-done {
  background: var(--accent-600);
}

/* ─── Step labels ────────────────────────────────────────────── */
.kkk-calc-steps-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 8px;
}
.kkk-calc-steps-labels span {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-3);
  letter-spacing: .05em;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  transition: color .25s;
}
.kkk-calc-steps-labels span.is-active { color: var(--accent-600); }
.kkk-calc-steps-labels span.is-done   { color: var(--accent-700); }

/* ─── Main layout (form + result side by side on desktop) ─────── */
.kkk-calc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .kkk-calc-layout { grid-template-columns: 1fr; }
}

/* ─── Form card ──────────────────────────────────────────────── */
.kkk-calc-form-card {
  position: relative;
  background: linear-gradient(160deg, #0F2540 0%, #081729 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 4px 24px rgba(0,0,0,.30),
    0 20px 48px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.06);
  padding: 40px;
  overflow: hidden;
}
.kkk-calc-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 80%);
  z-index: 0;
}
.kkk-calc-form-card > * { position: relative; z-index: 1; }

/* ─── Dark card: step title ──────────────────────────────────── */
.kkk-calc-form-card .kkk-calc-step__title { color: var(--accent-600); }

/* ─── Blue card: text colours ───────────────────────────────── */
.kkk-calc-form-card .kkk-calc-area-hint,
.kkk-calc-form-card p { color: rgba(255,255,255,.50); }

.kkk-calc-form-card .kkk-calc-field label { color: rgba(255,255,255,.55); }

/* ─── Dark card: area input ──────────────────────────────────── */
.kkk-calc-form-card .kkk-calc-area-wrap input[type="number"] {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.kkk-calc-form-card .kkk-calc-area-wrap input[type="number"]:focus { border-color: var(--accent-600); background: rgba(0,179,136,.08); }
.kkk-calc-form-card .kkk-calc-area-unit { color: rgba(255,255,255,.40); }

/* ─── Dark card: contact inputs ──────────────────────────────── */
.kkk-calc-form-card .kkk-calc-field input,
.kkk-calc-form-card .kkk-calc-field textarea {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.kkk-calc-form-card .kkk-calc-field input::placeholder,
.kkk-calc-form-card .kkk-calc-field textarea::placeholder { color: rgba(255,255,255,.30); }
.kkk-calc-form-card .kkk-calc-field input:focus,
.kkk-calc-form-card .kkk-calc-field textarea:focus { border-color: var(--accent-600); background: rgba(0,179,136,.08); }

/* ─── Dark card: object type cards ──────────────────────────── */
.kkk-calc-form-card .kkk-calc-type-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.kkk-calc-form-card .kkk-calc-type-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(0,179,136,.50);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.kkk-calc-form-card .kkk-calc-type-card.is-selected {
  background: rgba(0,179,136,.12);
  border-color: var(--accent-600);
  box-shadow:
    0 0 0 3px rgba(0,179,136,.22),
    0 2px 10px rgba(0,0,0,.15);
}
.kkk-calc-form-card .kkk-calc-type-card__icon {
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  box-shadow: 0 4px 14px rgba(59,130,246,.45);
}
.kkk-calc-form-card .kkk-calc-type-card:hover .kkk-calc-type-card__icon {
  background: linear-gradient(145deg, #60A5FA, #2563EB);
  transform: scale(1.06);
}
.kkk-calc-form-card .kkk-calc-type-card.is-selected .kkk-calc-type-card__icon {
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  box-shadow: 0 6px 20px rgba(59,130,246,.55);
}
.kkk-calc-form-card .kkk-calc-type-card__label { color: rgba(255,255,255,.90); }
.kkk-calc-form-card .kkk-calc-type-card__rate {
  background: rgba(0,179,136,.18);
  color: #6EE5C5;
}
.kkk-calc-form-card .kkk-calc-type-card.is-selected .kkk-calc-type-card__rate {
  background: var(--accent-600);
  color: #fff;
}
.kkk-calc-form-card .kkk-calc-type-card.is-selected .kkk-calc-type-card__label { color: #fff; }

/* ─── Dark card: services ────────────────────────────────────── */
.kkk-calc-form-card .kkk-calc-service {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
.kkk-calc-form-card .kkk-calc-service:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(0,179,136,.45);
}
.kkk-calc-form-card .kkk-calc-service.is-checked {
  background: rgba(0,179,136,.12);
  border-color: var(--accent-600);
}
.kkk-calc-form-card .kkk-calc-service__name { color: #fff; }
.kkk-calc-form-card .kkk-calc-service__add  { color: rgba(255,255,255,.55); }
.kkk-calc-form-card .kkk-calc-service.is-checked .kkk-calc-service__add { color: var(--accent-400); }

/* ─── Dark card: file upload ─────────────────────────────────── */
.kkk-calc-form-card .kkk-calc-file-label {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
}
.kkk-calc-form-card .kkk-calc-file-label:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(59,130,246,.45);
}

/* ─── Dark card: secondary button ───────────────────────────── */
.kkk-calc-form-card .btn-secondary {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.18);
}
.kkk-calc-form-card .btn-secondary:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.30);
}
@media (max-width: 600px) {
  .kkk-calc-form-card { padding: 24px 20px; }
}

/* ─── Step panels (show/hide) ────────────────────────────────── */
.kkk-calc-step { display: none; }
.kkk-calc-step.is-visible { display: block; }

.kkk-calc-step__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-600);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ─── Object type cards grid ─────────────────────────────────── */
.kkk-calc-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 700px) {
  .kkk-calc-types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .kkk-calc-types { grid-template-columns: 1fr 1fr; }
}

.kkk-calc-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: border-color .25s, background .25s, box-shadow .3s var(--ease-out), transform .2s var(--ease-out);
  user-select: none;
  -webkit-user-select: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 2px 6px rgba(30,58,95,.06),
    0 8px 20px -8px rgba(30,58,95,.12);
}
.kkk-calc-type-card:hover {
  border-color: var(--primary-500);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 4px 10px rgba(30,58,95,.1),
    0 16px 32px -8px rgba(30,58,95,.18);
}
.kkk-calc-type-card.is-selected {
  border-color: var(--accent-600);
  background: linear-gradient(180deg, #ffffff 0%, rgba(0,179,136,.07) 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 0 0 3px rgba(0,179,136,.2),
    0 12px 28px -8px rgba(30,58,95,.2);
}
.kkk-calc-type-card__icon {
  width: 56px; height: 56px;
  background: var(--primary-700);
  border: none;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(30,58,95,.22);
  transition: all .25s var(--ease-out);
  flex-shrink: 0;
}
.kkk-calc-type-card:hover .kkk-calc-type-card__icon {
  background: var(--primary-500);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(30,58,95,.3);
}
.kkk-calc-type-card.is-selected .kkk-calc-type-card__icon {
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  box-shadow: 0 8px 28px rgba(59,130,246,.55), 0 2px 8px rgba(29,78,216,.2);
}
.kkk-calc-type-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.3;
  letter-spacing: -.005em;
}
.kkk-calc-type-card__rate {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-700);
  background: rgba(0,179,136,.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 2px;
}
.kkk-calc-type-card.is-selected .kkk-calc-type-card__rate {
  color: #fff;
  background: var(--accent-600);
}

/* ─── Area input ─────────────────────────────────────────────── */
.kkk-calc-area-wrap {
  position: relative;
}
.kkk-calc-area-wrap input[type="number"] {
  width: 100%;
  padding: 18px 56px 18px 20px;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-1);
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .2s;
  -moz-appearance: textfield;
}
.kkk-calc-area-wrap input[type="number"]::-webkit-inner-spin-button,
.kkk-calc-area-wrap input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.kkk-calc-area-wrap input[type="number"]:focus { border-color: var(--accent-600); }
.kkk-calc-area-unit {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-3);
  pointer-events: none;
}
.kkk-calc-area-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--fg-3);
}

/* ─── Services checkboxes ────────────────────────────────────── */
.kkk-calc-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kkk-calc-service {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
  -webkit-user-select: none;
}
.kkk-calc-service:hover { border-color: var(--ink-300); background: var(--bg-section); }
.kkk-calc-service.is-checked { border-color: var(--accent-600); background: rgba(0,179,136,.05); }
.kkk-calc-service.is-locked { cursor: default; }
.kkk-calc-service__check {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--ink-300);
  background: var(--bg-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.kkk-calc-service.is-checked .kkk-calc-service__check {
  border-color: var(--accent-600);
  background: var(--accent-600);
}
.kkk-calc-service__check svg { display: none; }
.kkk-calc-service.is-checked .kkk-calc-service__check svg { display: block; }
.kkk-calc-service__info { flex: 1; }
.kkk-calc-service__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
}
.kkk-calc-service__add {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}
.kkk-calc-service.is-checked .kkk-calc-service__add { color: var(--accent-700); }

/* ─── Result block ───────────────────────────────────────────── */
.kkk-calc-result {
  background: linear-gradient(160deg, #0F2540 0%, #081729 100%);
  border: 1px solid rgba(0,179,136,.40);
  border-top: 1px solid rgba(0,179,136,.60);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(0,179,136,.20),
    0 8px 24px rgba(0,0,0,.25),
    0 24px 48px rgba(0,0,0,.20);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.kkk-calc-result__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.kkk-calc-result__price-from {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-600);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.kkk-calc-result__amount {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.kkk-calc-result__amount--empty {
  font-size: 22px;
  color: rgba(255,255,255,.3);
}
.kkk-calc-result__to {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.kkk-calc-result__amount-to {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
/* Features list — always visible in right panel */
.kkk-calc-result__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 11px;
}
.kkk-calc-result__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
.kkk-calc-result__features svg {
  width: 16px; height: 16px;
  color: var(--accent-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.kkk-calc-result__features b {
  color: #fff;
  font-weight: 600;
}
/* Proof stats */
.kkk-calc-result__proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.50);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 0 16px rgba(255,255,255,.10),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.kkk-calc-result__proof-item {
  display: flex; flex-direction: column; gap: 2px;
}
.kkk-calc-result__proof-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--accent-600);
  letter-spacing: -.02em;
}
.kkk-calc-result__proof-label {
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.kkk-calc-result__note {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.kkk-calc-result__breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.kkk-calc-result__breakdown:empty {
  display: none;
}
.kkk-calc-result__breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.kkk-calc-result__breakdown-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.kkk-calc-result__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-600);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 0;
  font-family: var(--font-body);
  transition: color .15s;
}
.kkk-calc-result__cta:hover { color: var(--accent-700); }

/* ─── Contact step fields ────────────────────────────────────── */
.kkk-calc-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kkk-calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kkk-calc-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.kkk-calc-field input,
.kkk-calc-field textarea {
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-1);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .2s;
  width: 100%;
  resize: vertical;
}
.kkk-calc-field input:focus,
.kkk-calc-field textarea:focus { border-color: var(--accent-600); }
.kkk-calc-field input.is-error,
.kkk-calc-field textarea.is-error { border-color: var(--error); }

.kkk-calc-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  color: var(--fg-3);
  transition: border-color .2s, background .2s;
}
.kkk-calc-file-label:hover { border-color: var(--accent-600); background: rgba(0,179,136,.04); color: var(--fg-1); }
.kkk-calc-file-label input[type="file"] { display: none; }
.kkk-calc-file-name { font-size: 12px; color: var(--accent-700); margin-top: 4px; }

/* ─── Nav buttons ────────────────────────────────────────────── */
.kkk-calc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.kkk-calc-nav .btn {
  min-width: 140px;
  justify-content: center;
}
.kkk-calc-btn-submit {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 16px;
}
.kkk-calc-submit-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 12px;
}

/* ─── Success state ──────────────────────────────────────────── */
.kkk-calc-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.kkk-calc-success.is-visible { display: flex; }
.kkk-calc-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,179,136,.12);
  display: flex; align-items: center; justify-content: center;
}
.kkk-calc-success h3 { font-size: 22px; color: var(--fg-1); }
.kkk-calc-success p { font-size: 15px; color: var(--fg-2); max-width: 320px; }

/* ─── Dark card: result block (on calculator page it's inside form card) */
.kkk-calc-form-card .kkk-calc-result {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(0,179,136,.20);
}

/* ─── Dark card: success state ───────────────────────────────── */
.kkk-calc-form-card .kkk-calc-success h3 { color: #fff; }
.kkk-calc-form-card .kkk-calc-success p  { color: rgba(255,255,255,.55); }

/* ─── Section variant (compact — inline on main page) ─────────── */
.kkk-calc-section--inline .kkk-calc-form-card { box-shadow: none; }
.kkk-calc-section--inline .kkk-calc-result {
  position: static;
}

/* ─── Standalone calculator page ────────────────────────────── */
.kkk-calc-page {
  min-height: 100vh;
  background: var(--bg-section);
  padding: 80px 0 120px;
}
.kkk-calc-page .kkk-calc-layout {
  max-width: 780px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.kkk-calc-page .kkk-calc-result {
  position: static;
  margin-top: 0;
}

@media (max-width: 600px) {
  .kkk-calc-result { padding: 24px 20px; }
  .kkk-calc-result__amount { font-size: 28px; }
  .kkk-calc-result__amount-to { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   МОБИЛЬНЫЙ АДАПТИВ — полный блок
   Брейкпоинты: 1024 / 768 / 480 / 360
   ═══════════════════════════════════════════════════════════════ */

/* ─── Base: предотвращаем горизонтальный скролл ─────────────── */
body { overflow-x: hidden; }

/* Touch: мгновенный отклик на кнопках ──────────────────────── */
.btn,
button,
[role="button"],
.kkk-panel__dot,
.kkk-calc-type-card,
.kkk-calc-service,
.kkk-burger,
.kkk-ind__card,
.kkk-mobile-menu a {
  touch-action: manipulation;
}

/* ─── 1024px: планшет landscape ─────────────────────────────── */
@media (max-width: 1024px) {
  /* Platform dashboard — дашборд под текстом */
  .kkk-platform__inner { grid-template-columns: 1fr; }

  /* Уменьшаем секционные отступы */
  .kkk-ind        { padding: 80px 0; }
  .kkk-svc        { padding: 80px 0; }
  .kkk-platform   { padding: 80px 0; }
  .kkk-cases      { padding: 80px 0; }
  .kkk-why        { padding: 80px 0; }
  .kkk-calc-section { padding: 80px 0; }
  .kkk-cta        { padding: 80px 0; }
}

/* ─── 768px: планшет portrait / крупный телефон ─────────────── */
@media (max-width: 768px) {

  /* Секционные отступы */
  .kkk-ind        { padding: 60px 0; }
  .kkk-svc        { padding: 60px 0; }
  .kkk-platform   { padding: 60px 0; }
  .kkk-cases      { padding: 60px 0; }
  .kkk-why        { padding: 60px 0; }
  .kkk-calc-section { padding: 60px 0; }
  .kkk-cta        { padding: 60px 0; }
  .kkk-proof__inner { padding: 60px var(--container-pad) 64px; }

  /* Section head split → column */
  .kkk-section-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .kkk-section-head { margin-bottom: 36px; }

  /* ── Hero ── */
  .kkk-hero__title {
    font-size: clamp(28px, 7vw, 38px);
  }
  .kkk-hero__sub  { font-size: 15px; }
  .kkk-hero__cta  {
    flex-direction: column;
    gap: 10px;
  }
  .kkk-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Hero panel: компактнее ── */
  .kkk-panel__slides { height: 160px; }

  /* ── Cases: 1 колонка ── */
  .kkk-cases__row { grid-template-columns: 1fr; }

  /* ── Why: 1 колонка ── */
  .kkk-why__grid { grid-template-columns: 1fr; gap: 14px; }
  .kkk-why-card, .kkk-why-card--accent { grid-column: auto; }

  /* ── Dashboard адаптив ── */
  .kkk-db__row1 { grid-template-columns: 1fr; }
  .kkk-db__row2 { grid-template-columns: 1fr; }
  .kkk-db-sla   { min-width: auto; }

  /* Docs: 1 колонка */
  .kkk-db-docs  { grid-template-columns: 1fr; }

  /* Team: 1 колонка */
  .kkk-db-team  { grid-template-columns: 1fr; }

  /* Уменьшаем шрифты дашборда */
  .kkk-db-sla__big    { font-size: 28px; }
  .kkk-db-nps__big    { font-size: 22px; }
  .kkk-db__header     { font-size: 8px; letter-spacing: .12em; }

  /* ── CTA форма: row → column ── */
  .kkk-cta__row { grid-template-columns: 1fr; }
  .kkk-cta__box { padding: 36px 24px; gap: 36px; }

  /* ── Footer top ── */
  .kkk-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .kkk-footer__inner-wrap { padding: 48px var(--container-pad) 40px; }

  /* ── Калькулятор: nav кнопки в column ── */
  .kkk-calc-nav {
    flex-direction: column;
    gap: 10px;
  }
  .kkk-calc-nav .btn { width: 100%; min-width: auto; }
}

/* ─── 480px: телефон (основной мобильный) ───────────────────── */
@media (max-width: 480px) {

  /* Root: ещё меньше заголовки */
  :root {
    --fs-h1: 26px;
    --fs-h2: 22px;
    --fs-h3: 18px;
    --container-pad: 16px;
  }

  /* Секционные отступы */
  .kkk-ind        { padding: 48px 0; }
  .kkk-svc        { padding: 48px 0; }
  .kkk-platform   { padding: 48px 0; }
  .kkk-cases      { padding: 48px 0; }
  .kkk-why        { padding: 48px 0; }
  .kkk-calc-section { padding: 48px 0; }
  .kkk-cta        { padding: 48px 0; }
  .kkk-proof__inner { padding: 48px var(--container-pad) 56px; }

  /* Ticker: скрываем на самых маленьких — экономим место */
  .kkk-ticker { display: none; }

  /* Header bar: убираем padding вверх/вниз чуть */
  .kkk-header__bar { height: 60px; padding: 0 var(--container-pad); }

  .kkk-logo-desc { font-size: 5.5px; letter-spacing: .03em; }

  /* Кнопка КП в хедере — есть в мобильном меню, дублировать не нужно */
  .kkk-header__actions .btn { display: none; }

  /* Touch targets: min 44px */
  .btn-sm { padding: 13px 18px; }

  /* Hero */
  .kkk-hero__inner { padding: 72px var(--container-pad) 64px; gap: 32px; }
  .kkk-hero__eyebrow { font-size: 10px; margin-bottom: 18px; }
  .kkk-hero__sub { font-size: 14px; }

  /* Hero panel — меньше высота слайдов */
  .kkk-panel__slides { height: 140px; }
  .kkk-hero__panel  { border-radius: 12px; }

  /* Section head */
  .kkk-section-head { margin-bottom: 28px; }
  .kkk-section-sub  { font-size: 14px; }

  /* Proof */
  .kkk-proof__num { font-size: clamp(36px, 10vw, 52px); }
  .kkk-proof__cell { padding: 24px 20px 22px; }

  /* Industries grid: 1 колонка */
  .kkk-ind__grid { grid-template-columns: 1fr; }
  .kkk-ind__card { aspect-ratio: 5/3; }

  /* Services: accordion handled by 600px block above */

  /* Cases: убираем лишнее */
  .kkk-case__metrics { gap: 12px; }
  .kkk-case__metric-num { font-size: 16px; }

  /* Why cards: компактнее на маленьких экранах */
  .kkk-why-card { padding: 22px 20px 24px; }

  /* Dashboard: скрываем лишние строки статуса (показываем 3 из 5) */
  .kkk-db-zones .kkk-db-zone:nth-child(n+4) { display: none; }
  .kkk-db-sla__big { font-size: 24px; }

  /* Platform: дашборд мельче */
  .kkk-db { padding: 14px; }

  /* Calculator */
  .kkk-calc-form-card { padding: 20px 16px; }
  .kkk-calc-types { grid-template-columns: 1fr 1fr; }
  .kkk-calc-result { padding: 20px 16px; }
  .kkk-calc-result__amount { font-size: 26px; }

  /* CTA box */
  .kkk-cta__box { padding: 28px 20px; border-radius: 16px; }
  .kkk-cta__box h2 { font-size: 22px; }

  /* Footer */
  .kkk-footer__grid { grid-template-columns: 1fr; }
  .kkk-footer__gem  { width: 48px; height: 48px; }
  .kkk-footer__logo-mark { font-size: 22px; }
  .kkk-footer__inner-wrap { padding: 36px var(--container-pad) 32px; }
  .kkk-footer__bottom { flex-direction: column; gap: 12px; }
  .kkk-footer__bottom div { flex-direction: column; gap: 8px; }
}

/* ─── 360px: мелкий телефон ─────────────────────────────────── */
@media (max-width: 360px) {
  :root {
    --container-pad: 12px;
    --fs-h1: 22px;
    --fs-h2: 19px;
  }

  /* Header */
  .kkk-logo-mark { font-size: 17px; }

  /* Hero */
  .kkk-hero__inner { padding: 60px var(--container-pad) 52px; }
  .kkk-hero__cta .btn { padding: 12px 18px; font-size: 14px; }

  /* Panel */
  .kkk-panel__slides { height: 130px; }
  .kkk-panel__row    { font-size: 11px; padding: 8px 12px; }

  /* Proof */
  .kkk-proof__num { font-size: 34px; }

  /* Industries */
  .kkk-ind__card h3 { font-size: 18px; }

  /* Калькулятор */
  .kkk-calc-types { gap: 8px; }
  .kkk-calc-type-card { padding: 14px 8px; gap: 6px; }
  .kkk-calc-type-card__icon { width: 48px; height: 48px; border-radius: 10px; }
  .kkk-calc-type-card__label { font-size: 11px; }

  /* CTA */
  .kkk-cta__box { padding: 24px 16px; }
}

/* ─── Touch: отключаем mouse-follow эффекты ─────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Glow в hero не работает на touch — скрываем */
  .kkk-hero__glow { display: none; }

  /* Убираем transform hover на картах — нет :hover на touch */
  .kkk-ind__card:hover  { transform: none; }
  .kkk-svc-card:hover   { transform: none; }
  .kkk-why-card:hover, .kkk-why-card--accent:hover { transform: none; }
  .kkk-case:hover       { transform: none; }
  .kkk-sec-card:hover   { transform: none; }

  /* Убираем pointer-glow на service cards */
  .kkk-svc-card { --mx: 50%; --my: 50%; }
}

/* ═══════════════════════════════════════════════════════════════
   SECURITY SECTION — «Ваш объект под защитой»
   ═══════════════════════════════════════════════════════════════ */

.kkk-sec {
  position: relative;
  padding: 120px 0 110px;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(0,179,136,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(15,37,64,.06), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-section) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* ── Декоративный фон: щит-сканер ────────────────────────── */
.kkk-sec__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  color: rgba(15,37,64,.08);
}
.kkk-sec__mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,37,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,37,64,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 30%, #000 30%, transparent 75%);
}
.kkk-sec__shield {
  position: absolute;
  right: -60px;
  top: 80px;
  width: 460px;
  height: 552px;
  opacity: .55;
}
.kkk-sec__shield .kkk-sec__scan {
  stroke: var(--accent-600);
  stroke-dasharray: 8 12;
  animation: kkk-sec-scan 14s linear infinite;
  transform-origin: 100px 120px;
  opacity: .65;
}
@keyframes kkk-sec-scan {
  to { transform: rotate(360deg); }
}

/* ── Шапка секции ────────────────────────────────────────── */
.kkk-sec__head {
  position: relative; z-index: 2;
  max-width: 760px;
  margin: 0 0 56px;
}
.kkk-sec__head .t-eyebrow { color: var(--accent-600); }
.kkk-sec__head h2 {
  margin: 14px 0 18px;
  color: var(--text-heading);
}
.kkk-sec__hl {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700) 60%, var(--primary-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.kkk-sec__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2, #475569);
  max-width: 640px;
  margin: 0 0 24px;
}
.kkk-sec__slogan {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, rgba(0,179,136,.12), rgba(15,37,64,.04));
  border: 1px solid rgba(0,179,136,.3);
  border-radius: 999px;
  color: var(--primary-900);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
}
.kkk-sec__slogan svg {
  width: 18px; height: 18px;
  color: var(--accent-600);
  flex-shrink: 0;
}

/* ── Метрики (3 числа) ───────────────────────────────────── */
.kkk-sec__metrics {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, var(--primary-900) 0%, #1A3556 100%);
  border-radius: 24px;
  padding: 1px;
  margin: 0 0 60px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,37,64,.18), inset 0 1px 0 rgba(255,255,255,.06);
}
.kkk-sec__metric {
  background: linear-gradient(180deg, #14304F 0%, #0F2540 100%);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kkk-sec__metric::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(400px 200px at 50% 0%, rgba(0,179,136,.18), transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.kkk-sec__metric:hover::before { opacity: 1; }
.kkk-sec__metric--accent::before { opacity: .8; }
.kkk-sec__metric-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
}
.kkk-sec__metric-num sup {
  font-size: .45em;
  color: var(--accent-600);
  font-weight: 600;
  margin-top: .15em;
}
.kkk-sec__metric--accent .kkk-sec__metric-num {
  background: linear-gradient(135deg, #fff 0%, var(--accent-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kkk-sec__metric-lbl {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}

/* ── Карта России (внутри Security секции) ──────────────── */
.kkk-sec__map {
  position: relative; z-index: 2;
  margin: 0 0 48px;
  background: linear-gradient(135deg, var(--primary-900) 0%, #1A3556 100%);
  border-radius: 20px;
  padding: 22px 28px 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,37,64,.18);
}
.kkk-sec__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 20% 100%, rgba(0,179,136,.14), transparent 60%),
    radial-gradient(400px 250px at 95% 0%, rgba(236,111,63,.08), transparent 60%);
  pointer-events: none;
}
.kkk-sec__map-head {
  position: relative; z-index: 2;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.kkk-sec__map-head-text { flex: 1; min-width: 280px; }
.kkk-sec__map-head .t-eyebrow { color: var(--accent-600); }
.kkk-sec__map-head h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.3;
  color: #fff;
  margin: 8px 0 0;
  max-width: 560px;
}
.kkk-sec__map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--warm-600), #d8552d);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s var(--ease-out), box-shadow .25s var(--ease-out);
  box-shadow: 0 8px 22px rgba(236,111,63,.32);
  align-self: center;
  flex-shrink: 0;
}
.kkk-sec__map-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(236,111,63,.48);
  color: #fff;
}
@media (max-width: 600px) {
  .kkk-sec__map-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
}
.kkk-sec__map-count {
  background: linear-gradient(135deg, #fff, var(--accent-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kkk-sec__map-wrap { position: relative; z-index: 2; }
.kkk-sec__map-svg {
  width: 100%;
  height: auto;
  max-height: 440px;
  display: block;
  margin: 0 auto;
}
.kkk-sec__map-outline { transition: stroke .4s ease; }

.kkk-sec__city { cursor: pointer; transform-origin: center; }
.kkk-sec__city-dot {
  fill: var(--accent-600);
  filter: drop-shadow(0 0 6px rgba(0,179,136,.6));
  transition: r .25s ease, fill .25s ease;
}
.kkk-sec__city-pulse {
  fill: var(--accent-600);
  opacity: .5;
  transform-origin: center;
  transform-box: fill-box;
  animation: kkk-sec-city-pulse 2.4s ease-out infinite;
}
.kkk-sec__city:nth-child(2n) .kkk-sec__city-pulse { animation-delay: .6s; }
.kkk-sec__city:nth-child(3n) .kkk-sec__city-pulse { animation-delay: 1.2s; }
.kkk-sec__city:nth-child(5n) .kkk-sec__city-pulse { animation-delay: 1.8s; }
@keyframes kkk-sec-city-pulse {
  0%   { transform: scale(.6); opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}
.kkk-sec__city--main .kkk-sec__city-dot {
  fill: var(--warm-600);
  filter: drop-shadow(0 0 10px rgba(236,111,63,.7));
}
.kkk-sec__city--main .kkk-sec__city-pulse {
  fill: var(--warm-600);
}
.kkk-sec__city:hover .kkk-sec__city-dot {
  r: 8;
}

.kkk-sec__city-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  fill: rgba(255,255,255,.78);
  letter-spacing: .01em;
  pointer-events: none;
  paint-order: stroke fill;
  stroke: rgba(15,37,64,.85);
  stroke-width: 2.5px;
  stroke-linejoin: round;
  transition: fill .2s ease;
}
/* На мобильном SVG масштабируется до 280-320px — текст 10.5px становится 3-4px,
   нечитаем. Прячем лейблы, оставляем точки + tooltip по tap. */
@media (max-width: 768px) {
  .kkk-sec__city-label { display: none; }
}
.kkk-sec__city-label--main {
  font-size: 12px;
  font-weight: 700;
  fill: #fff;
}
.kkk-sec__city:hover .kkk-sec__city-label {
  fill: var(--accent-600);
}
.kkk-sec__city--main:hover .kkk-sec__city-label {
  fill: var(--warm-600);
}

.kkk-sec__map-meridians line {
  pointer-events: none;
}

.kkk-sec__map-tooltip {
  position: absolute;
  top: 0; left: 0;
  padding: 6px 12px;
  background: rgba(15,37,64,.95);
  border: 1px solid rgba(0,179,136,.5);
  border-radius: 8px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 10px));
  transition: opacity .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  z-index: 3;
}
.kkk-sec__map-tooltip.is-visible { opacity: 1; }

.kkk-sec__map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.kkk-sec__map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kkk-sec__map-legend-item--muted { color: rgba(255,255,255,.45); margin-left: auto; }
.kkk-sec__map-legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-600);
  box-shadow: 0 0 8px rgba(0,179,136,.6);
}
.kkk-sec__map-legend-dot--main {
  background: var(--warm-600);
  box-shadow: 0 0 8px rgba(236,111,63,.6);
}

/* ── Сетка карточек ──────────────────────────────────────── */
.kkk-sec__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 64px;
}
.kkk-sec-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.kkk-sec-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-600), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.kkk-sec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,179,136,.4);
  box-shadow: 0 24px 48px rgba(15,37,64,.1), 0 6px 12px rgba(0,179,136,.08);
}
.kkk-sec-card:hover::before { transform: scaleX(1); }

.kkk-sec-card__chip {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .12em;
}
.kkk-sec-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, #00C99A, #00916A);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0,179,136,.32);
  transition: transform .35s ease, box-shadow .35s ease;
}
.kkk-sec-card__icon svg { width: 26px; height: 26px; }
.kkk-sec-card:hover .kkk-sec-card__icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 26px rgba(0,179,136,.42);
}
.kkk-sec-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 10px;
  line-height: 1.3;
}
.kkk-sec-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}
.kkk-sec-card--accent {
  background: linear-gradient(135deg, #fff 0%, rgba(0,179,136,.04) 100%);
  border-color: rgba(0,179,136,.3);
}
.kkk-sec-card--accent .kkk-sec-card__icon {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

/* Широкая карточка «Контрактная защита» — полная ширина, тёмный акцент */
.kkk-sec-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 40px 32px;
  background: linear-gradient(135deg, #0F2540 0%, #1E3A5F 100%);
  border-color: rgba(0,179,136,.3);
  box-shadow: 0 20px 56px rgba(15,37,64,.22);
}
.kkk-sec-card--wide::before {
  background: linear-gradient(90deg, var(--accent-600), transparent);
  transform: scaleX(1);
}
.kkk-sec-card--wide .kkk-sec-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  margin-bottom: 0;
  box-shadow: 0 10px 28px rgba(0,179,136,.45);
}
.kkk-sec-card--wide .kkk-sec-card__icon svg { width: 30px; height: 30px; }
.kkk-sec-card--wide h4 { color: #fff; font-size: 20px; }
.kkk-sec-card--wide p  { color: rgba(255,255,255,.65); }
.kkk-sec-card--wide .kkk-sec-card__chip { color: rgba(255,255,255,.3); }
.kkk-sec-card__wide-body { min-width: 0; }
.kkk-sec-card__wide-body h4 { margin-top: 2px; }
.kkk-sec-card__points {
  list-style: none;
  margin: 14px 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.kkk-sec-card__points li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-body);
}
.kkk-sec-card__points li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--accent-600);
  border-radius: 2px;
  background: rgba(0,179,136,.12);
}
.kkk-sec-card__points li span {
  font-weight: 600;
  color: var(--text-heading);
}
.kkk-sec-card__slogan {
  margin-top: 4px;
  padding: 12px 16px;
  background: rgba(15,37,64,.04);
  border-left: 3px solid var(--accent-600);
  border-radius: 0 8px 8px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-heading);
}
.kkk-sec-card--wide .kkk-sec-card__points li { color: rgba(255,255,255,.7); }
.kkk-sec-card--wide .kkk-sec-card__points li span { color: #fff; }
.kkk-sec-card--wide .kkk-sec-card__points li::before {
  border-color: var(--accent-600);
  background: rgba(0,179,136,.25);
}
.kkk-sec-card--wide .kkk-sec-card__slogan {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
}

/* ── Блок «Служба контроля качества» ─────────────────────── */
.kkk-sec__qc {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 40px;
  padding: 36px 44px;
  background: linear-gradient(135deg, var(--primary-900) 0%, #1A3556 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,37,64,.2);
}
.kkk-sec__qc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 300px at 0% 50%, rgba(0,179,136,.16), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(236,111,63,.1), transparent 60%);
  pointer-events: none;
}
.kkk-sec__qc-vis {
  position: relative;
  width: 200px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.kkk-sec__qc-pulse {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(0,179,136,.5);
  animation: kkk-sec-pulse 2.6s ease-out infinite;
}
.kkk-sec__qc-pulse--2 { animation-delay: 1.3s; }
@keyframes kkk-sec-pulse {
  0%   { transform: scale(.5); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.kkk-sec__qc-core {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,179,136,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.kkk-sec__qc-core svg { width: 36px; height: 36px; }
.kkk-sec__qc-text { position: relative; z-index: 2; }
.kkk-sec__qc-text .t-eyebrow { color: var(--accent-600); }
.kkk-sec__qc-text h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: #fff;
  margin: 12px 0 12px;
}
.kkk-sec__qc-text p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 680px;
}

/* ── Адаптив ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .kkk-sec { padding: 90px 0 80px; }
  .kkk-sec__shield { width: 320px; height: 384px; right: -120px; opacity: .35; }
  .kkk-sec__metrics { grid-template-columns: 1fr; }
  .kkk-sec__grid { grid-template-columns: repeat(2, 1fr); }
  .kkk-sec-card--wide { grid-column: span 2; grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
  .kkk-sec-card--wide .kkk-sec-card__icon { width: 52px; height: 52px; }
  .kkk-sec-card__points { grid-template-columns: 1fr; }
  .kkk-sec__qc { grid-template-columns: 1fr; gap: 24px; padding: 32px; text-align: center; }
  .kkk-sec__qc-vis { margin: 0 auto; }
}
@media (max-width: 980px) {
  .kkk-sec__map { padding: 28px 24px 20px; margin-bottom: 44px; }
  .kkk-sec__map-head h3 { font-size: 18px; }
  .kkk-sec__map-legend { gap: 12px; font-size: 12px; }
  .kkk-sec__map-legend-item--muted { margin-left: 0; width: 100%; }
}
@media (max-width: 600px) {
  .kkk-sec { padding: 70px 0 60px; }
  .kkk-sec__shield { display: none; }
  .kkk-sec__head h2 { font-size: 32px; }
  .kkk-sec__hl { white-space: normal; }
  .kkk-sec__lead { font-size: 16px; }
  .kkk-sec__metric { padding: 28px 20px; }
  .kkk-sec__metric-num { font-size: 48px; }
  .kkk-sec__grid { grid-template-columns: 1fr; gap: 14px; }
  .kkk-sec-card--wide { grid-column: span 1; }
  .kkk-sec-card { padding: 24px 20px; }
  .kkk-sec__qc { padding: 28px 20px; }
  .kkk-sec__map { padding: 22px 16px 14px; }
  .kkk-sec__map-head h3 { font-size: 16px; }
  .kkk-sec__city-pulse { animation-duration: 3.5s; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .kkk-sec__shield .kkk-sec__scan,
  .kkk-sec__qc-pulse,
  .kkk-sec__city-pulse,
  .kkk-fab__pulse,
  .kkk-flow__rail-fill { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS TIMELINE — «От заявки до старта за 7 дней»
   ═══════════════════════════════════════════════════════════════ */

.kkk-flow {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(180deg, #0F2540 0%, #14304F 50%, #0F2540 100%);
  overflow: hidden;
  isolation: isolate;
}
.kkk-flow::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(0,179,136,.10), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(236,111,63,.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.kkk-flow::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.kkk-flow > .kkk-section-inner { position: relative; z-index: 1; }
.kkk-flow .kkk-section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.kkk-flow .kkk-section-head .t-eyebrow { justify-content: center; color: var(--accent-600); }
.kkk-flow .kkk-section-head h2 { color: #fff; }
.kkk-flow__hl {
  background: linear-gradient(135deg, var(--accent-600) 0%, #6EE5C5 50%, var(--warm-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kkk-flow__lead {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
}

.kkk-flow__track { position: relative; padding: 20px 0 10px; }

.kkk-flow__rail {
  position: absolute;
  left: 4%; right: 4%;
  top: 65px;
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.kkk-flow__rail-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent-600), var(--warm-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s cubic-bezier(.65,.05,.3,1);
}
.kkk-flow.is-in .kkk-flow__rail-fill { transform: scaleX(1); }

.kkk-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.kkk-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.kkk-flow.is-in .kkk-flow__step { opacity: 1; transform: translateY(0); }
.kkk-flow.is-in .kkk-flow__step:nth-child(1) { transition-delay: .1s; }
.kkk-flow.is-in .kkk-flow__step:nth-child(2) { transition-delay: .25s; }
.kkk-flow.is-in .kkk-flow__step:nth-child(3) { transition-delay: .4s; }
.kkk-flow.is-in .kkk-flow__step:nth-child(4) { transition-delay: .55s; }
.kkk-flow.is-in .kkk-flow__step:nth-child(5) { transition-delay: .7s; }
.kkk-flow.is-in .kkk-flow__step:nth-child(6) { transition-delay: .85s; }

.kkk-flow__step-day {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-600);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(0,179,136,.14);
  border: 1px solid rgba(0,179,136,.3);
  border-radius: 999px;
  position: relative;
  z-index: 2;
}
.kkk-flow__step-marker {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1A3556 0%, #14304F 100%);
  border: 1.5px solid rgba(0,179,136,.4);
  color: var(--accent-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: all .35s ease;
  box-shadow:
    0 8px 24px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.kkk-flow__step-marker::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,179,136,.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.kkk-flow__step-marker svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.kkk-flow__step:hover .kkk-flow__step-marker {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
  color: #fff;
  border-color: var(--accent-600);
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,179,136,.5);
}
.kkk-flow__step:hover .kkk-flow__step-marker::before { opacity: 1; }
.kkk-flow__step--final .kkk-flow__step-marker {
  background: linear-gradient(135deg, var(--warm-600), #C95730);
  border-color: var(--warm-600);
  color: #fff;
  box-shadow: 0 12px 32px rgba(236,111,63,.5);
}
.kkk-flow__step--final .kkk-flow__step-marker::before {
  background: radial-gradient(circle, rgba(236,111,63,.4) 0%, transparent 70%);
  opacity: 1;
}
.kkk-flow__step--final .kkk-flow__step-day {
  color: var(--warm-600);
  background: rgba(236,111,63,.14);
  border-color: rgba(236,111,63,.35);
}

.kkk-flow__step h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.kkk-flow__step p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* Urgent CTA — «Запустимся за 3 дня» */
.kkk-flow__urgent {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 840px;
  margin: 64px auto 0;
  padding: 24px 32px;
  background:
    linear-gradient(135deg, rgba(236,111,63,.18) 0%, rgba(236,111,63,.04) 50%, rgba(0,179,136,.06) 100%),
    rgba(255,255,255,.03);
  border: 1px solid rgba(236,111,63,.45);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 16px 48px rgba(236,111,63,.15),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.kkk-flow__urgent::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(236,111,63,.25) 0%, transparent 60%);
  pointer-events: none;
}
.kkk-flow__urgent-icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--warm-600), #C95730);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(236,111,63,.5);
}
.kkk-flow__urgent-icon svg { width: 26px; height: 26px; }
.kkk-flow__urgent-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1.5px solid rgba(236,111,63,.4);
  animation: kkk-flow-urgent-ring 2.4s ease-out infinite;
}
@keyframes kkk-flow-urgent-ring {
  0%   { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.kkk-flow__urgent-text { position: relative; min-width: 0; }
.kkk-flow__urgent-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--warm-500);
  margin-bottom: 6px;
}
.kkk-flow__urgent-text h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 6px;
}
.kkk-flow__urgent-num {
  background: linear-gradient(135deg, var(--warm-600), #FFB582);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kkk-flow__urgent-text p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.kkk-flow__urgent-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--warm-600), #C95730);
  color: #fff;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(236,111,63,.45),
    inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.kkk-flow__urgent-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(236,111,63,.6),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.kkk-flow__urgent-cta svg { transition: transform .25s ease; }
.kkk-flow__urgent-cta:hover svg { transform: translateX(4px); }

@media (max-width: 700px) {
  .kkk-flow__urgent {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .kkk-flow__urgent-icon { margin: 0 auto; }
  .kkk-flow__urgent-cta { justify-self: center; }
}

@media (max-width: 980px) {
  .kkk-flow { padding: 80px 0 70px; }
  .kkk-flow__rail { display: none; }
  .kkk-flow__steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 600px) {
  .kkk-flow__steps { grid-template-columns: 1fr; gap: 28px; }
  .kkk-flow__step { display: grid; grid-template-columns: 76px 48px 1fr; column-gap: 16px; text-align: left; position: relative; z-index: 1; }
  .kkk-flow__step-day { grid-column: 1; grid-row: 1 / 3; margin: 0; align-self: center; width: auto; text-align: center; letter-spacing: .08em; padding-left: 6px; padding-right: 6px; }
  .kkk-flow__step-marker { grid-column: 2; grid-row: 1 / 3; margin: 0; align-self: center; width: 48px; height: 48px; position: relative; z-index: 2; }
  .kkk-flow__step-marker svg { width: 20px; height: 20px; }
  .kkk-flow__step > h4 { grid-column: 3; grid-row: 1; margin: 0 0 4px; }
  .kkk-flow__step > p { grid-column: 3; grid-row: 2; margin: 0; }
  .kkk-flow__note { font-size: 13px; padding: 10px 16px; }
}

/* ── Snake-таймлайн (mobile одноколоночный) ──
   SVG-«змейка» между маркерами flow. JS рисует path по реальным
   координатам маркеров и обновляет прогресс при скролле. */
.kkk-flow__snake { display: none; }

@media (max-width: 600px) {
  .kkk-flow__track { position: relative; }
  .kkk-flow__snake {
    display: block;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
  }
  .kkk-flow__snake path {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .kkk-flow__snake-bg { stroke: rgba(236,111,63,.15); }
  .kkk-flow__snake-fg {
    stroke: var(--warm-600);
    stroke-dasharray: var(--snake-len, 1);
    stroke-dashoffset: var(--snake-len, 1);
    transition: stroke-dashoffset .25s linear;
    filter: drop-shadow(0 0 6px rgba(236,111,63,.35));
  }
}
@media (prefers-reduced-motion: reduce) {
  .kkk-flow__snake-fg { transition: none; stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL TO TOP — стрелка «наверх»
   ═══════════════════════════════════════════════════════════════ */

.kkk-totop {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 89;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,37,64,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease;
  box-shadow:
    0 8px 20px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.kkk-totop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.kkk-totop:hover {
  background: var(--primary-900);
  border-color: rgba(0,179,136,.5);
  color: var(--accent-600);
}
.kkk-totop:hover svg { transform: translateY(-2px); }
.kkk-totop svg {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.kkk-totop:focus-visible {
  outline: 2px solid var(--accent-600);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .kkk-totop { bottom: 76px; right: 16px; width: 40px; height: 40px; }
  .kkk-totop svg { width: 16px; height: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY FLOATING CTA — «Получить КП»
   ═══════════════════════════════════════════════════════════════ */

.kkk-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
  color: #fff;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  box-shadow:
    0 12px 32px rgba(0,179,136,.4),
    0 4px 12px rgba(15,37,64,.18),
    inset 0 1px 0 rgba(255,255,255,.2);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.kkk-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.kkk-fab.is-hidden {
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
}
.kkk-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(0,179,136,.5),
    0 6px 16px rgba(15,37,64,.22),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.kkk-fab:hover .kkk-fab__arrow { transform: translateX(4px); }
.kkk-fab__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warm-600);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(236,111,63,.7);
  animation: kkk-fab-pulse 2s infinite;
}
@keyframes kkk-fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,111,63,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(236,111,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,111,63,0); }
}
.kkk-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
}
.kkk-fab__icon svg { width: 18px; height: 18px; }
.kkk-fab__arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}

@media (max-width: 600px) {
  .kkk-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px 12px 14px;
    font-size: 14px;
  }
  .kkk-fab__text { display: inline; }
}
@media (max-width: 380px) {
  .kkk-fab__text { display: none; }
  .kkk-fab { padding: 14px; gap: 0; }
  .kkk-fab__arrow { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SAVINGS — Снижаем затраты на 7–15%
   Принципы из ревизии: flat fills, без glow, оранжевый только в CTA,
   letter-spacing ≤ 0.05em, числа одним span.
   ═══════════════════════════════════════════════════════════ */
.kkk-savings {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(180deg, #EBF0FA 0%, #DDE6F5 100%);
  overflow: hidden;
}
.kkk-savings::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,37,64,.13) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 40%, transparent 80%);
}

.kkk-savings__head {
  position: relative;
  text-align: left;
  max-width: 700px;
  margin: 0 0 56px;
}
.kkk-savings__head h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--text-heading);
  margin: 14px 0 16px;
}
.kkk-savings__head h2 .kkk-sec__hl {
  white-space: nowrap;
}
.kkk-savings__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ── 6 источников экономии ────────────────────────────── */
.kkk-savings__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.kkk-savings-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(186,215,255,.7);
  border-radius: 16px;
  padding: 28px 26px 26px;
  box-shadow: 0 2px 8px rgba(30,58,95,.06), 0 10px 28px rgba(30,58,95,.07);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.kkk-savings-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,179,136,.4);
}
.kkk-savings-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.kkk-savings-card__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(145deg, #3B82F6, #1D4ED8);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(59,130,246,.5), 0 2px 8px rgba(29,78,216,.2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.kkk-savings-card__icon svg { width: 24px; height: 24px; }
.kkk-savings-card:hover .kkk-savings-card__icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(59,130,246,.6), 0 3px 10px rgba(29,78,216,.25);
}
.kkk-savings-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.3;
  margin: 0 0 8px;
}
.kkk-savings-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}

/* ── Сравнение «аутсорсинг vs штат» ───────────────────── */
.kkk-savings__compare {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px 36px;
  margin-bottom: 56px;
}
.kkk-savings__compare-head {
  text-align: left;
  margin-bottom: 28px;
}
.kkk-savings__compare-head h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--text-heading);
  margin: 12px 0 10px;
}
.kkk-savings__compare-head p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.kkk-savings__table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.kkk-savings__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-body);
}
.kkk-savings__row > div:first-child {
  font-weight: 600;
  color: var(--text-heading);
}
.kkk-savings__row--head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(15,37,64,.025);
}
.kkk-savings__row--head > div:first-child { color: var(--text-muted); }
.kkk-savings__col--neg {
  position: relative;
  padding-left: 22px;
}
.kkk-savings__col--neg::before {
  content: '−';
  position: absolute;
  left: 6px; top: 0;
  font-weight: 700;
  color: #B91C1C;
  font-size: 16px;
  line-height: 1.5;
}
.kkk-savings__col--pos {
  position: relative;
  padding-left: 22px;
  color: var(--text-heading);
  font-weight: 500;
}
.kkk-savings__col--pos::before {
  content: '✓';
  position: absolute;
  left: 4px; top: 0;
  font-weight: 700;
  color: var(--accent-600);
  font-size: 14px;
  line-height: 1.65;
}
.kkk-savings__row--head .kkk-savings__col--neg,
.kkk-savings__row--head .kkk-savings__col--pos {
  padding-left: 8px;
}
.kkk-savings__row--head .kkk-savings__col--neg::before,
.kkk-savings__row--head .kkk-savings__col--pos::before { display: none; }

/* ── CTA-плашка «Прозрачный расчёт» (единственный оранжевый акцент секции) ── */
.kkk-savings__proof {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 36px;
  background: linear-gradient(135deg, #FFF5EE 0%, #FEEAD6 100%);
  border: 1px solid rgba(236,111,63,.3);
  border-radius: 18px;
}
.kkk-savings__proof-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(236,111,63,.25);
  color: var(--warm-600);
  display: flex; align-items: center; justify-content: center;
}
.kkk-savings__proof-icon svg { width: 30px; height: 30px; }
.kkk-savings__proof-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-600);
  margin-bottom: 6px;
}
.kkk-savings__proof h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-heading);
  margin: 0 0 6px;
}
.kkk-savings__proof p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
  max-width: 640px;
}
.kkk-savings__proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--warm-600);
  color: #fff;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.kkk-savings__proof-cta:hover {
  background: #D85A2A;
  transform: translateY(-1px);
  color: #fff;
}
.kkk-savings__proof-cta svg { flex-shrink: 0; }

@media (max-width: 980px) {
  .kkk-savings { padding: 80px 0 70px; }
  .kkk-savings__grid { grid-template-columns: repeat(2, 1fr); }
  .kkk-savings__compare { padding: 32px 24px 28px; }
  .kkk-savings__row { grid-template-columns: 1.2fr 1fr 1fr; font-size: 13.5px; padding: 12px 4px; gap: 12px; }
  .kkk-savings__proof { grid-template-columns: 1fr; gap: 18px; padding: 26px 24px; text-align: center; }
  .kkk-savings__proof-icon { margin: 0 auto; }
  .kkk-savings__proof p { margin-left: auto; margin-right: auto; }
  .kkk-savings__proof-cta { justify-self: center; }
}
@media (max-width: 600px) {
  .kkk-savings { padding: 60px 0 56px; }
  .kkk-savings__head { margin-bottom: 40px; }
  .kkk-savings__grid { grid-template-columns: 1fr; }
  .kkk-savings__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 8px;
  }
  .kkk-savings__row--head { display: none; }
  .kkk-savings__row > div:first-child {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
  }
  .kkk-savings__col--neg, .kkk-savings__col--pos { padding-left: 22px; }
}
