/* ══════════════════════════════════════════════════
   DESIGN TOKENS — строго в экосистеме приложения
══════════════════════════════════════════════════ */
:root {
  --accent:        #3B6FD4;
  --accent-dark:   #2D5AB5;
  --accent-deeper: #1E3A6E;
  --accent-bg:     #EEF2FF;
  --accent-lite:   #F0F4FF;
  --green:         #16A34A;
  --green-bg:      #F0FDF4;
  --green-dark:    #15803D;
  --green-border:  #A7F3D0;
  --red:           #DC2626;
  --red-bg:        #FFF1F2;
  --amber:         #D97706;
  --amber-bg:      #FFFBEB;
  --amber-dark:    #92400E;
  --text-primary:  #1A1D23;
  --text-secondary:#6B7280;
  --text-muted:    #9CA3AF;
  --surface:       #FFFFFF;
  --surface-alt:   #FAFAFA;
  --border:        #E2E8F0;
  --border-strong: #CBD5E1;
  --bg:            #F4F6FA;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     16px;
  --shadow-sm:     0 1px 4px rgba(59,111,212,.07);
  --shadow-md:     0 4px 20px rgba(59,111,212,.12);
  --shadow-lg:     0 12px 48px rgba(59,111,212,.16);
  --tr:            .25s cubic-bezier(.4,0,.2,1);
  --white:         #ffffff; /* = --surface, kept for legacy refs */
  --space-xs:      8px;
  --space-sm:      16px;
  --space-md:      24px;
  --space-lg:      48px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons (в стиле app.js) ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer; transition: all var(--tr);
  white-space: nowrap; line-height: 1.4;
  min-height: 40px;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  border-color: var(--accent-dark);
}
.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(59,111,212,.35);
  transform: translateY(-1px);
}
.btn-primary-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--radius-lg); min-height: 48px; }
.btn-outline {
  background: transparent; color: var(--accent);
  border-color: var(--border-strong);
}
.btn-outline-lg { padding: 13px 26px; font-size: 15px; border-radius: var(--radius-lg); border-width: 1.5px; min-height: 48px; }
.btn-success {
  background: var(--accent); color: var(--white);
  border-color: var(--accent-dark);
}
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border-color: rgba(255,255,255,.25);
}

/* ── Section headers ── */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-bg); color: var(--accent);
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 99px; margin-bottom: 16px;
  border: 1px solid rgba(59,111,212,.15);
}
.section-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700; line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-title .hl {
  color: var(--accent);
}
.section-title .hl::after {
  content: none;
}
.section-sub {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.7; max-width: 600px;
}
.section-center { text-align: center; }
.section-center .section-sub { max-width: 600px; margin: 0 auto; }


/* Grid patterns — unified below in UNIFIED SECTION BACKGROUNDS */
/* Trust bar */
.trust-bar {
  position: relative; overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,111,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}
.trust-grid { position: relative; z-index: 1; }
/* Demo wrapper already has grid - replace existing */
/* Footer grid */
.footer {
  position: relative; overflow: hidden;
}
.footer-inner, .footer-bottom { position: relative; z-index: 1; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */

/* Nav fixed when mobile menu is open */
.nav.menu-open {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 900;
}
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(26,29,35,.07);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--tr);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-6deg) scale(1.08); }
.nav-logo-icon svg { width: 18px; height: 18px; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-size: 17px; font-weight: 700; color: var(--text-primary);
  letter-spacing: -.02em;
}
.nav-logo-sub { font-size: 10px; color: var(--text-muted); font-weight: 400; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  padding: 6px 12px; border-radius: var(--radius-md);
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-burger {
  display: none; width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--tr);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #1B3F80 0%, #2355B4 45%, #3B6FD4 100%);
  z-index: 899;
  flex-direction: column; gap: 2px;
  padding: 0 0 24px; overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,.15);
}
.mob-nav a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.8);
  padding: 13px 20px; border-left: 3px solid transparent;
  transition: background var(--tr), color var(--tr), padding-left var(--tr);
}
.mob-nav a:hover { background: rgba(255,255,255,.1); color: #fff; border-left-color: rgba(255,255,255,.5); padding-left: 24px; }
.mob-nav-sep { height: 1px; background: rgba(255,255,255,.1); margin: 12px 20px; }
.mob-nav .btn { width: calc(100% - 40px); justify-content: center; margin: 4px 20px 0; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #F6F9FF 0%, #FFFFFF 100%);
}
/* Subtle grid */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,111,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 0%, transparent 75%);
}
/* Glow blobs */
.hero-blob {
  position: absolute; pointer-events: none; border-radius: 50%;
}
.hero-blob-1 {
  top: -140px; right: -80px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(59,111,212,.09) 0%, transparent 65%);
}
.hero-blob-2 {
  bottom: -80px; left: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(22,163,74,.07) 0%, transparent 65%);
}

/* ══ HERO IMAGE — browser mock wraps image naturally ══ */
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { display:flex; flex-direction:column; justify-content:center; }
.hero-visual  { display:flex; flex-direction:column; }
.hero-visual .browser-bar  { flex-shrink:0; }
.hero-visual .browser-screen {
  aspect-ratio: unset !important;
  max-height: unset !important;
  overflow: hidden;
  display: block;
  line-height: 0;
}
.hero-visual .browser-screen img {
  width: 100%; height: auto;
  display: block;
  cursor: zoom-in;
}

/* ══ FORMATS BANNER — fluid, never clips on any screen ══ */
.formats-banner { padding: 36px 0; overflow: visible; }
.formats-banner .container { overflow: visible; }
.formats-banner-centered { gap: 20px; padding: 0 16px; box-sizing: border-box; }
.fmt-anim-track {
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  overflow: visible !important;
}
.fmt-anim-files { flex-wrap: wrap !important; gap: 7px !important; }
.fmt-anim-wrap  { overflow: visible !important; width: 100% !important; max-width: 100% !important; }

/* ══ UNIFIED SECTION BACKGROUNDS — single subtle grid on white, no ::before mess ══ */
.how-section::before, .demo-section::before, .calc-section::before,
.who-section::before, .contact-section::before, .privacy-section::before,
.pain-section::before, .features-section::before, .compare-section::before,
.memory-section::before, .faq-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(59,111,212,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.042) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pain-section, .result-section, .features-section,
.compare-section, .memory-section, .faq-section  { background: var(--bg) !important; }
.how-section, .demo-section, .who-section,
.privacy-section, .calc-section, .contact-section { background: var(--surface) !important; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-bg);
  border: 1px solid rgba(59,111,212,.2);
  border-radius: 99px;
  padding: 6px 14px; margin-bottom: 24px;
  font-size: 12px; font-weight: 500; color: var(--accent);
  animation: fadeUp .5s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,.25); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,.1); }
}
.hero-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900; line-height: 1.1;
  color: var(--text-primary); letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fadeUp .6s .08s ease both;
}
.hero-title .accent { color: var(--accent); }
.hero-lead {
  font-size: 15.5px; color: var(--text-muted);
  font-weight: 400;
  line-height: 1.72; margin-bottom: 36px;
  animation: fadeUp .6s .16s ease both;
}
.hero-lead strong { color: var(--text-secondary); font-weight: 600; }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  animation: fadeUp .6s .24s ease both;
}
.hero-cta-note {
  font-size: 12px; color: var(--text-muted);
  margin-top: 8px; width: 100%;
}
.hero-cta-note svg { vertical-align: -2px; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--border); padding-top: 24px;
  animation: fadeUp .6s .32s ease both;
}
.hero-proof-item {
  flex: 1; min-width: 90px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item:last-child { border-right: none; }
.hero-proof-num {
  font-family: 'Inter', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--text-primary); line-height: 1;
  margin-bottom: 4px;
}
.hero-proof-num .u { font-size: 14px; color: var(--accent); font-family: 'Inter', sans-serif; }
.hero-proof-lbl { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

.hero-visual {
  position: relative;
  animation: scaleIn .7s .1s ease both;
  display: flex; flex-direction: column;
  justify-content: flex-start;
}
.hero-visual .browser-mock {
  display: flex; flex-direction: column;
}
.hero-visual .browser-screen {
  aspect-ratio: unset;
  max-height: unset;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.browser-mock {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 72px rgba(26,29,35,.16), 0 0 0 1px var(--border);
  overflow: hidden;
  position: relative; z-index: 2;
}
.browser-bar {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FC5154; }
.browser-dots span:nth-child(2) { background: #FCBB40; }
.browser-dots span:nth-child(3) { background: #42C95F; }
.browser-url {
  flex: 1; background: var(--border);
  border-radius: 5px; height: 22px;
  display: flex; align-items: center;
  padding: 0 10px;
  font-size: 10px; color: var(--text-muted); font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.browser-url-text {
  font-size: 10.5px;
  font-weight: 500;
  color: #1a1d23;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .browser-url-text {
    text-overflow: clip;
    animation: browser-marquee 9s linear infinite;
  }
  @keyframes browser-marquee {
    0%   { transform: translateX(0); }
    30%  { transform: translateX(0); }
    70%  { transform: translateX(calc(-100% + 140px)); }
    100% { transform: translateX(calc(-100% + 140px)); }
  }
}
.browser-url-accent {
  color: var(--accent);
  font-weight: 700;
}

/* ══ SCROLL PERFORMANCE: GPU compositing + touch ══ */
img {
  max-width: 100%;
  height: auto;
}
.hero-visual .browser-screen img,
.result-screen-img img,
.demo-screen-img img {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
/* Разрешаем вертикальный скролл без задержки 300мс */
.hero-visual,
.result-screen-img,
.demo-screen-img,
.result-screen-wrap,
.demo-screen-wrap,
section {
  touch-action: pan-y;
}
/* picture тег не ломает блочную модель */
picture {
  display: block;
  line-height: 0;
}
picture img {
  width: 100%;
  height: auto;
}


   Отключаем тяжёлые эффекты на мобильных:
   backdrop-filter и will-change бьют по FPS при скролле
*/
@media (max-width: 768px) {
  /* Полностью скрываем слой анимации на мобильных —
     он не нужен и тормозит скролл */
  .fi-layer { display: none !important; }

  /* Убираем backdrop-filter у файловых иконок (слой скрыт, но на всякий) */
  .fi-file {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Отключаем CSS-анимации hero-blob на мобильных */
  .hero-blob {
    display: none !important;
  }

  /* Разгружаем браузер: убираем will-change у неактивных элементов */
  .browser-mock,
  .hero-visual,
  .hero-content {
    will-change: auto !important;
  }

  /* Плавный скролл без рывков */
  * {
    -webkit-overflow-scrolling: touch;
  }

  /* Скрываем телефон в шапке на мобильных */
  .nav-phone-link { display: none !important; }

  /* Изображения не перерисовываются при скролле */
  .browser-screen img,
  .result-screen-img img,
  .demo-screen-img img {
    will-change: auto !important;
    transform: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Картинки result и demo — полностью внутри рамки, без обрезки */
  .result-screen-img img {
    max-height: none !important;
    object-fit: contain !important;
    object-position: top center !important;
  }
  .demo-screen-img img {
    max-height: none !important;
    object-fit: contain !important;
    object-position: top center !important;
  }

  /* Картинки не выходят за экран */
  picture, picture img, img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }

  /* content-visibility: ленивый рендеринг секций вне вьюпорта */
  .pain-section,
  .features-section,
  .who-section,
  .compare-section,
  .privacy-section,
  .memory-section,
  .faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
  }

  /* Убираем тяжёлые box-shadow у browser-mock */
  .browser-mock {
    box-shadow: 0 8px 24px rgba(26,29,35,.12), 0 0 0 1px var(--border) !important;
  }
}
.browser-screen {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.browser-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
}
.browser-screen-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent-lite) 0%, #e8eeff 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}

/* Float badges on hero */
.float-card {
  position: absolute; z-index: 3;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26,29,35,.14);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
}
.float-card-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px;
}
.fc-green { background: var(--green-bg); }
.fc-blue  { background: var(--accent-bg); }
.fc-amber { background: var(--amber-bg); }
.float-card-text { display: flex; flex-direction: column; gap: 1px; }
.float-card-val { font-size: 15px; font-weight: 600; color: var(--text-primary); line-height: 1; }
.float-card-lbl { font-size: 10px; color: var(--text-muted); font-weight: 500; }

.fc-top-right {
  top: 18px; right: -16px;
  animation: floatY 4s ease-in-out infinite;
}
.fc-bottom-left {
  bottom: 16px; left: -16px;
  animation: floatY 5s ease-in-out infinite;
  animation-delay: 1.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ══════════════════════════════════════════════════
   GUARANTEE STRIP (7-day money back)
══════════════════════════════════════════════════ */
.guarantee-strip {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%);
  padding: 20px 0;
  position: relative; overflow: hidden;
}
.guarantee-strip::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.guarantee-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.guarantee-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.15);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.25);
}
.guarantee-icon svg { color: var(--white); }
.guarantee-text { color: var(--white); }
.guarantee-text strong {
  font-size: 22px; font-weight: 700; display: block;
  margin-bottom: 4px;
}
.guarantee-text span {
  font-size: 14px; opacity: .85;
}
.guarantee-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-lg);
  padding: 8px 18px;
  color: var(--white); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

