/* ==========================================================================
   1. ДИЗАЙН-ТОКЕНЫ (NEON LIME SYSTEM & 1300PX GRID)
   ========================================================================== */
:root {
  /* Backgrounds */
  --bg-primary: #060709;
  --bg-secondary: #0C0E12;
  --bg-tertiary: #12151C;

  /* Neon Lime Palette (#a0fe00) */
  --accent-primary: #A0FE00;
  --accent-bright: #B5FF2A;
  --accent-muted: rgba(160, 254, 0, 0.12);
  --accent-glow: rgba(160, 254, 0, 0.25);
  --accent-glow-subtle: rgba(160, 254, 0, 0.08);

  /* Typography Colors */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-inverse: #060709;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* Layout Container Maximum Limit */
  --container-max: 1300px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. СБРОС И БАЗОВЫЕ СТИЛИ
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ЖЕСТКИЙ ОГРАНИЧИТЕЛЬ 1300PX ПО ЦЕНТРУ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ФОН 1: Кибер-сетка */
.bg-grid {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* ФОН 2: Интерактивный неоновый софит */
.bg-glow-spot {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  filter: blur(80px);
  opacity: 0.6;
  transition: transform 0.2s ease-out;
}

/* ==========================================================================
   3. ТИПОГРАФИКА
   ========================================================================== */
.overline {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-xs);
}

.overline::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
  border-radius: 50%;
}

.h1 {
  font-family: 'Tektur', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.h1-highlight {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h2 {
  font-family: 'Tektur', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.body-l {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 620px;
}

.body-m {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.divider-gold {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   4. БЛОК 1: HERO SECTION
   ========================================================================== */
.hero-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  width: 100%;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-primary);
  line-height: 1.1;
  text-shadow: 0 0 20px var(--accent-glow);
}

.metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 500;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--accent-primary);
  color: var(--text-inverse);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 0 25px var(--accent-glow);
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 35px rgba(160, 254, 0, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(160, 254, 0, 0.4);
  color: var(--accent-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: var(--accent-muted);
  border-color: var(--accent-primary);
  color: #FFF;
  transform: translateY(-2px);
}

.microtrust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.microtrust-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

/* Терминал */
.terminal-container {
  background: rgba(12, 14, 18, 0.85);
  border: 1px solid rgba(160, 254, 0, 0.25);
  border-radius: 12px;
  padding: var(--space-md);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  width: 100%;
}

.corner-bracket {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-primary);
  pointer-events: none;
}
.corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-top-left-radius: 12px; }
.corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; border-top-right-radius: 12px; }
.corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; border-bottom-left-radius: 12px; }
.corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-bottom-right-radius: 12px; }

.terminal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-sm);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: var(--accent-muted);
  border: 1px solid var(--accent-primary);
  border-radius: 20px;
  font-family: 'Tektur', sans-serif;
  font-size: 11px;
  color: var(--accent-primary);
}

.status-pulse {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.region-info { font-size: 12px; color: var(--text-muted); }
.region-info strong { color: var(--text-primary); }

.terminal-filters { display: flex; gap: 8px; margin-bottom: var(--space-sm); }

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-muted);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  margin-bottom: var(--space-sm);
}

.feed-item {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: feedSlide 0.4s ease-out;
}

