﻿*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #06091a;
  --bg-primary: #0a0e27;
  --bg-card: rgba(16, 22, 58, 0.6);
  --bg-card-hover: rgba(22, 30, 72, 0.7);
  --accent-blue: #3b7dff;
  --accent-blue-glow: rgba(59, 125, 255, 0.3);
  --accent-yellow: #ffd84d;
  --accent-yellow-glow: rgba(255, 216, 77, 0.2);
  --text-primary: #e8ecf4;
  --text-secondary: rgba(232, 236, 244, 0.6);
  --text-muted: rgba(232, 236, 244, 0.35);
  --border: rgba(59, 125, 255, 0.15);
  --border-bright: rgba(59, 125, 255, 0.35);
  --font-display: 'Onest', sans-serif;
  --font-body: 'Onest', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(6, 9, 26, 0.7);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  padding: 0.7rem 2rem;
  background: rgba(6, 9, 26, 0.92);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent-blue);
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
}
.logo-icon::before {
  content: '';
  width: 12px; height: 12px;
  border: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent-blue) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s !important;
  box-shadow: 0 0 20px var(--accent-blue-glow);
}
.nav-cta:hover {
  background: #5090ff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 30px var(--accent-blue-glow);
}
.nav-cta::after { display: none !important; }

/* ===== DROPDOWN NAV ===== */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  transition: color 0.3s;
  position: relative;
}
.nav-dropdown-btn svg { transition: transform 0.25s ease; flex-shrink: 0; }
.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn { color: var(--text-primary); }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  background: rgba(6, 9, 26, 0.97);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 0.4rem 0;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 200;
  /* max-height approach — надёжно работает в Safari вместо visibility+opacity+transform */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-menu {
  max-height: 300px;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  color: var(--text-primary) !important;
  background: rgba(59, 125, 255, 0.09);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  position: relative;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 4px;
  transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 8px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

.content-wrapper {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
}

.hero {
  position: relative;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(59, 125, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-blue);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.45s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 30px var(--accent-blue-glow), inset 0 1px 0 rgba(255,255,255,0.1);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(59, 125, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(59, 125, 255, 0.08);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  animation: fadeIn 1s 1s ease both;
}
.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  animation: scrollPulse 2s infinite;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.pain-section { flex-direction: column; }
.pain-content { max-width: 800px; text-align: center; }
.pain-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 700px;
  width: 100%;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.4s ease;
  text-align: left;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}
.pain-item.visible { opacity: 1; transform: translateY(0); }
.pain-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateX(6px);
}
.pain-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(59, 125, 255, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.pain-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.pain-item p strong { color: var(--text-primary); font-weight: 600; }

.scroll-arrow {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
}
.scroll-arrow:hover { color: var(--accent-blue); }
.scroll-arrow span { font-size: 0.8rem; font-family: var(--font-mono); }
.scroll-arrow svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  animation: bounceDown 2s infinite;
}

/* ===== HOW SECTION — SPLIT LAYOUT ===== */
.how-section {
  flex-direction: column;
  align-items: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

/* soft glow — not clipped, bleeds freely */
.how-section::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -6%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(59,125,255,0.09), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.how-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  max-width: 1280px;
  width: 100%;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.how-left {
  position: sticky;
  top: 120px;
}
.how-left .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0;
}

.how-right {
  border-left: 1px solid var(--border);
  padding-left: 3.5rem;
  display: flex;
  flex-direction: column;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateX(24px);
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; padding-bottom: 0; }
.how-step.visible     { opacity: 1; transform: translateX(0); }

.how-step:hover .how-step-icon { border-color: var(--border-bright); background: rgba(59,125,255,0.08); }

.how-step-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(59,125,255,0.03);
  transition: all 0.35s ease;
}
.how-step-icon svg { width: 58px; height: 58px; }

.how-step-body { flex: 1; }
.how-step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.how-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.how-step-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* legacy */
.how-cta-box { display: none; }
.step-card, .steps-grid, .how-content, .step-number { display: none; }