@keyframes shieldPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.0), 0 0 0 0 rgba(59,111,212,.0); }
  40%      { box-shadow: 0 0 0 8px rgba(255,255,255,.18), 0 0 0 0 rgba(59,111,212,.0); }
  70%      { box-shadow: 0 0 0 14px rgba(255,255,255,.05), 0 0 0 6px rgba(59,111,212,.12); }
}
.g-pulse {
  animation: shieldPulse 2.6s ease-in-out infinite;
  border-radius: 12px;
}
.guarantee-subtext {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-style: italic;
  padding: 14px var(--space-lg) 0;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
}


/* ══════════════════════════════════════════════════
   FORMATS BANNER — animated, guarantee strip style
══════════════════════════════════════════════════ */
.formats-banner {
  background: linear-gradient(135deg, #0F4C2A 0%, #15803D 60%, #16A34A 100%);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.formats-banner::before {
  content: '';
  position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.formats-inner {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.formats-left {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.formats-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.0); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,.12); }
}
.fmt-icon-pulse { animation: iconPulse 2.8s ease-in-out infinite; }
.formats-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 3px; }
.formats-sub   { font-size: 11px; color: rgba(255,255,255,.5); }

/* Animated conveyor */
.fmt-anim-wrap {
  flex: 1; min-width: 200px; max-width: 380px;
  overflow: hidden;
}
.fmt-anim-track {
  display: flex; align-items: center; gap: 10px;
}
.fmt-anim-files {
  display: flex; flex-direction: column; gap: 5px;
  flex-shrink: 0;
}
@keyframes fileSlideIn {
  0%   { opacity: 0; transform: translateX(-28px); }
  18%  { opacity: 1; transform: translateX(0); }
  72%  { opacity: 1; transform: translateX(0); }
  92%  { opacity: 0; transform: translateX(8px); }
  100% { opacity: 0; transform: translateX(-28px); }
}
.fmt-file {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px; padding: 4px 10px;
  opacity: 0;
  animation: fileSlideIn 3.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  white-space: nowrap;
}
.fmt-file-ext {
  font-size: 9px; font-weight: 700; letter-spacing: .04em;
  padding: 2px 5px; border-radius: 4px; flex-shrink: 0;
}
.ext-xlsx  { background: rgba(34,197,94,.25); color: #86EFAC; }
.ext-xlsx2 { background: rgba(59,130,246,.25); color: #93C5FD; }
.ext-csv   { background: rgba(251,191,36,.2);  color: #FCD34D; }
.fmt-file-name { font-size: 11px; color: rgba(255,255,255,.6); }
.fmt-anim-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.fmt-anim-gear { animation: spin 4s linear infinite; }
@keyframes fileAppear {
  0%,38% { opacity: 0; transform: scale(.88) translateX(8px); }
  55%    { opacity: 1; transform: scale(1) translateX(0); }
  100%   { opacity: 1; }
}
.fmt-file-out {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9px; padding: 8px 14px;
  animation: fileAppear 3.2s ease-in-out infinite;
  flex-shrink: 0;
}
.fmt-file-name-out {
  font-size: 12px; font-weight: 600; color: #fff; white-space: nowrap;
}
.fmt-out-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #86EFAC;
  background: rgba(34,197,94,.2); border: 1px solid rgba(34,197,94,.3);
  border-radius: 4px; padding: 2px 6px;
}

/* Stats */
.formats-facts {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
}
.fmt-fact {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.fmt-fact:last-child { border-right: none; padding-right: 0; }
.fmt-fact-num { font-size: 17px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.fmt-fact-u   { font-size: 11px; color: #86EFAC; font-weight: 600; }
.fmt-fact-lbl { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 4px; text-align: center; line-height: 1.3; }
@media (max-width: 900px) { .fmt-anim-wrap { display: none; } }
@media (max-width: 680px) { .formats-facts { display: none; } }

/* trust-bar removed (display:none, unused) */

/* ══════════════════════════════════════════════════
   PAIN → SOLUTIONS
══════════════════════════════════════════════════ */
.pain-section {
  padding: 72px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.pain-section::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.06) 0%, transparent 65%);
  pointer-events: none;
}
.pain-section::after {
  content: '';
  position: absolute; bottom: -60px; left: -40px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.05) 0%, transparent 65%);
  pointer-events: none;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: stretch;
  position: relative; z-index: 1;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #7CA8F0);
  opacity: 0;
  transition: opacity var(--tr);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,111,212,.2);
}
.pain-card:hover::before { opacity: 1; }

.pain-card-pain {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
.pain-card-pain-icon {
  width: 28px; height: 28px; background: #FEF9C3;
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  color: #CA8A04;
}
.pain-card-pain-text {
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary); line-height: 1.45; flex: 1;
}
.pain-card-arrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); margin-bottom: 12px;
}
.pain-card-solution {
  display: flex; align-items: flex-start; gap: 12px;
}
.pain-card-solution-icon {
  width: 32px; height: 32px; background: var(--green-bg);
  border: 1px solid var(--green-border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.pain-card-solution-text { flex: 1; }
.pain-card-solution-title {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 5px; line-height: 1.35;
}
.pain-card-solution-desc {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   CUSTOM SECTION (разработка под запросы клиента)
══════════════════════════════════════════════════ */
.custom-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%);
  position: relative; overflow: hidden;
}
.custom-section::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: 40px 40px;
  pointer-events: none;
}
.custom-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: center;
  position: relative; z-index: 1;
}
.custom-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px; padding: 5px 12px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.custom-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: var(--space-sm);
  letter-spacing: -.02em;
}
.custom-desc {
  font-size: 16px; color: rgba(255,255,255,.82);
  line-height: 1.75; margin-bottom: var(--space-md);
}
.custom-list {
  display: flex; flex-direction: column; gap: var(--space-xs);
  margin-bottom: var(--space-md);
}
.custom-list-item {
  display: flex; align-items: flex-start; gap: var(--space-xs);
  font-size: 14px; color: rgba(255,255,255,.9);
}
.custom-list-icon {
  width: 22px; height: 22px; background: rgba(255,255,255,.15);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
  border: 1px solid rgba(255,255,255,.2);
}
.custom-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.custom-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  transition: background var(--tr);
}
.custom-card-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,.15);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 10px;
  color: var(--white);
}
.custom-card-title {
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 5px; line-height: 1.3;
}
.custom-card-desc {
  font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.55;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .fc-top-right { right: 0; }
  .fc-bottom-left { left: 0; }
  .hero-proof { flex-wrap: wrap; }
  .hero-proof-item { min-width: 100px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .trust-item:nth-child(4),
  .trust-item:nth-child(5) { border-top: 1px solid var(--border); }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .custom-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right .btn { display: none; }
  .nav-right .btn.nav-cta-mobile { display: inline-flex; }
  .hero { padding: 16px 0 48px; }
  .hero-title { font-size: 28px; }
  .hero-lead { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-proof-item { padding: 0 12px; }
  .hero-proof-num { font-size: 17px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust-item:nth-child(4),
  .trust-item:nth-child(5) { border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-right: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; align-items: center; gap: 12px; }
  .custom-inner { grid-template-columns: 1fr; }
  .custom-visual { grid-template-columns: 1fr 1fr; }
  .fc-top-right,
  .fc-bottom-left { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof { gap: 0; }
  .hero-proof-item { padding: 0 10px; }
}

/* ══════════════════════════════════════════════
   GLOBAL UX POLISH
══════════════════════════════════════════════ */

/* Typography scale */
.section-sub { font-size: 15px; line-height: 1.65; color: var(--text-secondary); max-width: 580px; }
h2 { letter-spacing: -.02em; }

/* Consistent card hover depth */
.how-step:hover, .pain-card:hover, .feat-card:hover, .who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,29,35,.09);
}

/* Tighter section headers */
.section-header { margin-bottom: 36px; }

/* Button scale consistency */
.btn { font-size: 14px; letter-spacing: -.01em; }
.btn-primary-lg { font-size: 15px; padding: 12px 22px; }
.btn-outline-lg { font-size: 15px; padding: 11px 20px; }

/* Input focus ring */
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,111,212,.12);
}

/* Form button full-width */
.form-btn { width: 100%; justify-content: center; margin-top: 4px; }

/* Nav logo sub font readable */
.nav-logo-sub { font-size: 9.5px; letter-spacing: .01em; white-space: nowrap; }

/* Compare table compact rows */




/* Guarantee text tighter */
.guarantee-text strong { font-size: 15px; }
.guarantee-text span { font-size: 13px; }

/* Formats banner compact */
.formats-title { font-size: 14px; }
.formats-sub { font-size: 11px; }
.fmt-fact-num { font-size: 17px; }
.fmt-fact-lbl { font-size: 10px; }

/* Pain card softer title */
.pain-card-title { font-size: 14px; font-weight: 600; }

/* How steps compact */
.how-step-title { font-size: 15px; }
.how-step-desc { font-size: 13px; }

/* FAQ compact */
.faq-q-text { font-size: 14px; }
.faq-a { font-size: 13px; line-height: 1.65; }

/* Result chips compact on smaller screens */
.result-chips { gap: 10px; }
.result-chip { padding: 12px 14px; font-size: 12px; }

/* scroll-behavior: smooth (already set on <html>) */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(59,111,212,.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(59,111,212,.35); }


.result-section {
  padding: 72px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}

.result-header {
  margin-bottom: 32px;
}
.result-screen-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(26,29,35,.14), 0 0 0 1px var(--border);
  background: var(--surface);
}
.result-screen-bar {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.result-screen-bar-title {
  font-size: 12px; color: var(--text-muted); font-weight: 500; flex: 1;
}
.result-screen-img img {
  width: 100%; display: block;
  object-fit: cover; object-position: top;
  max-height: 520px;
}
/* ══ RESULT CHIPS → MINI-CARDS ══ */
.result-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.result-chip {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #EEF4FF 0%, #F5F8FF 100%);
  border: 1px solid rgba(59,111,212,.18);
  border-radius: 14px;
  padding: 14px 16px;
  position: relative; overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  font-size: 13px; font-weight: 500;
  color: var(--text-primary); line-height: 1.45;
}
.result-chip::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 14px 0 0 14px;
}
.result-chip:nth-child(1)::before { background: var(--green); }
.result-chip:nth-child(2)::before { background: var(--accent); }
.result-chip:nth-child(3)::before { background: var(--amber); }
.result-chip:nth-child(4)::before { background: #7C3AED; }
.result-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,111,212,.14);
}
.chip-dot {
  width: 28px; height: 28px; border-radius: 8px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.chip-green  { background: rgba(22,163,74,.12); }
.chip-blue   { background: rgba(59,111,212,.12); }
.chip-amber  { background: rgba(217,119,6,.12); }
.chip-purple { background: rgba(124,58,237,.12); }
.chip-dot::after {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
}
.chip-green::after  { background: var(--green); }
.chip-blue::after   { background: var(--accent); }
.chip-amber::after  { background: var(--amber); }
.chip-purple::after { background: #7C3AED; }

/* ── HOW IT WORKS ── */
.how-section {
  padding: 72px 0;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.05) 0%, transparent 65%);
  pointer-events: none;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
}
.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,111,212,.2);
}
.how-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent); border-radius: var(--radius-md);
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 18px; flex-shrink: 0;
  letter-spacing: -.02em;
}
.how-step-num-inner { line-height: 1; }
.how-step-content {
  width: 100%;
  text-align: left;
}
.how-step-icon { display: none; }
.how-step-label { display: none; }
.how-step-title {
  font-size: 16px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
  line-height: 1.3;
}
.how-step-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.65;
}
.how-step-tip {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--accent-lite); border-radius: var(--radius-md);
  border: 1px solid rgba(59,111,212,.12);
  font-size: 12px; color: var(--text-secondary); line-height: 1.55;
}
.how-step-tip strong { color: var(--accent); }

.how-cta {
  margin-top: var(--space-lg);
}
.how-cta-inner {
  display: flex; align-items: center; gap: 16px;
  background: var(--accent-lite);
  border: 1px solid rgba(59,111,212,.15);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg); flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.how-cta-text { font-size: 16px; font-weight: 600; color: var(--text-primary); text-align: left; }
.how-cta-sub { font-size: 13px; color: var(--text-secondary); margin-top: 2px; text-align: left; }