@keyframes feedSlide {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

.item-title { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.item-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.tag-target {
  background: var(--accent-muted);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.terminal-footer {
  background: #040507;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.radar-line {
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  animation: radarScan 3s infinite linear;
}

@keyframes radarScan {
  0% { left: -50%; }
  100% { left: 150%; }
}

.footer-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.stat-box { display: flex; flex-direction: column; }
.stat-box.align-right { text-align: right; }
.stat-num { font-family: 'Tektur', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent-primary); }
.stat-desc { font-size: 11px; color: var(--text-muted); }

/* ==========================================================================
   5. БЛОК 2: НИШЕВАЯ ЭКСПЕРТИЗА (NICHES)
   ========================================================================== */
.niches-section {
  width: 100%;
  padding: var(--space-2xl) 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.niches-header { margin-bottom: var(--space-xl); max-width: 720px; }

.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  width: 100%;
}

.niche-card {
  background: rgba(12, 14, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.niche-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 254, 0, 0.4);
}

.niche-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.niche-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.niche-icon svg { width: 22px; height: 22px; }

.niche-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 8px;
  border-radius: 4px;
}

.niche-title {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.niche-desc { font-size: 13px; line-height: 1.55; color: var(--text-secondary); }

.niche-card-custom {
  background: rgba(160, 254, 0, 0.03);
  border: 1px dashed var(--accent-primary);
  cursor: pointer;
}

.tag-accent, .title-accent { color: var(--accent-primary); }

.niche-action-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
}

.niches-footer { display: flex; justify-content: center; }

.geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(18, 21, 28, 0.8);
  border: 1px solid rgba(160, 254, 0, 0.3);
  border-radius: 30px;
  font-size: 14px;
  color: var(--text-secondary);
}

.geo-badge strong { color: var(--accent-primary); }
.geo-icon { width: 18px; height: 18px; color: var(--accent-primary); }

/* ==========================================================================
   6. БЛОК 3: ИНТЕРАКТИВНАЯ HUD-МАТРИЦА (БЕЗ ИКОНОК)
   ========================================================================== */
.benefits-section {
  width: 100%;
  padding: var(--space-2xl) 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-header { margin-bottom: var(--space-xl); max-width: 760px; }

/* Bento Matrix 3 колонки */
.hud-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  width: 100%;
}

.hud-card {
  background: rgba(12, 14, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  min-height: 260px;
}

.hud-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(160, 254, 0, 0.05) 0%, rgba(12, 14, 18, 0.85) 100%);
  border-color: rgba(160, 254, 0, 0.25);
}

.laser-beam {
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transition: left 0.7s ease;
}

.hud-card:hover .laser-beam { left: 100%; }

.hud-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 254, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.hud-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hud-num {
  font-family: 'Tektur', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all var(--transition-normal);
}