/* ===== DEEPER SECTION ===== */
.deeper-section {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.deeper-wave {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.deeper-wave-svg {
  width: 100%;
  height: 100%;
  animation: deeperPulse 6s ease-in-out infinite alternate;
}

@keyframes deeperPulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.deeper-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.deeper-inner .section-tag { margin-bottom: 0; }

.deeper-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.deeper-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

.faq-section { flex-direction: column; }
.faq-content { max-width: 1280px; width: 100%; }
.faq-list { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; row-gap: 0.75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:hover { border-color: var(--border-bright); }
.faq-q {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  user-select: none;
}
.faq-q svg {
  width: 20px; height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
  min-width: 20px;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.cases-section { flex-direction: column; }
.cases-content { max-width: 700px; text-align: center; }
.cases-box {
  margin-top: 2.5rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.cases-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 125, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.cases-nda {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cases-nda svg { width: 16px; height: 16px; stroke: var(--accent-yellow); fill: none; stroke-width: 1.5; }
.cases-box p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; position: relative; }

.pricing-section { flex-direction: column; }
.pricing-content { max-width: 1280px; width: 100%; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card:hover { transform: translateY(-6px); border-color: var(--border-bright); }
.price-card.featured {
  border-color: var(--accent-blue);
  background: linear-gradient(180deg, rgba(59, 125, 255, 0.12), var(--bg-card));
}
.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-yellow));
}
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--mouse-x, -400px) var(--mouse-y, -400px),
    rgba(59, 125, 255, 0.13),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  z-index: 0;
}
.price-card:hover::after { opacity: 1; }
.price-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--accent-blue); margin-bottom: 1rem; position: relative; z-index: 1; }
.price-amount small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.price-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2rem; position: relative; z-index: 1; }
.price-card .btn-primary,
.price-card .btn-secondary { width: 100%; justify-content: center; position: relative; z-index: 1; }

.cta-section { flex-direction: column; }
.cta-content { max-width: 600px; text-align: center; width: 100%; }
.cta-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-group { position: relative; }
.form-group input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px var(--accent-blue-glow); }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1.1rem 2rem; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }
.form-note a { color: var(--accent-blue); text-decoration: underline; text-underline-offset: 2px; }