/* ── DEMO SCREENSHOT ── */
.demo-section {
  padding: 0 0 72px;
  background: var(--surface);
  position: relative;
}
.demo-wrapper {
  background: linear-gradient(160deg, #EEF2FF 0%, #F0F8FF 50%, #F0FDF4 100%);
  border-radius: 24px;
  padding: 48px;
  position: relative; overflow: hidden;
}
.demo-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,111,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 24px;
  pointer-events: none;
}
.demo-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: var(--space-md);
  margin-bottom: var(--space-lg); flex-wrap: wrap;
  position: relative; z-index: 1;
}
.demo-header-left { max-width: 560px; }
.demo-title {
  font-size: clamp(20px, 2.2vw, 30px); font-weight: 700;
  color: var(--text-primary); line-height: 1.25;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.demo-sub {
  font-size: 15px; color: var(--text-secondary); line-height: 1.65;
}

.demo-screen-wrap {
  position: relative; z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(26,29,35,.16), 0 0 0 1px var(--border);
}
.demo-screen-bar {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.demo-screen-bar .browser-dots { display: flex; gap: 5px; }
.demo-screen-bar .browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.demo-screen-bar .browser-dots span:nth-child(1) { background: #FC5154; }
.demo-screen-bar .browser-dots span:nth-child(2) { background: #FCBB40; }
.demo-screen-bar .browser-dots span:nth-child(3) { background: #42C95F; }
.demo-screen-bar-title {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500;
}
.demo-screen-img {
  width: 100%; display: block;
  position: relative;
}
.demo-screen-img img {
  width: 100%; display: block;
  object-fit: cover; object-position: top;
}
/* Callout annotations */
.demo-callouts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm); margin-top: var(--space-md); position: relative; z-index: 1;
}
.demo-callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  display: flex; gap: 10px; align-items: flex-start;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.demo-callout:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,111,212,.2);
}
.demo-callout-dot {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--white);
  flex-shrink: 0; margin-top: 1px;
}
.dot-blue  { background: var(--accent); }
.dot-amber { background: var(--amber); }
.dot-red   { background: var(--red); }

.demo-callout-title {
  font-size: 13px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 3px;
}
.demo-callout-desc {
  font-size: 12px; color: var(--text-secondary); line-height: 1.5;
}

/* ── FEATURES GRID ── */
.features-section {
  padding: 72px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.05) 0%, transparent 65%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: stretch;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative; overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  cursor: default;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; opacity: 0;
  background: linear-gradient(90deg, var(--accent), #7CA8F0);
  transition: opacity var(--tr);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,111,212,.18);
}
.feature-card:hover::after { opacity: 1; }

.feature-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  transition: transform var(--tr);
}
.feature-card:hover .feature-card-icon { transform: scale(1.08); }
.fi-blue   { background: var(--accent-bg); color: var(--accent); }

.feature-card-title {
  font-size: 15px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 8px;
  line-height: 1.3;
}
.feature-card-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.65;
}
.feature-card-badge {
  display: inline-flex; margin-top: var(--space-sm);
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 99px;
  letter-spacing: .04em; text-transform: uppercase;
}
.fb-blue  { background: var(--accent-bg); color: var(--accent); }
.fb-new   { background: var(--amber-bg); color: var(--amber-dark); }

/* ── WHO IT'S FOR ── */
.who-section {
  padding: 72px 0;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.who-section::before {
  content: '';
  position: absolute; top: -80px; right: -40px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.05) 0%, transparent 65%);
  pointer-events: none;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: stretch;
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,111,212,.2);
}
.who-card-left { flex-shrink: 0; }
.who-card-avatar {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.who-card-right { flex: 1; min-width: 0; }
.who-card-role {
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.who-card-title {
  font-size: 17px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 10px;
  line-height: 1.3;
}
.who-card-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 14px;
}
.who-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.who-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 99px; padding: 4px 10px;
  font-size: 12px; color: var(--text-secondary);
}
.who-tag svg { color: var(--accent); flex-shrink: 0; }

/* ── RESPONSIVE MICROTASK 2 ── */
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; gap: 12px; }
  .how-step { flex-direction: row; gap: 16px; padding: 20px; }
  .how-step-num { width: 36px; height: 36px; font-size: 14px; margin-bottom: 0; flex-shrink: 0; }
  .how-step-content { flex: 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-callouts { grid-template-columns: repeat(2, 1fr); }
  .demo-header { flex-direction: column; }
  .who-grid { grid-template-columns: 1fr; }
  .result-chips { gap: 8px; }
}
@media (max-width: 640px) {
  .how-section, .demo-section, .features-section, .who-section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-card { padding: var(--space-sm) var(--space-sm); }
  .demo-wrapper { padding: 28px 20px; }
  .demo-callouts { grid-template-columns: 1fr 1fr; gap: 8px; }
  .who-card { padding: var(--space-sm); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .demo-callouts { grid-template-columns: 1fr; }
}

/* vertical centering rules consolidated below */

/* ── COMPARE SECTION ── */
.compare-section {
  padding: 72px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.compare-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.05) 0%, transparent 65%);
  pointer-events: none;
}

.compare-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  position: relative; z-index: 1;
}
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  font-size: 13px;
  min-width: 560px;
}

/* Head */
.compare-table thead th {
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  vertical-align: middle;
  letter-spacing: .01em;
}
.compare-table thead th:first-child {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: 36%;
}
.compare-table thead th.col-us {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.col-us-label { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.col-us-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 9px; font-weight: 500;
  padding: 1px 7px; border-radius: 99px;
  letter-spacing: .04em; text-transform: uppercase;
}

/* Body rows */
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody td {
  padding: 11px 20px;
  vertical-align: middle;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
}
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 13px;
}
.compare-table tbody td.col-us {
  background: #F8FAFF;
  border-left: 1px solid rgba(59,111,212,.12);
  border-right: 1px solid rgba(59,111,212,.12);
  color: var(--accent);
  font-weight: 400;
}

/* Category separator */
.compare-table tbody tr.row-sep td {
  padding: 8px 20px 4px;
  background: var(--bg);
  font-size: 10px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.compare-table tbody tr.row-sep td:first-child { text-align: left; }

/* Minimal tick/cross */
.cmp-yes  { color: #16A34A; display: inline-flex; align-items: center; }
.cmp-no   { color: #D1D5DB; display: inline-flex; align-items: center; }
.cmp-part { color: #D97706; display: inline-flex; align-items: center; }
.cmp-cell { display: flex; align-items: center; justify-content: center; gap: 5px; }
.cmp-note { font-size: 12px; color: var(--text-secondary); }
/* Hide ✓ — ~ symbols */
.compare-table .cmp-yes,
.compare-table .cmp-no,
.compare-table .cmp-part { display: none !important; }

.compare-legend {
  display: flex; align-items: center; gap: 20px;
  margin-top: 14px; flex-wrap: wrap;
}
.legend-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--text-muted);
}

/* ── PRIVACY SECTION ── */
.privacy-section {
  padding: 72px 0;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.privacy-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(59,111,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.privacy-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: center;
  position: relative; z-index: 1;
}
.privacy-visual {
  position: relative;
}
.privacy-diagram {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  position: relative;
}
.priv-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: 8px;
  transition: border-color var(--tr);
}
.priv-row:last-child { margin-bottom: 0; }
.priv-row-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.priv-row-text { flex: 1; min-width: 0; }
.priv-row-title {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 2px;
}
.priv-row-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.priv-row-status {
  font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 99px;
  flex-shrink: 0;
}

/* Arrow between rows */
.priv-arrow {
  display: flex; align-items: center; justify-content: center;
  margin: 6px 0; color: var(--text-muted);
}

/* Privacy content */

.privacy-points {
  display: flex; flex-direction: column; gap: var(--space-md);
  margin-top: var(--space-md);
}
.privacy-point {
  display: flex; gap: 14px; align-items: flex-start;
}
.privacy-point-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

.privacy-point-title {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 5px;
}
.privacy-point-desc {
  font-size: 14px; color: var(--text-secondary); line-height: 1.65;
}

/* ── MEMORY FILE SECTION ── */
.memory-section {
  padding: 72px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.memory-section::after {
  content: '';
  position: absolute; bottom: -60px; left: -40px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.05) 0%, transparent 65%);
  pointer-events: none;
}
.memory-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: stretch;
  position: relative; z-index: 1;
}
.memory-visual { display: flex; flex-direction: column; }
.memory-visual .memory-file-mock { flex: 1; }
.memory-visual {
  order: -1;
}
.memory-file-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mem-file-bar {
  background: var(--accent);
  padding: var(--space-xs) var(--space-sm);
  display: flex; align-items: center; gap: 10px;
}
.mem-file-bar-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,.15);
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.mem-file-bar-name {
  font-size: 13px; font-weight: 600; color: var(--white); flex: 1;
}
.mem-file-bar-size {
  font-size: 11px; color: rgba(255,255,255,.65);
}
.mem-file-body { padding: var(--space-md) var(--space-sm); display: flex; flex-direction: column; flex: 1; }
.mem-file-body > .mem-section-label { flex-shrink: 0; }
.memory-file-mock { display: flex; flex-direction: column; }
/* space out memory items evenly */
.mem-file-body .mem-item { flex: 1; align-items: center; margin-bottom: 0; }
.mem-file-body > :not(.mem-section-label) { margin-bottom: 6px; }
.mem-file-body > .mem-item:last-child { margin-bottom: 0; }
.mem-section-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); margin-bottom: 8px;
}
.mem-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: var(--bg); border-radius: var(--radius-md);
  margin-bottom: 6px;
  border: 1px solid var(--border);
}
.mem-item:last-child { margin-bottom: 0; }
.mem-item-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mi-blue   { background: var(--accent-bg); color: var(--accent); }
.mem-item-text { flex: 1; min-width: 0; }
.mem-item-title { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.mem-item-desc  { font-size: 11px; color: var(--text-muted); }
.mem-item-count {
  font-size: 11px; font-weight: 600;
  color: var(--accent); background: var(--accent-bg);
  padding: 2px 8px; border-radius: 99px;
}
.mem-file-sep {
  height: 1px; background: var(--border);
  margin: 16px 0;
}

/* Memory content */
.memory-why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-sm); margin-top: var(--space-md);
}
.memory-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.memory-why-card:hover {
  border-color: rgba(59,111,212,.2);
  box-shadow: var(--shadow-sm);
}
.mwc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.mwc-title {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 5px; line-height: 1.3;
}
.mwc-desc {
  font-size: 12px; color: var(--text-secondary); line-height: 1.55;
}

/* ── RESPONSIVE M3 ── */
@media (max-width: 900px) {
  .privacy-inner,
  .memory-inner { grid-template-columns: 1fr; gap: 40px; }
  .memory-visual { order: 0; }
  .memory-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .compare-section, .privacy-section, .memory-section { padding: 72px 0; }
  .memory-why-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table tbody td { padding: var(--space-xs) 12px; }
  .compare-table thead th { padding: var(--space-sm) 12px; }
}


/* ══════════════════════════════════════════════
   VERTICAL CENTERING FIXES — all horizontal rows
══════════════════════════════════════════════ */
/* Nav */
.nav-inner        { align-items: center; }
.nav-right        { align-items: center; }
/* Hero */
.hero-badge       { align-items: center; }
.hero-cta         { align-items: center; }
.hero-proof-item  { display: flex; flex-direction: column; justify-content: center; }
/* Guarantee strip */
.guarantee-inner  { align-items: center; }
.guarantee-icon   { display: flex; align-items: center; justify-content: center; }
/* Trust bar */
.trust-item       { align-items: flex-start; justify-content: flex-start; }
/* Pain cards */
.pain-card-pain   { align-items: flex-start; }
.pain-card-arrow  { align-items: center; }
/* Custom section */
.custom-list-item { align-items: center; }
.custom-card      { display: flex; flex-direction: column; }
/* How steps */
.how-step         { align-items: flex-start; text-align: left; }
.how-cta-inner    { align-items: center; }
/* Demo */
.demo-header      { align-items: flex-start; }
.demo-callout     { align-items: flex-start; }
/* Features */
.feature-card     { display: flex; flex-direction: column; }
/* Who */
.who-card         { align-items: flex-start; }
.who-card-left    { display: flex; align-items: flex-start; padding-top: 2px; }
/* Compare */
.compare-table tbody td { vertical-align: middle; }
.cmp-cell         { display: flex; align-items: center; justify-content: flex-start; gap: 6px; }
/* Privacy */
.priv-row         { align-items: center; }
.privacy-point    { align-items: flex-start; }
/* Memory */
.mem-item         { align-items: center; }
.memory-why-card  { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════════
   MICROTASK 4 — CALCULATOR + FAQ + CTA + FORM + FOOTER
══════════════════════════════════════════════ */

/* ── CALCULATOR ── */
.calc-section {
  padding: 72px 0;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.calc-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-lg); align-items: start;
  position: relative; z-index: 1;
}
.calc-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
}
.calc-field {
  margin-bottom: var(--space-md);
}
.calc-field label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 500; color: var(--text-primary);
  margin-bottom: 8px;
}
.calc-field label span {
  font-size: 12px; color: var(--text-muted); font-weight: 400;
}
.calc-range {
  flex: 1;
  -webkit-appearance: none;
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3); outline: none;
  cursor: pointer;
  transition: background var(--tr);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  cursor: pointer; transition: transform var(--tr);
}
.calc-range::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: none;
  cursor: pointer;
}
.calc-val {
  min-width: 52px; text-align: right;
  font-size: 15px; font-weight: 600;
  color: #fff;
}
.calc-sep {
  height: 1px; background: rgba(255,255,255,.2);
  margin: 24px 0;
}

/* ══════════════════════════════════════════════════
   CALCULATOR — redesigned
══════════════════════════════════════════════════ */