.hud-card:hover .hud-num {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hud-status-code {
  font-family: 'Tektur', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.highlight-neon { color: var(--accent-primary); }

.hud-live-widget {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(160, 254, 0, 0.08);
  border: 1px solid rgba(160, 254, 0, 0.2);
  border-radius: 4px;
}

.eq-bar {
  width: 3px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: eqPulse 1.2s infinite ease-in-out alternate;
}

.eq-bar:nth-child(2) { animation-delay: 0.3s; }
.eq-bar:nth-child(3) { animation-delay: 0.6s; }

@keyframes eqPulse {
  0% { height: 4px; }
  100% { height: 16px; }
}

.widget-label {
  font-family: 'Tektur', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-left: 4px;
}

.hud-property-tag {
  font-family: 'Tektur', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hud-title {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.hud-card-wide .hud-title { font-size: 22px; }
.hud-desc { font-size: 13px; line-height: 1.6; color: var(--text-secondary); }

.hud-card-footer {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hud-progress-line {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill { height: 100%; background: var(--accent-primary); }

.geo-ticker-bar {
  font-family: 'Tektur', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
}

.risk-zero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Tektur', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-primary);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
}

.mini-graph-bars { display: flex; align-items: flex-end; gap: 4px; height: 16px; }

.mini-graph-bars .bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.mini-graph-bars .bar.active, .hud-card:hover .mini-graph-bars .bar {
  background: var(--accent-primary);
}

/* ==========================================================================
   7. АНИМАЦИИ И АДАПТИВНОСТЬ
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .h1 { font-size: 42px; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .hud-matrix { grid-template-columns: repeat(2, 1fr); }
  .hud-card-wide { grid-column: span 2; }
}

@media (max-width: 767px) {
  .h1 { font-size: 32px; }
  .h2 { font-size: 28px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }
  .niches-grid { grid-template-columns: 1fr; }
  .hud-matrix { grid-template-columns: 1fr; }
  .hud-card-wide { grid-column: span 1; }
  .geo-badge { flex-direction: column; text-align: center; border-radius: 12px; padding: 16px; }
}

/* ==========================================================================
   8. БЛОК 4: ПРОЦЕСС — МАТРИЦА 2×2
   ========================================================================== */
.process-section {
  width: 100%;
  padding: var(--space-2xl) 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.process-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.process-header {
  margin-bottom: 64px;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   МАТРИЦА 2×2
   ========================================================================== */
.process-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

/* ==========================================================================
   УЗЕЛ ПРОЦЕССА
   ========================================================================== */
.process-node {
  background: rgba(12, 14, 18, 0.9);
  padding: 44px 40px;
  position: relative;
  cursor: default;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  min-height: 220px;
  overflow: hidden;
}

.process-node:hover {
  background: rgba(18, 21, 28, 0.95);
}

/* Обводка при наведении */
.node-border {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid transparent;
  border-radius: 0;
  pointer-events: none;
  transition: border-color 0.5s ease;
  z-index: 3;
}

.process-node:hover .node-border {
  border-color: rgba(160, 254, 0, 0.3);
}

.active-node .node-border {
  border-color: rgba(160, 254, 0, 0.4);
}

/* Свечение */
.node-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(160, 254, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.process-node:hover .node-glow {
  opacity: 1;
}

.active-node .node-glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(160, 254, 0, 0.08) 0%, transparent 70%);
}



/* ==========================================================================
   ВИЗУАЛЫ УЗЛОВ (БЕСКОНЕЧНАЯ ЦИКЛИЧНАЯ АНИМАЦИЯ)
   ========================================================================== */
.node-visual {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* --- СТАДИЯ 1: КОЛЛЕКТОР — лучи бесконечно пульсируют к центру --- */
.visual-collector {
  width: 70px;
  height: 70px;
  position: relative;
}

.collector-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background: rgba(160, 254, 0, 0.3);
  transform-origin: left center;
  transform: translate(0, -50%) rotate(var(--angle)) scaleX(0.3);
  animation: collectorPulse 3s infinite ease-in-out;
  animation-delay: var(--delay);
}

@keyframes collectorPulse {
  0%, 100% { 
    transform: translate(0, -50%) rotate(var(--angle)) scaleX(0.3);
    background: rgba(160, 254, 0, 0.2);
    box-shadow: none;
  }
  50% { 
    transform: translate(0, -50%) rotate(var(--angle)) scaleX(1);
    background: rgba(160, 254, 0, 0.6);
    box-shadow: 0 0 6px var(--accent-glow);
  }
}

/* При наведении — ускоряем */
.process-node:hover .collector-line {
  animation-duration: 1.5s;
}

.collector-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(160, 254, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: coreCollect 3s infinite ease-in-out;
  box-shadow: 0 0 8px var(--accent-glow-subtle);
}

@keyframes coreCollect {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    background: rgba(160, 254, 0, 0.4);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.4);
    background: var(--accent-primary);
    box-shadow: 0 0 18px var(--accent-glow);
  }
}

.process-node:hover .collector-core {
  animation-duration: 1.5s;
}

/* --- СТАДИЯ 2: ФИЛЬТР — сетка мерцает, точки бесконечно проходят / блокируются --- */
.visual-filter {
  width: 70px;
  height: 70px;
  position: relative;
  border: 1px solid rgba(160, 254, 0, 0.2);
  border-radius: 2px;
  animation: filterBorderPulse 3s infinite ease-in-out;
}

@keyframes filterBorderPulse {
  0%, 100% { border-color: rgba(160, 254, 0, 0.15); }
  50% { border-color: rgba(160, 254, 0, 0.4); }
}

.process-node:hover .visual-filter {
  animation-duration: 1.5s;
}

.filter-row {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(160, 254, 0, 0.2);
  top: calc(var(--row) * 25%);
  animation: filterRowGlow 3s infinite ease-in-out;
  animation-delay: calc(var(--row) * 0.2s);
}

@keyframes filterRowGlow {
  0%, 100% { background: rgba(160, 254, 0, 0.15); }
  50% { background: rgba(160, 254, 0, 0.45); }
}

.process-node:hover .filter-row {
  animation-duration: 1.5s;
}

.filter-pass-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: var(--x);
  background: var(--accent-primary);
  box-shadow: 0 0 6px var(--accent-glow);
  opacity: 0;
  animation: dotPassInfinite 3s infinite;
  animation-delay: var(--delay);
}

@keyframes dotPassInfinite {
  0%   { top: 100%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { top: 0%; opacity: 1; }
  50%  { top: 0%; opacity: 0; }
  100% { top: 0%; opacity: 0; }
}

.filter-block-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: var(--x);
  background: #EF4444;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.6);
  opacity: 0;
  animation: dotBlockInfinite 3s infinite;
  animation-delay: var(--delay);
}

@keyframes dotBlockInfinite {
  0%   { top: 80%; opacity: 0; }
  15%  { opacity: 1; }
  40%  { top: 35%; opacity: 1; }
  50%  { top: 35%; opacity: 0; transform: scale(1); }
  55%  { top: 35%; opacity: 0.8; transform: scale(2); }
  60%  { top: 35%; opacity: 0; }
  100% { top: 35%; opacity: 0; }
}

.process-node:hover .filter-pass-dot,
.process-node:hover .filter-block-dot {
  animation-duration: 1.5s;
}

/* --- СТАДИЯ 3: ПЕРЕДАЧА — бесконечная пульсация ядра и волн --- */
.visual-transmit {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transmit-core {
  width: 12px;
  height: 12px;
  background: var(--accent-bright);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow-subtle);
  animation: coreBeatInfinite 1.2s infinite ease-in-out;
}

@keyframes coreBeatInfinite {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  30%  { transform: scale(1.6); opacity: 1; }
  60%  { transform: scale(0.85); opacity: 0.8; }
}

.process-node:hover .transmit-core {
  animation-duration: 0.7s;
}

.transmit-flash {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: var(--accent-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: flashInfinite 2s infinite;
}

@keyframes flashInfinite {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%  { transform: translate(-50%, -50%) scale(4); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.process-node:hover .transmit-flash {
  animation-duration: 1s;
}

.transmit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  border: 1px solid rgba(160, 254, 0, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpandInfinite 2.5s infinite;
  animation-delay: calc(var(--ring) * 0.7s);
  opacity: 0;
}

@keyframes ringExpandInfinite {
  0%   { width: 16px; height: 16px; opacity: 0.7; border-color: rgba(160, 254, 0, 0.5); }
  50%  { width: 80px; height: 80px; opacity: 0; border-color: rgba(160, 254, 0, 0); }
  100% { width: 16px; height: 16px; opacity: 0; }
}

.process-node:hover .transmit-ring {
  animation-duration: 1.5s;
}

/* --- СТАДИЯ 4: ЭКСПАНСИЯ — дуги вращаются, искры разлетаются бесконечно --- */
.visual-expand {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expand-node-center {
  width: 6px;
  height: 6px;
  background: rgba(160, 254, 0, 0.5);
  border-radius: 50%;
  animation: centerPulse 2.5s infinite ease-in-out;
  box-shadow: 0 0 6px var(--accent-glow-subtle);
}

@keyframes centerPulse {
  0%, 100% { 
    transform: scale(1);
    background: rgba(160, 254, 0, 0.4);
    box-shadow: 0 0 6px var(--accent-glow-subtle);
  }
  50% { 
    transform: scale(1.5);
    background: var(--accent-primary);
    box-shadow: 0 0 16px var(--accent-glow);
  }
}

.process-node:hover .expand-node-center {
  animation-duration: 1.2s;
}

.expand-arc {
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(160, 254, 0, 0.25);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: translate(-50%, -50%) rotate(calc(var(--arc) * 45deg));
  animation: arcExpandInfinite 3s infinite ease-in-out;
  animation-delay: var(--delay);
}

@keyframes arcExpandInfinite {
  0%, 100% { 
    width: 18px; height: 18px;
    opacity: 0.3;
    border-color: rgba(160, 254, 0, 0.2);
    border-top-color: transparent;
    border-right-color: transparent;
  }
  50% { 
    width: 55px; height: 55px;
    opacity: 0.7;
    border-color: rgba(160, 254, 0, 0.55);
    border-top-color: transparent;
    border-right-color: transparent;
    box-shadow: 0 0 10px rgba(160, 254, 0, 0.15);
  }
}

.process-node:hover .expand-arc {
  animation-duration: 1.5s;
}

/* Искры — позиционируются через JS для бесконечного движения */
.expand-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-glow);
  pointer-events: none;
  opacity: 0;
  animation: sparkLife 2s infinite ease-in-out;
}

@keyframes sparkLife {
  0%   { opacity: 0; transform: translate(0, 0) scale(0); }
  20%  { opacity: 1; transform: translate(0, 0) scale(1); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0.5); }
}

.process-node:hover .expand-spark {
  animation-duration: 1s;
}


/* ==========================================================================
   ИНФОРМАЦИЯ УЗЛА
   ========================================================================== */
.node-info {
  flex: 1;
  z-index: 2;
  padding-top: 4px;
}

.node-phase {
  font-family: 'Tektur', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  display: block;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.process-node:hover .node-phase {
  color: var(--text-muted);
}

.phase-live {
  color: var(--accent-primary) !important;
}

.node-title {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.process-node:hover .node-title,
.active-node .node-title {
  color: var(--text-primary);
}

.node-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.25);
  max-width: 420px;
  transition: color 0.4s ease;
  margin-bottom: 8px;
}

.process-node:hover .node-desc,
.active-node .node-desc {
  color: var(--text-secondary);
}

.node-meta {
  font-family: 'Tektur', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.4s ease;
}

.process-node:hover .node-meta {
  color: var(--text-muted);
}

.meta-live {
  color: var(--accent-primary) !important;
}

/* ==========================================================================
   МИКРО-CTA
   ========================================================================== */
.process-micro-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.micro-cta-text {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(160, 254, 0, 0.2);
  color: var(--text-muted);
  padding: 12px 24px;
  font-size: 12px;
  transition: all var(--transition-normal);
}

.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-muted);
  transform: translateY(-1px);
}

/* ==========================================================================
   АДАПТИВ
   ========================================================================== */
@media (max-width: 900px) {
  .process-matrix {
    grid-template-columns: 1fr;
  }

  .process-node {
    padding: 32px 24px;
    gap: 24px;
    min-height: auto;
  }

  .node-visual {
    width: 60px;
    height: 60px;
  }

  .node-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .process-node {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
  }

  .node-visual {
    width: 50px;
    height: 50px;
  }

  .process-micro-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   БЛОК 5: ИНТЕРАКТИВНЫЙ СЕЙФ ЗАЩИТЫ БЮДЖЕТА (1300px // УКРУПНЕННЫЙ)
   ========================================================================== */
.trust-engine-section {
  width: 100%;
  padding: var(--space-2xl) 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(160, 254, 0, 0.03) 0%, transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-header {
  margin-bottom: var(--space-xl);
  max-width: 820px;
}

/* КОНТЕЙНЕР СЛОЕВ ЗАЩИТЫ НА 1300px */
.defense-engine-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

/* Слой Сейфа (Укрупненный) */
.defense-layer {
  background: rgba(15, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.defense-layer:hover {
  border-color: rgba(160, 254, 0, 0.35);
  background: rgba(20, 24, 32, 0.95);
  transform: translateY(-2px);
}

.defense-layer.active {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(160, 254, 0, 0.06) 0%, rgba(15, 18, 24, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(160, 254, 0, 0.1);
}

.layer-accent-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.defense-layer.active .layer-accent-glow {
  background: var(--accent-primary);
  box-shadow: 0 0 18px var(--accent-primary);
}

/* Шапка слоя */
.layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.layer-tag {
  font-family: 'Tektur', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.defense-layer.active .layer-tag {
  color: var(--accent-primary);
}

.layer-heading {
  font-family: 'Tektur', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.layer-badge {
  font-family: 'Tektur', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.layer-badge.highlight-gold,
.defense-layer.active .layer-badge {
  color: var(--accent-primary);
  background: var(--accent-muted);
  border-color: rgba(160, 254, 0, 0.3);
}

/* Контент слоя (Укрупненный) */
.layer-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.defense-layer.active .layer-content {
  max-height: 400px;
  opacity: 1;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Сетка "Слив vs Защита" */
.layer-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.comp-box {
  padding: 20px 24px;
  border-radius: 10px;
}

.comp-box.bad {
  background: rgba(255, 50, 50, 0.04);
  border: 1px solid rgba(255, 50, 50, 0.18);
}

.comp-box.good {
  background: rgba(160, 254, 0, 0.04);
  border: 1px solid rgba(160, 254, 0, 0.25);
}

.comp-label {
  font-family: 'Tektur', sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.comp-box.bad .comp-label { color: #ff5555; }
.comp-box.good .comp-label { color: var(--accent-primary); }

.comp-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Микро-визуалы внутри слоев */
.layer-interactive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-chip {
  font-family: 'Tektur', sans-serif;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tag-chip.active {
  background: var(--accent-muted);
  color: var(--accent-primary);
  border-color: rgba(160, 254, 0, 0.3);
}

/* Биллинг визуализатор */
.billing-visualizer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.billing-card-micro {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.billing-card-micro span { color: var(--text-muted); font-family: 'Tektur', sans-serif; }
.billing-card-micro strong { color: var(--text-primary); font-weight: 700; font-size: 14px; }

.billing-card-micro.active {
  background: var(--accent-muted);
  border-color: var(--accent-primary);
}

.billing-card-micro.active strong { color: var(--accent-primary); }

.billing-divider { color: var(--accent-primary); font-size: 18px; font-weight: 700; }

/* Трекинг линия */
.tracker-live-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.4);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tracker-step {
  font-family: 'Tektur', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

.tracker-step.verified {
  color: var(--accent-primary);
  font-weight: 700;
}

.tracker-arrow { color: rgba(255, 255, 255, 0.2); font-size: 16px; }

/* Договор */
.legal-guarantee-line {
  display: flex;
  gap: 28px;
  font-family: 'Tektur', sans-serif;
  font-size: 12px;
  color: var(--accent-primary);
}

/* Адаптивность */
@media (max-width: 992px) {
  .defense-layer { padding: 24px 28px; }
  .layer-heading { font-size: 18px; }
  .layer-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .layer-comparison-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .tracker-live-bar, .billing-visualizer, .legal-guarantee-line { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
  }
}



















/* ==========================================================================
   ГЛАВНАЯ НАВИГАЦИОННАЯ ШАПКА (HEADER)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  height: 70px;
  background: rgba(8, 10, 14, 0.92);
  border-bottom-color: rgba(160, 254, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1300px; /* Совпадает с шириной блоков */
}

/* 1. Логотип */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Tektur', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.logo-symbol {
  font-size: 20px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 8px var(--accent-primary));
}

.logo .highlight {
  color: var(--accent-primary);
  text-shadow: 0 0 12px var(--accent-glow);
}

/* 2. Навигация и меню */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Tektur', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

/* Выпадающее меню "Услуги" */
.nav-item.dropdown {
  position: relative;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  stroke: var(--accent-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 300px;
  background: rgba(12, 15, 20, 0.95);
  border: 1px solid rgba(160, 254, 0, 0.3);
  border-radius: 10px;
  padding: 12px 0;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(160, 254, 0, 0.08);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: var(--accent-muted);
  color: var(--accent-primary);
  padding-left: 24px;
}

/* 3. Правый блок с действиями */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Соцсети */
.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: var(--accent-muted);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow);
  transform: translateY(-2px);
}

/* Телефон */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Tektur', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: var(--accent-primary);
}

.phone-icon {
  font-size: 12px;
}

/* Кнопка CTA в шапке */
.header-btn {
  padding: 10px 20px !important;
  font-size: 11px !important;
  letter-spacing: 0.08em;
}

/* Мобильный бургер */
.mobile-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-burger span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Адаптивность для мобильных */
@media (max-width: 1100px) {
  .header-phone, .header-socials { display: none; }
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 30px 40px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(160, 254, 0, 0.2);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 10px;
  }

  .mobile-burger {
    display: flex;
  }
}