.form-error {
  display: none;
  text-align: center;
  padding: 1rem;
  margin-top: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #f87171;
  font-size: 0.9rem;
}
.form-error.active { display: block; }

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: rgba(6, 9, 26, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-blue); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 9, 26, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
}
.modal-box h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; }
.modal-box p, .modal-box li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.modal-box h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.modal-box ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.modal-close {
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.modal-close:hover { border-color: var(--accent-blue); }

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.active { display: block; }
.form-success svg { width: 48px; height: 48px; stroke: #4ade80; fill: none; stroke-width: 1.5; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-secondary); font-size: 0.95rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scrollPulse { 0% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.6); } 100% { opacity: 1; transform: scaleY(1); } }
@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .how-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .how-left {
    position: static;
  }
  .how-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .deeper-title { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  .site-header.scrolled {
    padding: 0.5rem 1rem;
  }
  .header-inner {
    width: 100%;
    min-width: 0;
  }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(6, 9, 26, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1rem;
    gap: 1rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-sizing: border-box;
  }

  /* Mobile dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    border-left: 2px solid var(--border-bright);
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    /* max-height/opacity уже заданы в базовых стилях, переопределяем только то что нужно */
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 200px;
    opacity: 1;
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 0.45rem 0.75rem;
  }

  section { padding: 100px 1rem 60px; min-height: auto; }
  .hero { min-height: 100vh; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .how-step { gap: 1rem; }
  .how-step-icon { width: 64px; height: 64px; min-width: 64px; border-radius: 12px; }
  .how-step-icon svg { width: 44px; height: 44px; }
  .how-step-body h3 { font-size: 1rem; }
  .deeper-section { min-height: 70vh; }
  .deeper-inner { padding: 0 1rem; }
}

/* Стили, перенесённые из inline-атрибутов */
.pricing-section .section-title { text-align: center; }

.cta-subtitle {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-left .logo { font-size: 1.2rem; }
.footer-left .logo-icon { width: 28px; height: 28px; }

/* ===== SCREEN 3 — OSINT FEATURES ===== */
.features-section {
  padding: 120px 2rem 80px;
  position: relative;
  z-index: 1;
}
.features-section .features-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-item {
  cursor: pointer;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-item.active {
  background: var(--bg-card);
  border-color: var(--border-bright);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.feature-item-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 125, 255, 0.12);
  transition: background 0.3s ease;
}
.feature-item.active .feature-icon {
  background: var(--accent-blue);
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.feature-item.active .feature-icon svg {
  stroke: #fff;
}
.feature-body {
  flex: 1;
}
.feature-body h3 {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.feature-item.active .feature-body h3 {
  color: var(--text-primary);
}
.feature-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.3s ease;
}
.feature-item.active .feature-body p {
  color: var(--text-secondary);
}
.feature-progress-wrap {
  margin-top: 1rem;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.feature-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.features-visual {
  position: relative;
}
.features-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-card);
}
.features-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.features-image-wrap img.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-visual { order: -1; }
  .features-image-wrap { aspect-ratio: 16/9; }
}

/* ===== SCREEN 6 — WHY US CYBERNETIC BENTO ===== */
.why-section {
  padding: 120px 2rem 80px;
  position: relative;
  z-index: 1;
}
.why-section .why-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.why-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Layout */
.why-card-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.why-card-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.why-card-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.why-card-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
.why-card-5 { grid-column: 2 / 3; grid-row: 3 / 4; }

.why-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  min-height: 180px;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
/* Cybernetic mouse glow */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--mouse-x, -400px) var(--mouse-y, -400px),
    rgba(59, 125, 255, 0.13),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  z-index: 0;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover { border-color: var(--border-bright); }
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card content above glow */
.why-card-icon,
.why-card-body { position: relative; z-index: 1; }

.why-card-icon {
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 10px;
  background: rgba(59, 125, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.why-card:hover .why-card-icon {
  background: rgba(59, 125, 255, 0.2);
}
.why-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card-body { flex: 1; }
.why-card h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card-1, .why-card-2, .why-card-3, .why-card-4, .why-card-5 {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }
}

/* ===== SCREEN 7 — CONTACTS INFO ===== */
.contacts-info-section {
  padding: 120px 2rem 80px;
  position: relative;
  z-index: 1;
}
.contacts-info-section .contacts-info-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.contacts-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contacts-info-left {
  display: flex;
  flex-direction: column;
}
.contacts-info-left .section-title { margin-bottom: 1rem; }
.contacts-info-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contacts-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contacts-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s ease;
}
.contacts-link:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}
.contacts-link-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(59, 125, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-link-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contacts-link-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contacts-link-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.contacts-link-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.contacts-info-right {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.contacts-info-right.visible {
  opacity: 1;
  transform: translateY(0);
}
.contacts-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.contacts-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-yellow));
}
.contacts-form-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}
.contacts-form-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contacts-info-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-list { grid-template-columns: 1fr; }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  flex-direction: column;
  padding: 120px 2rem 80px;
  position: relative;
  z-index: 1;
}
.services-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.service-card {
  grid-column: span 2;
  perspective: 1000px;
  height: 240px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-card:nth-child(4) { grid-column: 2 / 4; }
.service-card:nth-child(5) { grid-column: 4 / 6; }
.service-card.visible { opacity: 1; transform: translateY(0); }

.service-card-inner {
  position: relative;
  width: 100%; height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 14px;
}
.service-card:hover .service-card-inner,
.service-card.flipped .service-card-inner { transform: rotateY(180deg); }

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.service-card-front {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  border: 1px solid rgba(59, 125, 255, 0.22);
}
.service-card:nth-child(1) .service-card-front {
  background: radial-gradient(ellipse at 78% 18%, rgba(59,125,255,0.65) 0%, rgba(18,38,95,0.45) 45%, #060d1f 75%),
              linear-gradient(150deg, #070b1d 0%, #0d1b3e 100%);
}
.service-card:nth-child(2) .service-card-front {
  background: radial-gradient(ellipse at 22% 78%, rgba(59,125,255,0.6) 0%, rgba(18,38,95,0.4) 45%, #060d1f 75%),
              linear-gradient(210deg, #070b1d 0%, #0d1b3e 100%);
}
.service-card:nth-child(3) .service-card-front {
  background: radial-gradient(ellipse at 80% 72%, rgba(59,125,255,0.6) 0%, rgba(18,38,95,0.4) 45%, #060d1f 75%),
              linear-gradient(45deg, #070b1d 0%, #0d1b3e 100%);
}
.service-card:nth-child(4) .service-card-front {
  background: radial-gradient(ellipse at 20% 22%, rgba(59,125,255,0.65) 0%, rgba(18,38,95,0.45) 45%, #060d1f 75%),
              linear-gradient(315deg, #070b1d 0%, #0d1b3e 100%);
}
.service-card:nth-child(5) .service-card-front {
  background: radial-gradient(ellipse at 60% 50%, rgba(59,125,255,0.6) 0%, rgba(18,38,95,0.4) 50%, #060d1f 78%),
              linear-gradient(90deg, #070b1d 0%, #0d1b3e 100%);
}

.service-flip-icon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-flip-icon svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.65);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-card-front h3 {
  font-size: 1.05rem; font-weight: 600;
  color: #fff; line-height: 1.35;
}

.service-card-back {
  transform: rotateY(180deg);
  background: rgba(10, 17, 46, 0.97);
  border: 1px solid var(--border-bright);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 1.75rem; gap: 0.75rem;
}
.service-card-back p {
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.65;
}

.how-example {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-top: 1.25rem;
  border-left: 2px solid var(--border-bright);
  padding-left: 0.875rem;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1; height: 220px; }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 200px; }
}

/* ===== SERVICES GRID: вариант на 4 карточки (лесенка: 2 слева + 2 справа) ===== */
.services-grid-4 { grid-template-columns: repeat(12, 1fr); }
.services-grid-4 .service-card { height: 320px; }
.services-grid-4 .service-card:nth-child(1) { grid-column: 1 / 5; grid-row: 1; }
.services-grid-4 .service-card:nth-child(2) { grid-column: 5 / 9; grid-row: 1; }
.services-grid-4 .service-card:nth-child(3) { grid-column: 5 / 9; grid-row: 2; }
.services-grid-4 .service-card:nth-child(4) { grid-column: 9 / 13; grid-row: 2; }
@media (max-width: 900px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 .service-card:nth-child(1),
  .services-grid-4 .service-card:nth-child(2),
  .services-grid-4 .service-card:nth-child(3),
  .services-grid-4 .service-card:nth-child(4) { grid-column: auto; grid-row: auto; height: 280px; }
}
@media (max-width: 600px) {
  .services-grid-4 { grid-template-columns: 1fr; }
  .services-grid-4 .service-card:nth-child(1),
  .services-grid-4 .service-card:nth-child(2),
  .services-grid-4 .service-card:nth-child(3),
  .services-grid-4 .service-card:nth-child(4) { height: 300px; }
}

/* ===== OUTREACH: ЦЕПОЧКА ЭТАПОВ ===== */
.chain-section {
  flex-direction: column;
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
}
.chain-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.chain-text {
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 1rem;
}
.chain-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
.chain-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  row-gap: 0.75rem;
  column-gap: 0.75rem;
  margin-top: 2.5rem;
}
.chain-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  white-space: nowrap;
}
.chain-step-final {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(59, 125, 255, 0.1);
}
.chain-arrow {
  color: var(--accent-blue);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== OUTREACH: СРАВНЕНИЕ ПОДХОДОВ ===== */
.compare-section {
  flex-direction: column;
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
}
.compare-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.compare-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.compare-card {
  border-radius: 14px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.compare-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.compare-card-bad {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-card-good {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 50px rgba(59, 125, 255, 0.1);
}
.compare-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-card-bad .compare-label {
  color: rgba(232, 236, 244, 0.4);
}
.compare-card-good .compare-label {
  color: var(--accent-blue);
  border-bottom-color: var(--border-bright);
}
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
}
.compare-card-bad .compare-list li {
  color: rgba(232, 236, 244, 0.4);
}
.compare-card-good .compare-list li {
  color: var(--text-secondary);
}
.compare-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compare-card-bad .compare-icon {
  stroke: rgba(232, 236, 244, 0.3);
}
.compare-card-good .compare-icon {
  stroke: var(--accent-blue);
}
.compare-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.compare-cta .btn-primary {
  display: inline-flex;
}
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { padding: 1.5rem; }
}

/* ===== OUTREACH: МЕТРИКИ ===== */
.metrics-section {
  flex-direction: column;
  padding: 100px 2rem;
  position: relative;
  z-index: 1;
}
.metrics-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.metrics-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.metric-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.metric-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}
.metric-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.metrics-note {
  text-align: center;
  margin-top: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent-yellow);
}
@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-value { font-size: 1.75rem; }
}