/* Equal height calc columns */
.calc-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: stretch;
  position: relative; z-index: 1;
}

/* Left: form — deep navy gradient */
.calc-form-wrap {
  background: linear-gradient(145deg, #0F2040 0%, #1A3A6C 100%);
  border: none;
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.calc-form-wrap::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(59,111,212,.18); pointer-events: none;
}
.calc-form-title {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.calc-field {
  margin-bottom: 22px;
}
.calc-field label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8);
  margin-bottom: 12px;
}
.calc-field label span {
  font-size: 14px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.12);
  padding: 2px 10px; border-radius: 6px;
}
.calc-range-row {
  display: flex; align-items: center; gap: 12px;
}
.calc-range {
  flex: 1; -webkit-appearance: none;
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,.15); outline: none;
  cursor: pointer; transition: background var(--tr);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  cursor: pointer; transition: transform var(--tr);
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: none; cursor: pointer;
}
.calc-val {
  min-width: 52px; text-align: right;
  font-size: 15px; font-weight: 700; color: #fff;
}
.calc-sep {
  height: 1px; background: rgba(255,255,255,.12);
  margin: 6px 0 22px;
}
.calc-hint {
  font-size: 11px; color: rgba(255,255,255,.4);
  margin-top: 6px; line-height: 1.5;
}

/* Right: results — clean white with vivid accent cards */
.calc-results {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
}
.calc-results-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.calc-results-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 4px;
}
.calc-results-title {
  font-size: 16px; font-weight: 700; color: var(--text-primary);
  line-height: 1.25;
}

/* New results grid */
.calc-res-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 16px; flex: 1;
}
.calc-res-card {
  border-radius: 14px; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.calc-res-label {
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-muted);
}
.calc-res-value {
  font-size: 24px; font-weight: 800; color: var(--text-primary);
  line-height: 1; letter-spacing: -.02em;
  transition: color .3s ease;
}
.calc-res-unit {
  font-size: 10px; color: var(--text-muted); font-weight: 400;
  line-height: 1.3;
}
.calc-cta-btn {
  width: 100%; justify-content: center;
  padding: 13px; font-size: 14px; font-weight: 600;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--accent), #5B8AE8) !important;
  border: none; border-radius: 12px !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(59,111,212,.3);
  transition: transform var(--tr), box-shadow var(--tr);
}

@media (max-width: 860px) {
  .calc-inner { grid-template-columns: 1fr; }
}


.calc-result-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--bg); border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: border-color var(--tr);
}
.calc-result-row:hover { border-color: rgba(59,111,212,.2); }
.calc-result-row:last-child { margin-bottom: 0; }
.calc-result-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cr-blue  { background: var(--accent-bg); color: var(--accent); }
.cr-amber { background: var(--amber-bg); color: var(--amber); }
.calc-result-text { flex: 1; min-width: 0; }
.calc-result-label {
  font-size: 11px; color: var(--text-muted); margin-bottom: 1px; line-height: 1.2;
}
.calc-result-value {
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  line-height: 1.2;
  transition: color .3s ease;
}
.calc-result-unit {
  font-size: 11px; color: var(--text-muted); font-weight: 400;
}

.calc-disclaimer {
  margin-top: 10px; padding: 8px 12px;
  background: var(--amber-bg);
  border: 1px solid rgba(217,119,6,.2);
  border-radius: var(--radius-md);
  font-size: 11px; color: var(--amber-dark); line-height: 1.5;
}

/* ── FAQ ── */
.faq-section {
  padding: 72px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.04) 0%, transparent 65%);
  pointer-events: none;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-sm); margin-top: var(--space-lg);
  position: relative; z-index: 1;
  align-items: start;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.faq-item.open,
.faq-item:hover { border-color: rgba(59,111,212,.2); }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-sm) 18px;
  cursor: pointer; user-select: none;
}
.faq-q-icon {
  width: 28px; height: 28px; background: var(--accent-bg);
  border-radius: 7px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--accent);
}
.faq-q-text {
  flex: 1; font-size: 14px; font-weight: 500;
  color: var(--text-primary); line-height: 1.4;
}
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--text-muted); transition: transform var(--tr);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: var(--space-sm) 18px var(--space-sm) 58px;
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%);
  position: relative; overflow: hidden;
}
.final-cta::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: 40px 40px;
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px;
}
.final-cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px; padding: 5px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.final-cta h2 {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: var(--space-sm);
  letter-spacing: -.02em;
}
.final-cta p {
  font-size: 17px; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: var(--space-md);
}
.final-cta-btns {
  display: flex; align-items: center; justify-content: flex-start;
  gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-md);
}
.btn-white {
  background: var(--white); color: var(--accent-deeper);
  border-color: transparent;
  font-weight: 600;
}
.final-cta-note {
  font-size: 13px; color: rgba(255,255,255,.6);
  text-align: left;
}
.final-cta-note span { margin: 0 10px; opacity: .4; }

/* Guarantee repeat badge */
.final-guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(59,111,212,.25);
  border-radius: var(--radius-lg); padding: 10px 20px;
  margin-top: 20px;
  font-size: 13px; font-weight: 500; color: var(--accent);
}
.final-guarantee svg { color: var(--accent); flex-shrink: 0; }

/* ── CONTACT FORM ── */

.contact-info-title {
  font-size: clamp(20px, 2.2vw, 30px); font-weight: 700;
  color: var(--text-primary); line-height: 1.25;
  margin-bottom: 14px; letter-spacing: -.02em;
}
.contact-info-sub {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 32px;
}
.contact-channels {
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none; color: var(--text-primary);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.contact-channel:hover {
  border-color: rgba(59,111,212,.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.contact-channel-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-blue   { background: var(--accent-bg); color: var(--accent); }
.cc-amber  { background: var(--amber-bg); color: var(--amber); }
.contact-channel-text { flex: 1; min-width: 0; }
.contact-channel-label {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px;
}
.contact-channel-value {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
}
.contact-channel-arrow { color: var(--text-muted); }

/* Form */
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-size: 17px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-field label .req { color: var(--red); margin-left: 2px; }
.form-input {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text-primary); background: var(--surface);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
textarea.form-input { resize: vertical; min-height: 96px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-btn {
  width: 100%; padding: 13px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all var(--tr);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.form-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-ok {
  display: none; text-align: center; padding: 24px 0;
}
.form-ok-icon {
  width: 52px; height: 52px; background: var(--green-bg);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 12px;
  color: var(--green);
}
.form-ok-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-ok-sub { font-size: 14px; color: var(--text-muted); }
.form-err {
  display: none; margin-top: 10px; padding: 10px 14px;
  background: var(--red-bg); border: 1px solid #FCA5A5;
  border-radius: var(--radius-md); font-size: 13px; color: var(--red);
}

/* ── FOOTER ── */
.footer {
  background: var(--accent-deeper);
  padding: 14px 0;
  color: rgba(255,255,255,.7);
  position: relative; overflow: hidden;
}
.footer-minimal {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,.45); white-space: nowrap;
}
.footer-tagline {
  font-size: 12px; color: #fff;
  font-style: normal;
}
@media (max-width: 600px) {
  .footer-tagline { display: none; }
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md); margin-bottom: var(--space-md);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.footer-logo-name {
  font-size: 15px; font-weight: 600; color: var(--white);
}
.footer-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.55); max-width: 280px;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color var(--tr);
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { flex-shrink: 0; opacity: .7; }

.footer-col-title {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color var(--tr);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.45); text-decoration: none;
  transition: color var(--tr);
}
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE M4 ── */
@media (max-width: 900px) {
  .calc-inner { grid-template-columns: 1fr; }
  .calc-results { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .calc-section, .faq-section, .final-cta, .contact-section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; justify-content: flex-start; }
}

@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}

/* ══════════════════════════════════════════════════
   CALCULATOR — ENHANCED DESIGN
══════════════════════════════════════════════════ */

/* Animated gradient background on form card */
@keyframes calcBgShift {
  0%   { background-position: 0% 60%; }
  50%  { background-position: 100% 40%; }
  100% { background-position: 0% 60%; }
}

.calc-section .calc-form-wrap {
  background: linear-gradient(-40deg, #1A3460, #2252A0, #1E3A6E, #2D5AB5, #173060) !important;
  background-size: 300% 300% !important;
  animation: calcBgShift 10s ease infinite !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 32px rgba(0,0,0,.18) !important;
}

/* Grid lines */
.calc-section .calc-form-wrap::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important; pointer-events: none !important; z-index: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) !important;
  background-size: 36px 36px !important;
  border-radius: 0 !important; width: auto !important; height: auto !important;
}
.calc-section .calc-form-wrap::after { display: none !important; }
.calc-section .calc-form-wrap > * { position: relative; z-index: 1; }

/* Separator */
.calc-section .calc-sep {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent) !important;
  margin: 20px 0 !important;
}

/* Field label row */
.calc-section .calc-field label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.78) !important;
  margin-bottom: 14px !important;
}

/* Value badge */
.calc-section .calc-val {
  min-width: 60px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: rgba(255,255,255,.14) !important;
  padding: 4px 12px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  transition: transform .15s ease, background .15s ease, border-color .15s ease !important;
  display: inline-block !important;
}
.calc-section .calc-val.pop {
  transform: scale(1.14) !important;
  background: rgba(255,255,255,.26) !important;
  border-color: rgba(255,255,255,.4) !important;
}

/* SLIDERS — bigger, mobile-friendly */
.calc-section .calc-range {
  flex: 1 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: 8px !important;
  border-radius: 4px !important;
  outline: none !important;
  cursor: pointer !important;
  transition: opacity .2s ease !important;
}
.calc-section .calc-range::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 3px solid rgba(255,255,255,.6) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,.2) !important;
  cursor: pointer !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}
.calc-section .calc-range:active::-webkit-slider-thumb,
.calc-section .calc-range:focus::-webkit-slider-thumb {
  transform: scale(1.15) !important;
  box-shadow: 0 3px 14px rgba(0,0,0,.3), 0 0 0 6px rgba(255,255,255,.18) !important;
}
.calc-section .calc-range::-moz-range-thumb {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 3px solid rgba(255,255,255,.6) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.25) !important;
  cursor: pointer !important;
}
.calc-section .calc-range::-moz-range-track {
  height: 8px !important;
  border-radius: 4px !important;
}

/* RESULT CARDS — flash animation */
@keyframes calcCardFlash {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.025); box-shadow: 0 0 0 3px rgba(59,111,212,.18); }
  100% { transform: scale(1); box-shadow: none; }
}
.calc-res-card {
  transition: transform .2s ease !important;
}
.calc-res-card.updating {
  animation: calcCardFlash .45s ease forwards !important;
}

/* Value counter transition */
.calc-res-value {
  transition: color .3s ease !important;
  font-variant-numeric: tabular-nums !important;
}

/* Progress bar under result values */
.calc-res-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,.08);
  margin-top: 8px;
  overflow: hidden;
}
.calc-res-green .calc-res-bar { background: rgba(22,163,74,.12); }
.calc-res-blue  .calc-res-bar { background: rgba(59,111,212,.12); }

