/* ============================================================
 * blocks.css — стили блоков-шаблонов (Этап 1 де-тильдизации)
 * Подключается в head.php после site.css
 *
 * Префиксы:
 *   .h-*   — home-hero (главная)
 *   .ph-*  — page-hero (внутренние страницы)
 *   .ni-*  — neon-info (info-блок с FAQ-сеткой)
 *   .seo-section — обёртка SEO-текста после hero
 * ============================================================ */

/* === ОБЩЕЕ === */

/* Шрифты Google Fonts подключаются через head.php (один раз) */

/* Общие keyframes используются в нескольких блоках */
@keyframes blocks_dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.5; transform:scale(1.5); }
}
@keyframes blocks_neonFlick {
  0%,95%,100% { opacity:1; }
  96% { opacity:.7; } 97% { opacity:1; }
  98% { opacity:.5; } 99% { opacity:1; }
}

/* === SEO-SECTION (общая обёртка контента после hero) === */
.seo-section {
  padding: 60px 0;
  color: #fff;
  font-family: var(--t-text-font);
  position: relative;
  z-index: 1;
}
.seo-section--dim { background: rgba(255,255,255,0.02); }
.seo-section .t-container,
.seo-section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.seo-section h2 {
  font-family: var(--t-heading-font);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: #fff;
}
.seo-section h3 {
  font-family: var(--t-heading-font);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin: 28px 0 12px;
  color: #fff;
}
.seo-section p,
.seo-section li {
  font-family: var(--t-text-font);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: #d4d4dc;
}
.seo-section p { margin: 0 0 16px; }
.seo-section ul { margin: 0 0 16px; padding-left: 22px; }
.seo-section li { margin-bottom: 8px; }
.seo-section strong { color: #fff; font-weight: 600; }
.seo-section a { color: #00f5ff; text-decoration: underline; text-decoration-color: rgba(0,245,255,0.4); }
.seo-section a:hover { text-decoration-color: #00f5ff; }

/* ============================================================
 * HOME-HERO  (главная — без своего background, фон у страницы глобальный)
 * ============================================================ */
.hero-wrap {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
}

.hero-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 0 60px; }
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,45,120,0.16) 0%, transparent 65%);
  top: -180px; right: -180px;
  animation: orb1 8s ease-in-out infinite;
  filter: blur(40px);
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,245,255,0.10) 0%, transparent 65%);
  bottom: -60px; left: 35%;
  animation: orb2 11s ease-in-out infinite;
  filter: blur(40px);
}
@keyframes orb1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes orb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-50px)} }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 6% 60px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,245,255,0.07);
  border: 1px solid rgba(0,245,255,0.25);
  padding: 7px 18px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00f5ff;
  width: fit-content;
}
.h-badge-dot {
  width: 6px; height: 6px;
  background: #00f5ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00f5ff;
  animation: dotBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.h-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.h-pink {
  color: #ff2d78;
  text-shadow: 0 0 10px #ff2d78, 0 0 30px #ff2d78, 0 0 70px rgba(255,45,120,0.5);
  animation: flicker1 4s ease-in-out infinite;
  display: block;
}
.h-cyan {
  color: #00f5ff;
  text-shadow: 0 0 10px #00f5ff, 0 0 30px #00f5ff, 0 0 70px rgba(0,245,255,0.4);
  animation: flicker2 6s ease-in-out infinite 2s;
  display: block;
}
@keyframes flicker1 {
  0%,95%,100%{opacity:1} 96%{opacity:0.8} 97%{opacity:1} 98%{opacity:0.65} 99%{opacity:1}
}
@keyframes flicker2 {
  0%,90%,100%{opacity:1} 91%{opacity:0.75} 93%{opacity:1}
}

.h-sub {
  font-size: 16px;
  font-weight: 300;
  color: #6060a0;
  line-height: 1.75;
  max-width: 500px;
  margin: 28px 0 44px;
}
.h-sub strong { color: #e8e8f0; font-weight: 500; }

.h-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.h-btn-primary {
  background: #ff2d78;
  color: #fff;
  border: none;
  padding: 18px 38px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(255,45,120,0.4), 0 0 70px rgba(255,45,120,0.15);
  text-decoration: none;
  display: inline-block;
}
.h-btn-primary:hover {
  box-shadow: 0 0 55px rgba(255,45,120,0.8), 0 0 110px rgba(255,45,120,0.3);
  transform: translateY(-2px);
}
.h-btn-ghost {
  background: transparent;
  color: #e8e8f0;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 38px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.h-btn-ghost:hover { border-color: #00f5ff; color: #00f5ff; }

.h-floats {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.h-float {
  background: rgba(0,245,255,0.07);
  border: 1px solid rgba(0,245,255,0.22);
  padding: 9px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00f5ff;
  white-space: nowrap;
}
.h-float:nth-child(1) { animation: floatUD 4s ease-in-out infinite 0s; }
.h-float:nth-child(2) { animation: floatUD 4s ease-in-out infinite 1.4s; }
.h-float:nth-child(3) { animation: floatUD 4s ease-in-out infinite 0.7s; }
@keyframes floatUD { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.h-stats {
  position: absolute;
  right: 6%;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
  z-index: 2;
}
.h-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
}
.h-stat-num.pink   { color: #ff2d78; text-shadow: 0 0 20px rgba(255,45,120,0.6); }
.h-stat-num.cyan   { color: #00f5ff; text-shadow: 0 0 20px rgba(0,245,255,0.6); }
.h-stat-num.yellow { color: #ffe600; text-shadow: 0 0 20px rgba(255,230,0,0.6); }
.h-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5050a0;
  margin-top: 3px;
}

.h-scroll {
  position: absolute;
  bottom: 28px;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4040a0;
  z-index: 2;
}
.h-scroll-line {
  width: 52px; height: 1px;
  background: #4040a0;
  overflow: hidden;
  position: relative;
}
.h-scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: #00f5ff;
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

@media (max-width: 768px) {
  .h-floats { display: none; }
  .h-stats { position: static; flex-direction: row; flex-wrap: wrap; gap: 20px; margin-top: 40px; text-align: left; }
  .h-scroll { display: none; }
  .h-title { font-size: clamp(38px, 10vw, 64px); }
  .hero-wrap { min-height: 0; }
  .hero-inner { min-height: 0; padding: 60px 6% 40px; }
}

/* ============================================================
 * PAGE-HERO  (внутренние страницы)
 * ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  font-family: 'Manrope', sans-serif;
}
.page-hero .ph-grid,
.page-hero .ph-perspective,
.page-hero .ph-orb,
.page-hero .ph-scanlines,
.page-hero .ph-line-left,
.page-hero .ph-corner { display: none; }

.ph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: phGrid 20s linear infinite;
}
@keyframes phGrid {
  0%   { background-position: 0 0; }
  100% { background-position: 0 60px; }
}

.ph-perspective {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background-image:
    linear-gradient(rgba(255,45,120,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,120,0.06) 1px, transparent 1px);
  background-size: 80px 60px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.ph-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.ph-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,45,120,0.2) 0%, transparent 65%);
  top: -150px; right: -100px;
  animation: phOrb1 8s ease-in-out infinite;
}
.ph-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,245,255,0.12) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  animation: phOrb2 11s ease-in-out infinite 2s;
}
@keyframes phOrb1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes phOrb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }

.ph-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.ph-line-left {
  position: absolute;
  left: 6%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,45,120,0.4) 30%,
    rgba(255,45,120,0.4) 70%,
    transparent 100%
  );
}
.ph-line-left::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: #ff2d78;
  border-radius: 50%;
  left: -2px;
  top: 50%;
  box-shadow: 0 0 10px #ff2d78, 0 0 20px #ff2d78;
  animation: blocks_dotPulse 2s ease-in-out infinite;
}

.ph-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
}

.ph-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ff2d78;
  margin-bottom: 28px;
  border: 1px solid rgba(255,45,120,0.25);
  padding: 6px 16px;
  background: rgba(255,45,120,0.05);
}
.ph-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: #ff2d78;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff2d78;
  animation: blocks_dotPulse 1.5s ease-in-out infinite;
}

.ph-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ph-title em {
  font-style: normal;
  color: #ff2d78;
  text-shadow:
    0 0 4px #fff, 0 0 8px #ff2d78,
    0 0 20px #ff2d78, 0 0 40px rgba(255,45,120,0.5);
  animation: blocks_neonFlick 4s ease-in-out infinite;
}
.ph-title .cyan {
  color: #00f5ff;
  text-shadow:
    0 0 4px #fff, 0 0 8px #00f5ff,
    0 0 20px #00f5ff, 0 0 40px rgba(0,245,255,0.5);
}

.ph-sub {
  font-size: 15px;
  font-weight: 300;
  color: #5050a0;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

.ph-breadcrumb {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3030a0;
  z-index: 2;
  white-space: nowrap;
}
.ph-breadcrumb a {
  color: #3030a0;
  text-decoration: none;
  transition: color 0.3s;
}
.ph-breadcrumb a:hover { color: #00f5ff; }
.ph-breadcrumb-sep { color: #ff2d78; font-size: 8px; }
.ph-breadcrumb-cur { color: #6060a0; }

.ph-corner {
  position: absolute;
  width: 40px; height: 40px;
  pointer-events: none;
  z-index: 2;
}
.ph-corner::before, .ph-corner::after {
  content: '';
  position: absolute;
  background: rgba(255,45,120,0.4);
}
.ph-corner::before { height: 1px; width: 100%; top: 0; }
.ph-corner::after  { width: 1px; height: 100%; top: 0; }
.ph-corner.tl { top: 24px; left: 6%; }
.ph-corner.tr { top: 24px; right: 6%; transform: scaleX(-1); }
.ph-corner.bl { bottom: 24px; left: 6%; transform: scaleY(-1); }
.ph-corner.br { bottom: 24px; right: 6%; transform: scale(-1); }

.ph-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ph-btn-main {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #ff2d78;
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 25px rgba(255,45,120,0.45);
  transition: all 0.3s;
}
.ph-btn-main:hover {
  box-shadow: 0 0 50px rgba(255,45,120,0.8);
  transform: translateY(-2px);
}
.ph-btn-ghost {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e8f0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 15px 32px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.ph-btn-ghost:hover {
  border-color: #00f5ff;
  color: #00f5ff;
}

@media (max-width: 768px) {
  .page-hero { min-height: 420px; align-items: center; }
  .ph-content { padding: 70px 24px 60px; }
  .ph-title { font-size: 32px; letter-spacing: -0.01em; }
  .ph-sub { font-size: 13px; margin-bottom: 28px; }
  .ph-tag { font-size: 9px; padding: 5px 12px; margin-bottom: 20px; }
  .ph-btns { flex-direction: column; align-items: center; }
  .ph-btn-main, .ph-btn-ghost {
    width: 100%; max-width: 280px; text-align: center; padding: 14px 20px;
  }
  .ph-line-left { display: none; }
  .ph-corner { width: 24px; height: 24px; }
  .ph-corner.tl { top: 16px; left: 16px; }
  .ph-corner.tr { top: 16px; right: 16px; }
  .ph-corner.bl { bottom: 50px; left: 16px; }
  .ph-corner.br { bottom: 50px; right: 16px; }
  .ph-breadcrumb {
    font-size: 9px; gap: 6px; bottom: 16px;
    width: 90%; justify-content: center; flex-wrap: wrap;
  }
  .ph-orb-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
  .ph-orb-2 { width: 250px; height: 250px; bottom: -60px; left: -60px; }
}

/* ============================================================
 * NEON-INFO  (info-блок с FAQ-сеткой 3×3)
 * ============================================================ */
.neon-info {
  padding: 80px 6%;
  font-family: 'Manrope', sans-serif;
  background: #07070d;
  color: #fff;
}

.ni-header { margin-bottom: 64px; }
.ni-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff2d78;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ni-label::after {
  content: '';
  width: 36px; height: 1px;
  background: #ff2d78;
  box-shadow: 0 0 6px #ff2d78;
}
.ni-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ni-h2 em {
  font-style: normal;
  color: #ff2d78;
  text-shadow: 0 0 8px #ff2d78, 0 0 20px rgba(255,45,120,0.4);
}
.ni-intro {
  font-size: 15px;
  font-weight: 300;
  color: #5050a0;
  line-height: 1.75;
  max-width: 600px;
}

.ni-faq-grid,
.ni-faq-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.ni-faq-row2 { margin-bottom: 60px; }

.ni-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.ni-faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #ff2d78;
  box-shadow: 0 0 8px #ff2d78;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.ni-faq-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,45,120,0.15);
}
.ni-faq-item:hover::before { transform: scaleX(1); }

.ni-faq-item:nth-child(2)::before { background: #00f5ff; box-shadow: 0 0 8px #00f5ff; }
.ni-faq-item:nth-child(3)::before { background: #7828ff; box-shadow: 0 0 8px #7828ff; }
.ni-faq-row2 .ni-faq-item:nth-child(1)::before { background: #ffe600; box-shadow: 0 0 8px #ffe600; }
.ni-faq-row2 .ni-faq-item:nth-child(2)::before { background: #39ff14; box-shadow: 0 0 8px #39ff14; }
.ni-faq-row2 .ni-faq-item:nth-child(3)::before { background: #ff2d78; box-shadow: 0 0 8px #ff2d78; }

.ni-faq-q {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ni-faq-q::before {
  content: '?';
  font-size: 11px;
  font-weight: 900;
  color: #ff2d78;
  background: rgba(255,45,120,0.08);
  border: 1px solid rgba(255,45,120,0.2);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ni-faq-item:nth-child(2) .ni-faq-q::before { color: #00f5ff; background: rgba(0,245,255,0.08); border-color: rgba(0,245,255,0.2); }
.ni-faq-item:nth-child(3) .ni-faq-q::before { color: #7828ff; background: rgba(120,40,255,0.08); border-color: rgba(120,40,255,0.2); }
.ni-faq-row2 .ni-faq-item:nth-child(1) .ni-faq-q::before { color: #ffe600; background: rgba(255,230,0,0.08); border-color: rgba(255,230,0,0.2); }
.ni-faq-row2 .ni-faq-item:nth-child(2) .ni-faq-q::before { color: #39ff14; background: rgba(57,255,20,0.08); border-color: rgba(57,255,20,0.2); }

.ni-faq-a {
  font-size: 13px;
  font-weight: 300;
  color: #5050a0;
  line-height: 1.75;
}
.ni-faq-a strong { color: #e8e8f0; font-weight: 500; }

.ni-kit {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,245,255,0.15);
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.ni-kit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff2d78, #00f5ff, #7828ff);
  box-shadow: 0 0 10px rgba(0,245,255,0.4);
}
.ni-kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ni-kit-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00f5ff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ni-kit-label::before {
  content: '';
  width: 4px; height: 4px;
  background: #00f5ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00f5ff;
}
.ni-kit-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.ni-kit-sub {
  font-size: 13px;
  color: #5050a0;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ni-kit-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ni-kit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #e8e8f0;
  font-weight: 400;
}
.ni-kit-item::before {
  content: '';
  width: 6px; height: 6px;
  background: #ff2d78;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff2d78;
  flex-shrink: 0;
}
.ni-kit-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #ff2d78;
  padding: 15px 32px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255,45,120,0.4);
  transition: all 0.3s;
  margin-top: 28px;
  border: none;
  cursor: pointer;
}
.ni-kit-cta:hover {
  box-shadow: 0 0 50px rgba(255,45,120,0.7);
  transform: translateY(-2px);
}

.ni-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ni-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ni-spec-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3030a0;
}
.ni-spec-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: right;
}
.ni-spec-val.pink   { color: #ff2d78; text-shadow: 0 0 10px rgba(255,45,120,0.5); }
.ni-spec-val.cyan   { color: #00f5ff; text-shadow: 0 0 10px rgba(0,245,255,0.5); }
.ni-spec-val.yellow { color: #ffe600; text-shadow: 0 0 10px rgba(255,230,0,0.5); }

.ni-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px;
  background: rgba(255,45,120,0.04);
  border: 1px solid rgba(255,45,120,0.15);
  flex-wrap: wrap;
}
.ni-cta-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}
.ni-cta-text span {
  color: #ff2d78;
  text-shadow: 0 0 8px #ff2d78;
}
.ni-cta-sub {
  font-size: 13px;
  color: #5050a0;
  margin-top: 6px;
}

.ni-faq-item, .ni-kit, .ni-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s, border-color 0.4s;
}
.ni-faq-item.vis, .ni-kit.vis, .ni-cta.vis {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .ni-faq-grid, .ni-faq-row2 { grid-template-columns: 1fr; }
  .ni-kit-grid { grid-template-columns: 1fr; gap: 32px; }
  .ni-kit { padding: 28px 20px; }
  .ni-cta { padding: 28px 20px; }
}

/* ============================================================
 * BLOG-ARTICLE  (единый шаблон блог-статьи)
 * ============================================================ */
.blog-article {
  background: #07070d;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  padding: 80px 0 60px;
}
.blog-article__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-article__lead {
  font-size: 18px;
  font-weight: 300;
  color: #cfcfe6;
  line-height: 1.65;
  margin: 0 0 32px;
}
.blog-article__cover {
  margin: 0 0 32px;
}
.blog-article__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-article__body {
  font-size: 16px;
  line-height: 1.75;
  color: #e8e8f0;
}
.blog-article__body h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #fff;
  margin: 48px 0 20px;
  line-height: 1.2;
}
.blog-article__body h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
}
.blog-article__body p { margin: 0 0 16px; }
.blog-article__body ul,
.blog-article__body ol { margin: 0 0 20px; padding-left: 22px; }
.blog-article__body li { margin: 0 0 8px; }
.blog-article__body a {
  color: #00f5ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,245,255,0.3);
  transition: border-color .2s;
}
.blog-article__body a:hover { border-color: #00f5ff; }
.blog-article__body strong { color: #fff; font-weight: 600; }
.blog-article__body figure { margin: 28px 0; }
.blog-article__body figure img { width: 100%; height: auto; display: block; }
.blog-article__body figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #5050a0;
  text-align: center;
}

.blog-article__cta {
  margin: 48px 0 0;
  padding: 32px 28px;
  background: rgba(255,45,120,0.05);
  border: 1px solid rgba(255,45,120,0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.blog-article__cta-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.blog-article__cta-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #ff2d78;
  padding: 14px 28px;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(255,45,120,0.35);
  transition: all .3s;
}
.blog-article__cta-btn:hover {
  box-shadow: 0 0 44px rgba(255,45,120,0.65);
  transform: translateY(-2px);
}

.blog-article__related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.blog-article__related-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.blog-article__related-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0; margin: 0;
}
.blog-article__related-list a {
  display: block;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: #e8e8f0;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color .25s, color .25s;
}
.blog-article__related-list a:hover {
  border-color: rgba(0,245,255,0.4);
  color: #00f5ff;
}

@media (max-width: 768px) {
  .blog-article { padding: 48px 0 40px; }
  .blog-article__inner { padding: 0 18px; }
  .blog-article__lead { font-size: 16px; }
  .blog-article__cta { padding: 22px 18px; }
  .blog-article__cta-text { font-size: 16px; }
}