.calc-res-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width .55s cubic-bezier(.4,0,.2,1);
}
.calc-res-green .calc-res-bar-fill {
  background: linear-gradient(90deg, #16A34A, #4ADE80);
}
.calc-res-blue .calc-res-bar-fill {
  background: linear-gradient(90deg, var(--accent), #5B8AE8);
}

/* ── Z-index fix for grid overlay sections ── */
.how-section > .container,
.demo-section > .container,
.who-section > .container,
.calc-section > .container,
.contact-section > .container,
.privacy-section > .container,
.trust-bar > .container,
.faq-section > .container {
  position: relative;
  z-index: 1;
}


/* ── CONTACT SECTION (redesigned) ── */
.contact-section { padding: 72px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-left {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.contact-info-title {
  font-size: clamp(20px, 2.2vw, 30px) !important;
  font-weight: 700; line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 10px; letter-spacing: -.02em;
}
.contact-info-sub {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 24px;
}
.contact-cta-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.contact-cta-btn {
  padding: 8px 16px !important;
  font-size: 13px !important;
  min-height: 36px !important;
  gap: 6px !important;
}
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px 28px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.form-title {
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-cta-row { flex-direction: column; }
  .contact-cta-btn { width: 100%; justify-content: center; }
}

/* ── Compare summary ── */
.compare-summary {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative; z-index: 1;
  box-shadow: 0 4px 24px rgba(59,111,212,.07);
}
.compare-summary-title {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-muted);
  padding: 14px 20px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
  display: flex; align-items: center; gap: 7px;
}
.compare-summary-title::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.compare-summary-grid {
  display: flex; flex-direction: column; gap: 0;
}
.cs-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; font-weight: 500;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  line-height: 1.45;
}
.cs-item:last-child { border-bottom: none; }
.cs-item:hover { background: var(--surface-alt); }
.cs-item-icon {
  width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.cs-pro {
  color: var(--text-primary);
  background: transparent;
}
.cs-pro .cs-item-icon {
  background: linear-gradient(135deg, #EEF6FF 0%, #DBEAFE 100%);
}
.cs-pro svg { color: var(--accent); flex-shrink: 0; }
.cs-con {
  color: var(--text-primary);
  background: transparent;
}
.cs-con .cs-item-icon {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
}
.cs-con svg { color: #D97706; flex-shrink: 0; }

/* ── Formats banner centered ── */
.formats-banner-centered {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; position: relative; z-index: 1;
}
.formats-center-title {
  font-size: 16px; font-weight: 700; color: #fff; text-align: center;
}
.formats-center-sub {
  font-size: 13px; color: rgba(255,255,255,.55); text-align: center; margin-top: 2px;
}
.fmt-conveyor-centered {
  width: 100%; max-width: 560px;
  overflow: visible;
}


@keyframes codeTyping {
  0%   { width: 0; }
  100% { width: 100%; }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.custom-anim-wrap {
  position: relative; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.custom-anim-card {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  font-size: 13px; color: #fff;
  line-height: 1.5;
  min-width: 200px;
}
.custom-anim-card-1 {
  top: 0; left: 0;
  animation: floatY 3.2s ease-in-out infinite;
}
.custom-anim-card-2 {
  top: 50px; right: 0;
  animation: floatY 3.6s ease-in-out infinite .4s;
}
.custom-anim-card-3 {
  bottom: 20px; left: 30px;
  animation: floatY 4s ease-in-out infinite .8s;
}
.custom-anim-card-4 {
  bottom: 0; right: 20px;
  animation: floatY 3.4s ease-in-out infinite 1.2s;
}
.cac-icon {
  width: 28px; height: 28px; background: rgba(255,255,255,.15);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 8px;
}
.cac-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cac-desc  { font-size: 11px; color: rgba(255,255,255,.65); }
.custom-anim-center {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  animation: floatY 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 12px rgba(255,255,255,.05), 0 0 0 24px rgba(255,255,255,.03);
}
.custom-anim-line {
  position: absolute; background: rgba(255,255,255,.15);
  border-radius: 2px;
}
.cal-1 { width: 2px; height: 60px; top: 56px; left: 106px; }
.cal-2 { width: 2px; height: 50px; bottom: 60px; right: 116px; }
.cal-3 { width: 60px; height: 2px; top: 86px; right: 120px; transform-origin: right; }

/* ── Calculator redesigned ── */
.calc-form-wrap {
  background: linear-gradient(145deg, #0A1628 0%, #0F2347 50%, #152D5A 100%) !important;
  position: relative; overflow: hidden;
}
.calc-form-wrap::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,111,212,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
@keyframes calcGlow {
  0%,100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.2); }
}
.calc-glow-1 {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.25) 0%, transparent 70%);
  top: -60px; left: -40px; pointer-events: none;
  animation: calcGlow 4s ease-in-out infinite;
}
.calc-glow-2 {
  position: absolute; width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,179,255,.15) 0%, transparent 70%);
  bottom: -40px; right: -30px; pointer-events: none;
  animation: calcGlow 5s ease-in-out infinite .8s;
}
.calc-form-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 28px; position: relative; z-index: 1;
}
.calc-field {
  position: relative; z-index: 1;
}
.calc-field label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75);
  margin-bottom: 12px; display: block;
}
.calc-val {
  min-width: 56px; text-align: right;
  font-size: 15px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.1); padding: 3px 10px;
  border-radius: 8px;
}
.calc-hint {
  position: relative; z-index: 1;
}
.calc-sep { position: relative; z-index: 1; }

/* ── Contact section animated bg ── */
.contact-section {
  background: var(--bg);
  position: relative; overflow: hidden;
}
.contact-bg-anim {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cba-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .45;
}
.cba-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,111,212,.35) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: calcGlow 6s ease-in-out infinite;
}
.cba-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(22,163,74,.25) 0%, transparent 70%);
  bottom: -60px; left: -40px;
  animation: calcGlow 7s ease-in-out infinite 1s;
}

/* ── Contact form animated bg ── */
.contact-form-wrap {
  background: linear-gradient(145deg, #0A1628 0%, #0F2347 50%, #152D5A 100%) !important;
  border: none !important;
  position: relative; overflow: hidden;
  color: #fff;
}
.contact-form-wrap::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,111,212,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.form-glow-1 {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,111,212,.3) 0%, transparent 70%);
  top: -50px; right: -40px; pointer-events: none;
  animation: calcGlow 5s ease-in-out infinite;
}
.form-glow-2 {
  position: absolute; width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,179,255,.2) 0%, transparent 70%);
  bottom: -30px; left: -20px; pointer-events: none;
  animation: calcGlow 6s ease-in-out infinite .6s;
}
.contact-form-header {
  position: relative; z-index: 1;
  margin-bottom: 24px;
}
.contact-form-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 6px;
}
.form-title {
  font-size: 20px; font-weight: 700; color: #fff !important;
  line-height: 1.2; margin-bottom: 0;
}
.form-title-sub {
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-top: 6px; line-height: 1.5;
}
.contact-form-wrap #cForm,
.contact-form-wrap .form-ok { position: relative; z-index: 1; }
.contact-form-wrap .form-input {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.15) !important;
  color: #fff !important;
  font-size: 15px !important;
  padding: 13px 16px !important;
}
.contact-form-wrap .form-input::placeholder { color: rgba(255,255,255,.35) !important; }
.contact-form-wrap .form-input:focus {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(59,111,212,.7) !important;
  box-shadow: 0 0 0 3px rgba(59,111,212,.2) !important;
}
.contact-form-wrap .form-btn {
  background: linear-gradient(135deg, var(--accent), #5B8AE8) !important;
  border-radius: 12px !important; margin-top: 8px;
  box-shadow: 0 4px 20px rgba(59,111,212,.45);
}
.contact-form-wrap .form-btn:hover {
  box-shadow: 0 6px 28px rgba(59,111,212,.6) !important;
}
.contact-form-wrap .form-ok-title { color: #fff !important; }
.contact-form-wrap .form-ok-sub { color: rgba(255,255,255,.55) !important; }
.contact-stats-row {
  display: flex; gap: 20px; margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
.cs-stat { display: flex; flex-direction: column; }
.cs-stat-val { font-size: 18px; font-weight: 700; color: #fff; line-height: 1; }
.cs-stat-lbl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; }

/* green→blue override (first copy removed, kept below) */

/* ══════════════════════════════════════════════
   ZEBRA — alternating section backgrounds
══════════════════════════════════════════════ */
.compare-table       { background: var(--surface) !important; }
.compare-table thead th { background: var(--bg) !important; }
.compare-table tbody tr:hover { background: var(--bg) !important; }
.compare-table tbody td.col-us { background: #F0F5FF !important; }

/* ══════════════════════════════════════════════
   FINAL OVERRIDES — hero, green→blue, custom cards
══════════════════════════════════════════════ */

/* .hero-visual rules (duplicate removed, kept in HERO section above) */

/* Formats banner */
.formats-banner { padding: 36px 0; }
.formats-banner-centered { gap: 24px; }

/* Custom cards — cursor hover */
.custom-card {
  transition: background var(--tr), transform .18s ease, box-shadow .18s ease !important;
  cursor: default;
}
.custom-card:hover {
  background: rgba(255,255,255,.22) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,.22) !important;
}

/* GREEN → BLUE: source rules */
.hero-badge-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(59,111,212,.25) !important;
}

.pain-card-solution-icon {
  background: var(--accent-bg) !important;
  border-color: rgba(59,111,212,.2) !important;
  color: var(--accent) !important;
}
.pain-card-arrow svg { color: var(--accent) !important; }
.chip-green  { background: var(--accent) !important; }
.dot-green   { background: var(--accent) !important; }
.fi-green    { background: var(--accent-bg) !important; color: var(--accent) !important; }
.fb-green    { background: var(--accent-bg) !important; color: var(--accent) !important; }
.mi-green    { background: var(--accent-bg) !important; color: var(--accent) !important; }
.cc-green    { background: var(--accent-bg) !important; color: var(--accent) !important; }
.cr-green    { background: var(--accent-bg) !important; color: var(--accent) !important; }
.calc-result-value.highlight { color: var(--accent) !important; }
.calc-res-green {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
  border-color: rgba(59,111,212,.15) !important;
}
.cs-pro svg { color: var(--accent) !important; }
/* ── Who benefits strip ── */
.who-benefits { position: relative; z-index: 1; }
.who-benefits-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px;
}
.who-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.who-benefit-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.wbi-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--accent-bg); color: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.wbi-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 900px) { .who-benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .who-benefits-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════════════════════════
   UNIFIED STYLE OVERRIDE — приведение к единому стилю приложения
   Два типа фонов: --surface (#fff) и --bg (#F4F6FA)
   Единый сеточный паттерн для всех светлых секций
══════════════════════════════════════════════════════════════════════════ */

/* ── Сброс всех индивидуальных ::before и ::after «glow-blob» эффектов ─── */
/* Они создавали разный визуальный «вес» у каждой секции */
.pain-section::before,
.pain-section::after,
.features-section::before,
.features-section::after,
.how-section::before,
.compare-section::before,
.compare-section::after,
.faq-section::before,
.faq-section::after,
.memory-section::after,
.contact-section::before,
.contact-section::after,
.result-section::before,
.result-section::after,
.who-section::before,
.who-section::after {
  content: none !important;
  display: none !important;
}

/* ── Единый сеточный паттерн через ::before для всех светлых секций ─────── */
.pain-section, .result-section, .how-section,
.features-section, .compare-section,
.memory-section, .faq-section,
.who-section {
  position: relative;
  overflow: hidden;
}

.pain-section::before,
.result-section::before,
.how-section::before,
.features-section::before,
.compare-section::before,
.memory-section::before,
.faq-section::before,
.who-section::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-image:
    linear-gradient(rgba(59,111,212,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,111,212,.042) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
}

/* demo-section использует demo-wrapper с собственным паттерном — сохраняем */
.demo-section::before { content: none !important; display: none !important; }

/* ── Чередование фонов: --surface (белый) и --bg (светло-серый) ──────────── */

/* Тип 1: --surface (#FFFFFF) */
.result-section,
.features-section,
.privacy-section,
.who-section {
  background: var(--surface) !important;
}

/* Тип 2: --bg (#F4F6FA) */
.pain-section,
.how-section,
.demo-section,
.compare-section,
.memory-section,
.faq-section {
  background: var(--bg) !important;
}

/* demo-section продолжает how-section визуально */
.demo-wrapper {
  background: linear-gradient(160deg, #EEF2FF 0%, #F0F4FF 60%, #EFF6FF 100%) !important;
}

/* ── Тёмные акцентные секции — без изменений ─────────────────────────────── */
/* .formats-banner, .custom-section, .final-cta, .footer сохраняют свои тёмные фоны */

/* ── z-index: все контейнеры внутри секций над сеточным ::before ─────────── */
.pain-section > .container,
.result-section > .container,
.how-section > .container,
.demo-section > .container,
.features-section > .container,
.compare-section > .container,
.privacy-section > .container,
.memory-section > .container,
.faq-section > .container,
.who-section > .container {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════════════════════════
   АДАПТИВНОСТЬ — дополнительные улучшения для мобильных устройств
══════════════════════════════════════════════════════════════════════════ */

/* ── Уменьшаем отступы секций на мобильных ─────────────────────────────── */
@media (max-width: 768px) {
  .pain-section,
  .result-section,
  .how-section,
  .features-section,
  .compare-section,
  .privacy-section,
  .memory-section,
  .calc-section,
  .faq-section,
  .who-section,
  .contact-section,
  .custom-section,
  .final-cta {
    padding: 56px 0 !important;
  }

  .demo-section { padding: 0 0 56px !important; }

  /* hero */
  .hero-inner { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hero-visual { order: -1 !important; width: 100% !important; max-width: 100% !important; overflow: hidden !important; }
  .hero-content { order: 1 !important; }
  .hero-title { font-size: clamp(22px, 6vw, 30px) !important; text-align: left !important; }
  .hero-lead  { font-size: 15px !important; text-align: left !important; }
  .hero-content { text-align: left !important; align-items: flex-start !important; }
  .hero-badge { font-size: 11px; justify-content: flex-start; }
  .hero-cta   { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-proof { flex-wrap: wrap; }
  .hero-proof-item { min-width: 80px; }
  .hero-proof-num  { font-size: 20px; }

  /* section headers */
  .section-title  { font-size: clamp(18px, 5vw, 24px) !important; }
  .section-sub    { font-size: 14px !important; }
  .section-header { margin-bottom: 28px; }

  /* how steps */
  .how-steps { grid-template-columns: 1fr !important; }
  .how-step  { flex-direction: row; gap: 16px; padding: 20px !important; }
  .how-step-num   { margin-bottom: 0 !important; flex-shrink: 0; }
  .how-step-content { flex: 1; }
  .how-cta-inner  { flex-direction: column; text-align: center; padding: 20px 24px !important; }
  .how-cta-text   { text-align: center; }

  /* features */
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* compare */
  .compare-table-wrap { border-radius: 8px; }

  /* pain grid */
  .pain-grid { grid-template-columns: 1fr !important; }

  /* custom */
  .custom-inner  { grid-template-columns: 1fr !important; }
  .custom-visual { grid-template-columns: 1fr 1fr !important; }

  /* privacy */
  .privacy-inner { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* memory */
  .memory-inner    { grid-template-columns: 1fr !important; gap: 32px !important; }
  .memory-visual   { order: 0; }
  .memory-why-grid { grid-template-columns: 1fr 1fr !important; }

  /* calc */
  .calc-inner { grid-template-columns: 1fr !important; }

  /* faq */
  .faq-grid { grid-template-columns: 1fr !important; }

  /* who */
  .who-grid { grid-template-columns: 1fr !important; }
  .who-benefits-grid { grid-template-columns: 1fr 1fr !important; }

  /* contact */
  .contact-inner    { grid-template-columns: 1fr !important; }
  .contact-cta-row  { flex-direction: column; }
  .contact-cta-btn  { width: 100% !important; justify-content: center !important; }

  /* demo */
  .demo-wrapper   { padding: 28px 20px !important; }
  .demo-callouts  { grid-template-columns: 1fr 1fr !important; }
  .demo-header    { flex-direction: column; }

  /* final cta */
  .final-cta-btns .btn { width: 100%; justify-content: center; }
  .final-cta h2   { font-size: clamp(20px, 5.5vw, 28px) !important; }

  /* result chips — 1 column on mobile */
  .result-chips { gap: 8px; grid-template-columns: 1fr; }

  /* formats banner */
  .formats-facts { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .features-grid  { grid-template-columns: 1fr !important; }
  .demo-callouts  { grid-template-columns: 1fr !important; }
  .memory-why-grid { grid-template-columns: 1fr !important; }
  .who-benefits-grid { grid-template-columns: 1fr !important; }

  .hero-proof { flex-wrap: wrap; justify-content: flex-start; }
  .hero-proof-item { padding: 0 10px; flex: 0 0 auto; }
  .hero-proof-item:first-child { padding-left: 0; }

  .calc-res-grid  { grid-template-columns: 1fr !important; }
  .form-row       { grid-template-columns: 1fr !important; }

  .contact-stats-row { flex-direction: column; gap: 12px; }

  .custom-visual { grid-template-columns: 1fr !important; }

  .how-cta-inner { padding: 16px !important; }

  /* Кнопки в final CTA и hero не обрезаются */
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; justify-content: flex-start; }

  /* FAQ */
  .faq-q { padding: 14px 14px; }
  .faq-a  { padding: 12px 14px 14px 46px; }

  /* footer */
  .footer-tagline { display: none; }
  .footer-minimal { flex-direction: column; gap: 4px; text-align: center; }
}

/* ── contact-stats-row  ──────────────────────────────────────────────── */
.contact-stats-row {
  display: flex; gap: 0; margin-top: 20px;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.cs-stat {
  flex: 1; text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.cs-stat:last-child { border-right: none; }
.cs-stat-val {
  font-size: 20px; font-weight: 700;
  color: var(--accent); line-height: 1;
  margin-bottom: 4px;
}
.cs-stat-lbl { font-size: 11px; color: var(--text-muted); line-height: 1.3; }

@media (max-width: 480px) {
  .contact-stats-row { flex-direction: column; gap: 16px; border-top: none; padding-top: 8px; }
  .cs-stat { border-right: none; padding: 0; text-align: left; }
}

/* ══════════════════════════════════════════════════════════════════════════
   CONVERTER SECTION — синий акцентный блок (замена formats-banner)
══════════════════════════════════════════════════════════════════════════ */
.converter-section {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.converter-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  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: 40px 40px;
  z-index: 0;
}
.converter-section > .container { position: relative; z-index: 1; }

/* Badge override for dark bg */
.converter-section .section-badge {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.25) !important;
  color: #fff !important;
}

/* Header */
.converter-header { margin-bottom: 40px; }
.converter-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700; color: #fff;
  line-height: 1.25; letter-spacing: -.02em;
  margin-bottom: 12px; margin-top: 0;
}
.converter-br { display: inline; }
.converter-sub {
  font-size: 16px; color: rgba(255,255,255,.75);
  line-height: 1.7; max-width: 580px;
}

/* ── Flow layout ── */
.converter-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

/* ── Input files column ── */
.converter-inputs-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.converter-file {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 10px 14px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-16px);
  animation: cvfSlideIn .45s ease forwards;
}
.converter-file:last-child { margin-bottom: 0; }
.cvf-1 { animation-delay: .1s; }
.cvf-2 { animation-delay: .25s; }
.cvf-3 { animation-delay: .4s; }
.cvf-4 { animation-delay: .55s; }
@keyframes cvfSlideIn {
  to { opacity: 1; transform: translateX(0); }
}
.cvf-ext {
  font-size: 9px; font-weight: 700; letter-spacing: .05em;
  padding: 3px 7px; border-radius: 5px; flex-shrink: 0;
}
.cvf-info { flex: 1; min-width: 0; }
.cvf-name {
  font-size: 12px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cvf-meta { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 1px; }
.cvf-ok { color: rgba(255,255,255,.5); flex-shrink: 0; }


/* ── Middle arrow ── */
.converter-middle {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.converter-arrow-line {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.converter-arrow-track {
  display: flex; flex-direction: column; gap: 6px;
}
.converter-arrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: dotPulse 1.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: .25; transform: translateY(0); }
  50%     { opacity: 1;   transform: translateY(-4px); }
}
.converter-arrowhead { flex-shrink: 0; margin-top: 2px; }



/* ── Result mock table ── */
.converter-output { min-width: 0; }
.converter-result-mock {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  overflow: hidden;
}
.crm-header {
  display: flex; align-items: center;
  background: rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 8px 12px;
  gap: 4px;
}
.crm-row {
  display: flex; align-items: center;
  padding: 9px 12px; gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.crm-row:last-of-type { border-bottom: none; }
.crm-row--alt { background: rgba(255,255,255,.05); }
.crm-col {
  font-size: 11px; color: rgba(255,255,255,.5);
  font-weight: 600; letter-spacing: .03em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.crm-col--name { flex: 2; min-width: 0; }
.crm-col--sup  { flex: 1; text-align: center; }
.crm-col--min  { flex: 1; text-align: center; }
.crm-name {
  display: block; font-size: 12px; font-weight: 600;
  color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.crm-bc  { display: block; font-size: 10px; color: rgba(255,255,255,.4); font-family: 'Inter', monospace; }
.crm-price { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75); text-align: center; }
.crm-price--min {
  font-weight: 700; color: #86EFAC;
  background: rgba(34,197,94,.15);
  border-radius: 4px; padding: 2px 6px;
}
.crm-footer {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 10px 12px;
  background: rgba(255,255,255,.07);
  border-top: 1px solid rgba(255,255,255,.12);
}
.crm-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
}
.crm-badge--green {
  background: rgba(34,197,94,.2); color: #86EFAC;
  border: 1px solid rgba(34,197,94,.3);
}
.crm-badge--blue {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}

/* ── Bottom facts row ── */
.converter-facts {
  display: flex; align-items: center; gap: 0;
  padding: 24px 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
}
.converter-fact {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 0 20px;
}
.converter-fact:first-child { padding-left: 0; }
.converter-fact:last-child  { padding-right: 0; }
.converter-fact-sep {
  width: 1px; align-self: stretch;
  background: rgba(255,255,255,.15); flex-shrink: 0;
}
.converter-fact-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.converter-fact-text strong {
  display: block; font-size: 13px; font-weight: 600;
  color: #fff; margin-bottom: 3px;
}
.converter-fact-text span {
  font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .converter-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Стрелка остаётся вертикальной — на мобильном таблица снизу */
  .converter-middle {
    flex-direction: column; align-items: center; justify-content: center;
    padding: 4px 0;
  }
  .converter-arrow-line {
    flex-direction: column; align-items: center; gap: 6px;
  }
  .converter-arrow-track { flex-direction: column; gap: 6px; }
  /* Точки пульсируют вниз */
  .converter-arrow-dot { animation-name: dotPulse; }
  /* Поворачиваем наконечник стрелки вниз (был вправо) */
  .converter-arrowhead { transform: rotate(90deg); }
  .converter-facts {
    flex-direction: column; gap: 16px;
    align-items: flex-start; padding: 20px;
  }
  .converter-fact { padding: 0; }
  .converter-fact-sep { width: 100%; height: 1px; align-self: auto; }
  .converter-br { display: none; }
}

@media (max-width: 640px) {
  .converter-section { padding: 48px 0; }
  .converter-header { margin-bottom: 28px; }
  .converter-title { font-size: clamp(18px, 5vw, 24px); }
  .converter-sub { font-size: 14px; }
  .converter-file { padding: 8px 10px; }
  .cvf-name { font-size: 11px; }
  .crm-col--sup { display: none; }
  .crm-col--sup:first-of-type { display: block; }
}

/* ══════════════════════════════════════════════════════════════════════════
   CALC SECTION — светлый фон секции, синяя карточка формы
══════════════════════════════════════════════════════════════════════════ */
.calc-section {
  background: var(--bg) !important;
  padding: 72px 0 !important;
}
.calc-section::before {
  content: '' !important;
  position: absolute !important;
  top: -60px !important; left: -60px !important;
  width: 440px !important; height: 440px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(59,111,212,.05) 0%, transparent 65%) !important;
  background-image: none !important;
  background-size: auto !important;
  inset: auto !important;
  pointer-events: none !important;
}

/* Левая карточка-форма — фирменный синий */
.calc-form-wrap {
  background: linear-gradient(145deg, var(--accent-deeper) 0%, var(--accent) 100%) !important;
  border: none !important;
}

/* Правая карточка результатов — белая с акцентами */
.calc-results {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: none !important;
}
.calc-cta-btn {
  background: linear-gradient(135deg, var(--accent), #5B8AE8) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(59,111,212,.3) !important;
}

/* Заголовок секции — тёмный (как обычно) */
.calc-section .section-title { color: var(--text-primary) !important; }

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION — светлый фон секции, синяя карточка формы
══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--surface) !important;
  padding: 72px 0 !important;
}

/* Левая карточка — обычный светлый стиль */
.contact-left {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  backdrop-filter: none !important;
}
.contact-left .btn-outline:hover {
  background: var(--accent-lite) !important;
  color: var(--accent) !important;
  border-color: rgba(59,111,212,.3) !important;
  transform: translateY(-1px);
}

/* Правая карточка формы — фирменный синий (уже задан выше, оставляем) */

@media (max-width: 768px) {
  .calc-section { padding: 56px 0 !important; }
  .contact-section { padding: 56px 0 !important; }
}



/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — фирменный синий, полноценный
══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, #1E3A6E 50%, #1A3460 100%) !important;
  padding: 56px 0 0 !important;
  color: #fff !important;
  position: relative; overflow: hidden;
}
.footer-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.footer-body {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
/* Левая: бренд */
.footer-logo-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 14px;
}
.footer-logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-name {
  font-size: 15px; font-weight: 600; color: #fff;
  letter-spacing: -.01em;
}
.footer-brand-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px; margin-bottom: 20px;
}
.footer-contacts {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-contact-link:hover { color: #fff; }
.footer-contact-link svg { opacity: .6; flex-shrink: 0; }
/* Средняя: навигация */
.footer-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-nav-links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav-links a {
  font-size: 14px; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .2s ease;
}
.footer-nav-links a:hover { color: #fff; }
/* Правая: CTA */

.footer-cta-text {
  font-size: 13px; color: rgba(255,255,255,.55);
  line-height: 1.65; margin-bottom: 16px;
}
.footer-btn-demo {
  display: flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  padding: 11px 18px; border-radius: 10px;
  background: #fff; color: var(--accent-deeper) !important;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-bottom: 8px;
}
.footer-btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.footer-btn-contact {
  display: flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  padding: 10px 18px; border-radius: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85) !important;
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.footer-btn-contact:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color: #fff !important;
}
/* Нижняя полоса */
.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: 18px 0;
  font-size: 12px;
  position: relative; z-index: 1;
}
.footer-copy { color: rgba(255,255,255,.4); }
.footer-tagline { color: #fff; font-style: normal; }
@media (max-width: 860px) {
  .footer-body { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer { padding-top: 44px !important; }
  .footer-body { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-tagline { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   MOB-NAV — фирменный синий бургер-меню
══════════════════════════════════════════════════════════════════════════ */
.mob-nav {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #1B3F80 0%, #2355B4 45%, #3B6FD4 100%) !important;
  z-index: 899;
  flex-direction: column; gap: 2px;
  padding: 0 0 32px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,.15) !important;
}
.mob-nav.open { display: flex; }
.mob-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 0 8px;
  padding: 20px 20px 18px;
  background: rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.mob-nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.mob-nav-logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.mob-nav-logo-name {
  font-size: 14px; font-weight: 700; color: #fff;
  letter-spacing: -.01em;
}
.mob-nav-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  padding: 12px 20px 4px;
  margin-bottom: 2px;
}
.mob-nav-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,.8) !important;
  padding: 13px 20px; border-radius: 0;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
  border-left: 3px solid transparent;
  margin: 0 0 0 0;
}
.mob-nav-link:hover, .mob-nav-link:active {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-left-color: rgba(255,255,255,.5) !important;
  padding-left: 24px;
}
.mob-nav-link svg {
  opacity: .6; flex-shrink: 0;
  transition: opacity .15s ease;
}
.mob-nav-link:hover svg { opacity: 1; }
.mob-nav-sep {
  height: 1px; background: rgba(255,255,255,.1) !important;
  margin: 12px 20px;
}
.mob-nav-action {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 14px 18px; border-radius: 12px;
  text-decoration: none; margin: 4px 20px 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.mob-nav-action--primary {
  background: #fff;
  color: var(--accent-deeper) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.mob-nav-action--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,.32);
}
.mob-nav-action--outline {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9) !important;
}
.mob-nav-action--outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  color: #fff !important;
}
/* Бургер-иконка — белая поверх синего навбара */
.nav-burger span,
.nav.scrolled .nav-burger span { background: var(--text-primary); }

/* ══════════════════════════════════════════════════
   NAV BUTTONS — фирменный стиль
══════════════════════════════════════════════════ */
.nav-right .btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: -.01em;
  transition: all var(--tr);
}
.nav-right .btn-outline:hover {
  background: var(--accent-bg);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59,111,212,.18);
}
.nav-right .btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent-dark);
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 0 2px 8px rgba(59,111,212,.22);
}
.nav-right .btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-deeper);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,111,212,.35);
}

/* ── Телефон в навбаре ── */
.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--accent);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--accent);
  background: transparent;
  transition: all var(--tr);
  white-space: nowrap;
}
.nav-phone-link:hover {
  background: var(--accent-bg);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59,111,212,.18);
}
@media (max-width: 768px) {
  .nav-phone-link { display: none; }
}

/* ══════════════════════════════════════════════════
   DEMO SECTION — синий фирменный фон
══════════════════════════════════════════════════ */
.demo-section {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  padding: 72px 0 72px !important;
  position: relative;
}
.demo-section::before {
  content: '' !important;
  display: block !important;
  position: absolute; inset: 0; pointer-events: none;
  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: 40px 40px;
  z-index: 0;
}
.demo-section > .container { position: relative; z-index: 1; }
.demo-wrapper {
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  backdrop-filter: blur(2px);
}
.demo-wrapper::before {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) !important;
}
.demo-title { color: #fff !important; }
.demo-sub { color: rgba(255,255,255,.8) !important; }
.demo-callout {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.2) !important;
}
.demo-callout:hover {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.35) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.2) !important;
}
.demo-callout-title { color: #fff !important; }
.demo-callout-desc { color: rgba(255,255,255,.72) !important; }

/* ══════════════════════════════════════════════════
   WHO SECTION — «Сводите прайсы в Excel? Вы попали по адресу»
   синий фирменный фон
══════════════════════════════════════════════════ */
.who-section {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  position: relative;
}
.who-section::before {
  content: '' !important;
  display: block !important;
  position: absolute !important; inset: 0 !important; pointer-events: none !important; z-index: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
}
.who-section > .container { position: relative; z-index: 1; }
.who-section .section-title { color: #fff !important; }
.who-section .section-title .hl { color: rgba(255,255,255,.88) !important; }
.who-section .section-sub { color: rgba(255,255,255,.78) !important; }
.who-card {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.who-card:hover {
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.32) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,.22) !important;
}
.who-card-role { color: rgba(255,255,255,.6) !important; }
.who-card-title { color: #fff !important; }
.who-card-desc { color: rgba(255,255,255,.78) !important; }
.who-tag {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.85) !important;
}
.who-tag svg { color: rgba(255,255,255,.7) !important; }
.who-benefits-label { color: rgba(255,255,255,.45) !important; }
.who-benefit-item {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.18) !important;
}
.who-benefit-item:hover {
  border-color: rgba(255,255,255,.32) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.16) !important;
}
.wbi-icon { background: rgba(255,255,255,.15) !important; color: #fff !important; }
.wbi-text { color: rgba(255,255,255,.8) !important; }

/* ══════════════════════════════════════════════════
   PRIVACY SECTION — «Коммерческая тайна — мы её не видим»
   синий фирменный фон
══════════════════════════════════════════════════ */
.privacy-section {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
}
.privacy-section::before {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
}
.privacy-section .section-title { color: #fff !important; }
.privacy-section .section-title .hl { color: rgba(255,255,255,.88) !important; }
.privacy-diagram {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.2) !important;
}
.privacy-diagram .mem-section-label { color: rgba(255,255,255,.5) !important; }
.priv-row {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.15) !important;
}
.priv-row:hover { border-color: rgba(255,255,255,.4) !important; }
.priv-row-title { color: #fff !important; }
.priv-row-desc { color: rgba(255,255,255,.6) !important; }
.priv-arrow { color: rgba(255,255,255,.4) !important; }
.ps-local {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.25) !important;
}
.ps-blocked {
  background: rgba(239,68,68,.25) !important;
  color: #FCA5A5 !important;
  border: 1px solid rgba(239,68,68,.35) !important;
}
.priv-row-title[style*="color:var(--red)"] { color: #FCA5A5 !important; }
.mem-file-sep { background: rgba(255,255,255,.15) !important; }
.privacy-point-title { color: #fff !important; }
.privacy-point-desc { color: rgba(255,255,255,.75) !important; }
.pp-blue  { background: rgba(255,255,255,.15) !important; color: #fff !important; }
.pp-green { background: rgba(255,255,255,.15) !important; color: #fff !important; }
/* Override priv-row inline icon backgrounds on privacy section */
.privacy-section .priv-row-icon { background: rgba(255,255,255,.15) !important; color: #fff !important; }

/* ══════════════════════════════════════════════════
   FOOTER — минимальный, фирменный голубой
══════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  padding: 20px 0 !important;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  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;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }
.footer-minimal {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.footer-copy  { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-tagline { font-size: 13px; color: #fff; font-style: normal; }
@media (max-width: 560px) {
  .footer-minimal { flex-direction: column; gap: 6px; text-align: center; }
  .footer-tagline { display: block !important; }
}

/* ══════════════════════════════════════════════════
   CONTACT SECTION — весь блок в фирменном голубом
══════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  padding: 80px 0 !important;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '' !important;
  display: block !important;
  position: absolute !important; inset: 0 !important; pointer-events: none !important; z-index: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
}
/* скрываем анимационные блобы — не нужны на синем */
.contact-section .contact-bg-anim { display: none !important; }

/* Левая часть — текст и кнопки на синем */
.contact-left {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  backdrop-filter: none !important;
}
.contact-left .btn-primary:hover {
  background: #fff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.28) !important;
  transform: translateY(-1px);
}

/* Правая карточка формы — чуть темнее на синем */
.contact-form-wrap {
  background: rgba(10,20,50,.45) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
}

/* «Оставьте контакт» — надпись */
.contact-form-eyebrow {
  color: rgba(255,255,255,.5) !important;
  font-size: 11px !important; letter-spacing: .1em !important;
}
/* «Узнайте цену и сроки за 5 минут» — заголовок */
.form-title {
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.25 !important;
}

/* Поле ввода */
.form-input {
  background: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,.4) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md) !important;
}

/* Кнопка отправки */
.form-btn {
  background: #fff !important;
  color: var(--accent-deeper) !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.2) !important;
  transition: all var(--tr) !important;
}

/* Стата под формой */
.contact-stats-row {
  border-color: rgba(255,255,255,.12) !important;
}

/* Форма — сообщение об успехе */
.form-ok-icon {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════
   1. «Никаких серверов» — белый текст + белая пилюля
══════════════════════════════════════════════════ */
.priv-row-title[style*="color:var(--red)"] {
  color: #fff !important;
}
/* иконка строки — белый фон вместо красного */
.privacy-section .priv-row:last-child .priv-row-icon {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
}
/* пилюля Заблокировано — белый фон, тёмный текст */
.ps-blocked {
  background: #fff !important;
  color: var(--accent-deeper) !important;
  border: 1px solid rgba(255,255,255,.6) !important;
}

/* ══════════════════════════════════════════════════
   2. Calc-section — фирменный голубой фон
══════════════════════════════════════════════════ */
.calc-section {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  position: relative;
}
.calc-section::before {
  content: '' !important;
  display: block !important;
  position: absolute !important; inset: 0 !important;
  pointer-events: none !important; z-index: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  border-radius: 0 !important; width: auto !important; height: auto !important;
  top: 0 !important; left: 0 !important;
}
.calc-section > .container { position: relative; z-index: 1; }
/* Заголовок — белый */
.calc-section .section-title { color: #fff !important; }
.calc-section .section-title .hl { color: rgba(255,255,255,.88) !important; }
.calc-section .section-sub { color: rgba(255,255,255,.75) !important; }
/* Левая карточка формы — стекло на синем */
.calc-form-wrap {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
}
.calc-form-wrap::before {
  top: 0 !important; right: 0 !important; left: 0 !important; bottom: 0 !important;
  inset: 0 !important;
  width: auto !important; height: auto !important;
  background: none !important;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
  border-radius: 0 !important;
}
.calc-glow-1, .calc-glow-2 { display: none !important; }
.calc-form-title { color: #fff !important; }
.calc-field label { color: rgba(255,255,255,.75) !important; }
.calc-val { color: #fff !important; }
.calc-sep { background: rgba(255,255,255,.12) !important; }
.calc-range { accent-color: #fff; }
/* Правая карточка результатов — белая на синем */
.calc-results {
  background: #fff !important;
  border: none !important;
}
.calc-results-header { border-bottom: 1px solid var(--border) !important; }
.calc-results-eyebrow { color: var(--text-muted) !important; }
.calc-results-title { color: var(--text-primary) !important; }
.calc-res-label { color: var(--text-muted) !important; }
.calc-res-unit  { color: var(--text-muted) !important; }
.calc-res-green .calc-res-value { color: var(--accent) !important; }
.calc-res-blue  .calc-res-value { color: var(--accent) !important; }
.calc-res-green { background: linear-gradient(135deg,#EFF6FF,#DBEAFE) !important; border: 1px solid rgba(59,111,212,.15) !important; }
.calc-res-blue  { background: linear-gradient(135deg,#F0F9FF,#E0F2FE) !important; border: 1px solid rgba(59,111,212,.12) !important; }

/* ══════════════════════════════════════════════════
   3. Contact-section — светлый фон, карточки — синие
══════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg) !important;
  padding: 80px 0 !important;
  position: relative;
}
.contact-section::before { display: none !important; content: none !important; }
.contact-section .contact-bg-anim { display: none !important; }
.contact-section .container { position: relative; z-index: 1; }

/* Левая карточка — фирменный синий */
.contact-left {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  border: none !important;
  position: relative; overflow: hidden;
  justify-content: space-between !important;
  padding: 32px !important;
}
.contact-left::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 0;
}
.contact-left > * { position: relative; z-index: 1; }
.contact-info-title { color: #fff !important; }
.contact-info-sub   { color: rgba(255,255,255,.78) !important; }
.contact-left .btn-primary {
  background: #fff !important;
  color: var(--accent-deeper) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.18) !important;
}
.contact-left .btn-primary:hover {
  background: #f0f4ff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.28) !important;
  transform: translateY(-1px);
}
.contact-left .btn-outline {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.3) !important;
}

/* Правая карточка (форма) — тоже фирменный синий */
.contact-form-wrap {
  background: linear-gradient(135deg, var(--accent-deeper) 0%, var(--accent) 60%, #4F87E8 100%) !important;
  border: none !important;
  position: relative; overflow: hidden;
  padding: 32px !important;
}
.contact-form-wrap::before {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
}
.form-glow-1, .form-glow-2 { display: none !important; }
.contact-form-eyebrow { color: rgba(255,255,255,.55) !important; }
.form-title { color: #fff !important; }
.form-title-sub { color: rgba(255,255,255,.65) !important; }
.form-input {
  background: rgba(255,255,255,.12) !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
}
.form-input::placeholder { color: rgba(255,255,255,.4) !important; }
.form-input:focus {
  border-color: rgba(255,255,255,.55) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,.1) !important;
  background: rgba(255,255,255,.16) !important;
}
.form-btn {
  background: #fff !important; color: var(--accent-deeper) !important;
  border: none !important; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.2) !important;
}
.contact-stats-row { border-color: rgba(255,255,255,.14) !important; }
.cs-stat { border-color: rgba(255,255,255,.14) !important; }
.cs-stat-val { color: #fff !important; }
.cs-stat-lbl { color: rgba(255,255,255,.48) !important; }
.form-ok-icon { background: rgba(255,255,255,.18) !important; color: #fff !important; }
.form-ok-title { color: #fff !important; }
.form-ok-sub   { color: rgba(255,255,255,.65) !important; }

/* ══════════════════════════════════════════════════
   4. Converter — убрать анимацию на десктопе, оставить стрелку
══════════════════════════════════════════════════ */
/* Убираем анимацию влёта у файлов */
@media (min-width: 769px) {
  .converter-file {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cvf-1, .cvf-2, .cvf-3, .cvf-4 {
    animation: none !important;
    opacity: 1 !important;
  }
  /* Убираем пульсирующие точки, оставляем только стрелку */
  .converter-arrow-track { display: none !important; }
  .converter-arrow-dot  { display: none !important; }
  /* Стрелка остаётся, делаем её чуть крупнее */
  .converter-arrowhead { margin-top: 0 !important; }
  .converter-arrow-line {
    align-items: center !important;
    justify-content: center !important;
  }
}
/* ══════════════════════════════════════════════════
   LEFT-ALIGN helper
══════════════════════════════════════════════════ */
.section-left { text-align: left; }
.section-left .section-sub { max-width: 640px; margin: 0; }

/* ══════════════════════════════════════════════════
   ВСЕ ИКОНКИ НА БЕЛОМ ФОНЕ → СИНИЕ
══════════════════════════════════════════════════ */
.fi-green  { background: var(--accent-bg) !important; color: var(--accent) !important; }
.fi-amber  { background: var(--accent-bg) !important; color: var(--accent) !important; }
.fi-red    { background: var(--accent-bg) !important; color: var(--accent) !important; }

.pain-card-pain-icon {
  background: var(--accent-bg) !important;
  color: var(--accent) !important;
}

.faq-q-icon {
  background: var(--accent-bg) !important;
  color: var(--accent) !important;
}

/* who-card: зелёный аватар → синий */
.who-card-avatar[style*="#F0FDF4"] { background: #EEF2FF !important; }
.who-card-avatar[style*="#F0FDF4"] svg { stroke: var(--accent) !important; }

/* ══════════════════════════════════════════════════
   КАЛЬКУЛЯТОР — убрать клеточки
══════════════════════════════════════════════════ */
.calc-section::before {
  background-image: none !important;
  background: none !important;
}
.calc-form-wrap::before {
  display: none !important;
}

/* ══════════════════════════════════════════════════
   КНОПКА «Отправить» — синяя, иконка и текст белые
══════════════════════════════════════════════════ */
.form-btn {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(59,111,212,.35) !important;
}
.form-btn svg { stroke: #fff !important; color: #fff !important; }
.form-btn:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(59,111,212,.5) !important;
  transform: translateY(-1px) !important;
}
.form-btn:active { transform: translateY(0) !important; }
/* ══════════════════════════════════════════════════
   PRIVACY — все иконки в блоке синие
══════════════════════════════════════════════════ */
/* Иконки pp-green, pp-amber → синие */
.pp-green { background: var(--accent-bg) !important; color: var(--accent) !important; }

/* Иконки priv-row со стилями inline */
.privacy-section .priv-row-icon[style*="green"],
.privacy-section .priv-row-icon[style*="green-bg"] {
  background: var(--accent-bg) !important;
  color: var(--accent) !important;
}
/* Зелёная иконка щита (Результат) */
.privacy-section .priv-row-icon[style*="var(--green"] {
  background: var(--accent-bg) !important;
  color: var(--accent) !important;
}
/* Все иконки priv-row кроме красной "Никаких серверов" */
.privacy-section .priv-row:not(:last-child) .priv-row-icon {
  background: var(--accent-bg) !important;
  color: var(--accent) !important;
}

/* ══════════════════════════════════════════════════
   КАЛЬКУЛЯТОР — стиль заголовка «Калькулятор экономии»
══════════════════════════════════════════════════ */
.calc-form-title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.55) !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(255,255,255,.1) !important;
}

/* ══════════════════════════════════════════════════
   КНОПКИ — при наведении только анимация, без смены цвета
══════════════════════════════════════════════════ */
/* Убираем смену цвета/фона у всех btn на hover */
.btn-primary:hover {
  background: var(--accent) !important;
  border-color: var(--accent-dark) !important;
  box-shadow: 0 4px 12px rgba(59,111,212,.25) !important;
  transform: translateY(-1px) !important;
}
.btn-white:hover {
  background: #fff !important;
  color: var(--accent) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.12) !important;
  transform: translateY(-1px) !important;
}
.calc-cta-btn:hover {
  background: linear-gradient(135deg, var(--accent), #5B8AE8) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(59,111,212,.3) !important;
}
/* nav buttons */
.nav-right .btn-outline:hover {
  background: transparent !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  transform: translateY(-1px) !important;
}
.nav-right .btn-primary:hover {
  background: var(--accent) !important;
  border-color: var(--accent-dark) !important;
  transform: translateY(-1px) !important;
}
/* contact buttons */
.contact-left .btn-primary:hover {
  background: #fff !important;
  color: var(--accent-deeper) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.18) !important;
  transform: translateY(-1px) !important;
}
/* form submit button */
.form-btn:hover {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(59,111,212,.35) !important;
  transform: translateY(-1px) !important;
}
/* mob nav buttons */
.mob-nav-action--primary:hover {
  background: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.32) !important;
}
.mob-nav-action--outline:hover {
  background: rgba(255,255,255,.2) !important;
  transform: translateY(-1px) !important;
}
/* ══════════════════════════════════════════════════
   NAV — компактнее ссылки
══════════════════════════════════════════════════ */
.nav-links a {
  font-size: 13px !important;
  padding: 5px 9px !important;
}

/* ══════════════════════════════════════════════════
   КНОПКИ НА БЕЛОМ ФОНЕ → СИНИЕ (filled)
   Затрагивает: nav «Обсудить задачу», hero «Как это работает»,
   contact «Телефон» и «Попробовать», calc-cta
══════════════════════════════════════════════════ */
.btn-outline {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent-dark) !important;
}
.btn-outline:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-deeper) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

/* Исключение: outline-кнопки на синем фоне (contact-left) — оставляем белый стиль */
.contact-left .btn-outline {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.28) !important;
}
.contact-left .btn-outline:hover {
  background: rgba(255,255,255,.22) !important;
  border-color: rgba(255,255,255,.5) !important;
  transform: translateY(-1px) !important;
}

/* btn-ghost (how-section CTA) → синяя */
.btn-ghost {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent-dark) !important;
}
.btn-ghost:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

/* ══════════════════════════════════════════════════
   Галочки в таблице «Почему Excel уступает» → синие
══════════════════════════════════════════════════ */
.cmp-yes { color: var(--accent) !important; }

/* ══════════════════════════════════════════════════
   Иконки settings_2025 (memory-section) → все синие
══════════════════════════════════════════════════ */
.mi-green { background: var(--accent-bg) !important; color: var(--accent) !important; }
.mi-amber { background: var(--accent-bg) !important; color: var(--accent) !important; }

/* ══════════════════════════════════════════════════
   Иконки «Без регистрации» (privacy-section pp-*) → синие
══════════════════════════════════════════════════ */
.pp-green { background: var(--accent-bg) !important; color: var(--accent) !important; }
.pp-amber { background: var(--accent-bg) !important; color: var(--accent) !important; }
/* priv-row иконки (кроме красной «Никаких серверов») */
.privacy-section .priv-row:not(:last-child) .priv-row-icon {
  background: var(--accent-bg) !important;
  color: var(--accent) !important;
}

/* ══════════════════════════════════════════════
   FLOATING ICONS — hero browser screen overlay
   Содержатся строго внутри .browser-screen (overflow:hidden)
══════════════════════════════════════════════ */

/* Контейнер: абсолютный, поверх фото */
.fi-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  perspective: 600px;
  overflow: hidden;
}

/* Базовый стиль каждого элемента */
.fi {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  pointer-events: none;
  user-select: none;
  opacity: 0; /* скрыты до GSAP */
  white-space: nowrap;
}

/* ── File chips ── */
.fi-file {
  padding: 5px 9px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fi-xls {
  background: rgba(16,124,65,0.82);
  border-color: rgba(22,170,88,0.55);
  color: #fff;
  box-shadow: 0 0 12px rgba(16,124,65,0.45), 0 0 28px rgba(16,124,65,0.18);
}
.fi-xlsx {
  background: rgba(16,124,65,0.75);
  border-color: rgba(22,170,88,0.45);
  color: #fff;
  box-shadow: 0 0 12px rgba(16,124,65,0.38), 0 0 24px rgba(16,124,65,0.14);
}
.fi-csv {
  background: rgba(27,110,243,0.78);
  border-color: rgba(59,130,246,0.5);
  color: #fff;
  box-shadow: 0 0 12px rgba(27,110,243,0.42), 0 0 24px rgba(27,110,243,0.16);
}

/* ══ CALC LOSS FRAMING BLOCK ══ */
.calc-loss-block {
  margin: 16px 0 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(220,38,38,0.06) 0%, rgba(220,38,38,0.03) 100%);
  border: 1px solid rgba(220,38,38,0.18);
  border-radius: 12px;
  text-align: center;
}
.calc-loss-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 5px;
}
.calc-loss-sum {
  color: #DC2626;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.calc-loss-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.calc-loss-sub span {
  color: var(--accent);
  font-weight: 600;
}

/* ══ GREEN EXCEL ICON ══ */
.fi-excel-green {
  background: linear-gradient(135deg, #1a7a45 0%, #107c41 100%);
  border-color: rgba(34,197,94,0.55);
  color: #fff;
  box-shadow: 0 0 14px rgba(16,124,65,0.55), 0 0 32px rgba(16,124,65,0.22);
  flex-direction: column;
  gap: 1px;
  padding: 6px 10px;
}
.fi-excel-x {
  font-size: 8px;
  opacity: 0.7;
  line-height: 1;
}

/* ══ HERO EXCEL GREEN ══ */
.accent-excel {
  color: #107c41;
  font-weight: 900;
}

/* ══ CALC HEADER (новый красивый блок) ══ */
.calc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.calc-header-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.calc-header-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.calc-header-sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}

/* ══ CALC FIELD — новая структура ══ */
.calc-field-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.calc-field-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.calc-field-label-row label {
  flex: 1;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.8) !important;
  margin-bottom: 0 !important;
}

/* ══ RANGE WRAP с min/max подписями ══ */
.calc-range-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-range-min,
.calc-range-max {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  min-width: 28px;
}
.calc-range-max { text-align: right; }

/* ══ CALC COMPARISON — было/стало ══ */
.calc-comparison {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.calc-cmp-item {
  flex: 1;
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
}
.calc-cmp-bad {
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.25);
}
.calc-cmp-good {
  background: rgba(16,124,65,.2);
  border: 1px solid rgba(34,197,94,.3);
}
.calc-cmp-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.calc-cmp-bad .calc-cmp-label  { color: rgba(255,130,130,.7); }
.calc-cmp-good .calc-cmp-label { color: rgba(100,220,140,.7); }
.calc-cmp-val {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.calc-cmp-arrow {
  font-size: 18px;
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ══ EXCEL GREEN — глобальный класс для всех заголовков ══ */
.excel-green {
  color: #107c41;
  font-weight: inherit;
}

/* ══ CALC RESULTS HEADER — стиль как у calc-header ══ */
.calc-results-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid var(--border) !important;
}
.calc-res-header-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid rgba(59,111,212,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.calc-res-header-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.calc-results-eyebrow {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  margin-bottom: 0 !important;
}
.calc-results-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
}

/* ══ CALC COMPARISON — белая обводка / белый текст / белая стрелка ══ */
.calc-comparison {
  border-top: 1px solid rgba(255,255,255,.2) !important;
}
.calc-cmp-bad {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
}
.calc-cmp-good {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
}
.calc-cmp-bad .calc-cmp-label,
.calc-cmp-good .calc-cmp-label {
  color: rgba(255,255,255,.55) !important;
}
.calc-cmp-val {
  color: #fff !important;
}
.calc-cmp-arrow {
  color: rgba(255,255,255,.55) !important;
  font-size: 20px !important;
}

/* ══════════════════════════════════════════════
   СИСТЕМА ЗАГОЛОВКОВ — 3 РАЗМЕРА
   XL  = hero-title (уже задан)
   LG  = секции на всю ширину
   MD  = секции с 2-колоночным контентом
══════════════════════════════════════════════ */

/* LG — базовый section-title (полная ширина) */
.section-title {
  font-size: clamp(24px, 2.8vw, 38px) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -.025em !important;
}

/* MD — секции с 2-col контентом */
.who-section     .section-title,
.privacy-section .section-title,
.memory-section  .section-title {
  font-size: clamp(18px, 2vw, 26px) !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
}

/* Выровнять demo-title и converter-title под LG */
.demo-title,
.converter-title {
  font-size: clamp(22px, 2.6vw, 34px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}

/* contact-info-title тоже MD */
.contact-info-title {
  font-size: clamp(18px, 2vw, 26px) !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
}

/* final-cta — LG */
.final-cta h2 {
  font-size: clamp(24px, 2.8vw, 38px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}

/* ══ EXCEL WHITE — на синих/тёмных фонах ══ */
.who-section     .excel-green,
.privacy-section .excel-green,
.calc-section    .excel-green,
.contact-section .excel-green,
.final-cta       .excel-green {
  color: #fff !important;
  text-shadow: 0 0 20px rgba(255,255,255,.25);
}

/* ══ RUBLE ICON — крупный символ ══ */
.calc-field-icon-rub {
  font-size: 18px !important;
  font-weight: 900 !important;
  color: rgba(255,255,255,.8) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}
