﻿

.hero { background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 60%); }

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  animation: float 25s infinite ease-in-out;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -200px;
  left: -100px;
  animation: float 30s infinite ease-in-out reverse;
  pointer-events: none;
}

.hero h1,
.hero .hero-title {
  color: white !important;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Статистика на тёмном фоне */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Тёмный header */
.header {
  background: rgba(30, 41, 59, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .logo {
  color: white !important;
}

.header .nav a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.header .nav a:hover {
  color: white !important;
}

/* Анимация пузырей */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .hero-stat-value {
    font-size: 2rem;
  }
}
/* ========================================
   SECTIONS.CSS - ����� ���������� ������
   ======================================== */

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--section-padding) + 80px);
  background: var(--gradient-sterile);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: var(--gradient-gold-subtle);
  border-radius: 50%;
  transform: rotate(15deg);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-title-wrapper {
  max-width: 900px;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-steel-blue-dark) 0%, var(--color-steel-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-gray);
  max-width: 760px;
  white-space: pre-line;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-accent {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* --- Industry Sections --- */
.industry-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.industry-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(58, 123, 213, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.industry-intro {
  margin-bottom: 3rem;
}

.industry-intro .lead {
  max-width: 980px;
}

.industry-highlight {
  margin-top: 2rem;
}

.industry-highlight .premium-card {
  border-left: 4px solid var(--color-gold);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.industry-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.14);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-blue-accent);
}

.industry-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.8);
}

.industry-card h3 {
  color: var(--color-steel-blue-dark);
  margin-bottom: 1rem;
}

.industry-card p {
  margin-bottom: 1rem;
}

.industry-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 1.5rem;
}

.industry-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-gray);
}

.industry-list li::before {
  content: '�';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-steel-blue);
  font-weight: 700;
}

.industry-result {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  color: var(--color-text-dark);
}

.industry-result strong {
  color: var(--color-steel-blue-dark);
}

.industry-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.industry-process-step {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.05);
}

.industry-process-step h4 {
  color: var(--color-steel-blue);
  margin-bottom: 0.75rem;
}

.industry-tools {
  margin: 4rem 0 0;
}

.industry-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-tool {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.05);
}

.industry-tool h4 {
  color: var(--color-steel-blue-dark);
  margin-bottom: 0.75rem;
}

.industry-objections {
  margin-top: 4rem;
}

.industry-objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.industry-objection {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(58,123,213,0.10);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.industry-objection strong {
  display: block;
  color: var(--color-steel-blue-dark);
  margin-bottom: 0.5rem;
}

.industry-cta {
  margin-top: 4rem;
}

.industry-cta .premium-card {
  text-align: center;
}

.industry-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

/* --- Philosophy Section --- */
.section-alt {
  background: var(--gradient-medical);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* --- AI Section --- */
.section-dark {
  background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.comparison-grid-single {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.comparison-block {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.comparison-badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(58,123,213,0.08);
  color: var(--color-steel-blue);
  font-weight: 600;
}

.comparison-old {
  border-top: 3px solid rgba(108, 117, 125, 0.25);
}

.comparison-new {
  border-top: 3px solid var(--color-gold);
}

/* --- Cases Section --- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.case-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.case-header {
  background: var(--gradient-blue-accent);
  color: white;
  padding: 1.5rem 2rem;
}

.case-header h3 {
  color: white;
  margin-bottom: 0;
}

.case-section {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.case-section:last-child {
  border-bottom: none;
}

.case-section-title {
  font-weight: 600;
  color: var(--color-steel-blue);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-blue-accent);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-info strong {
  color: var(--color-steel-blue-dark);
  font-size: 1rem;
}

.author-info span {
  color: var(--color-text-gray);
  font-size: 0.9rem;
}

/* --- Process Section --- */
.process-grid {
  margin: 3rem 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border-left: 4px solid var(--color-steel-blue);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-steel-blue);
  opacity: 0.3;
  min-width: 60px;
}

/* --- Contact Section --- */
.contact-direct {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--color-steel-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--color-steel-blue-dark);
  text-decoration: underline;
}

.contact-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- Footer --- */
.footer {
  background: var(--color-steel-blue-dark);
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-gold-light);
}
/* ========================================
   ИСПРАВЛЕНИЕ МАРКЕРОВ СПИСКОВ
   Заменяем проблемные Unicode-символы
   ======================================== */

.industry-list li::before {
  content: '-' !important;
  position: absolute;
  left: 0;
  color: #3a7bd5;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
}

.premium-card ul li::before,
.testimonial-card ul li::before,
.case-section ul li::before {
  content: '-' !important;
  position: absolute;
  left: 0;
  color: #3a7bd5;
  font-weight: 700;
}

/* Убираем все Unicode-маркеры */
.industry-list li,
.premium-card li,
.testimonial-card li,
.case-section li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
/* ФИКС МОБИЛЬНОГО СИМУЛЯТОРА */
@media (max-width: 900px) {
  .chart-container {
    display: none !important;
  }
  
  .mobile-metrics {
    display: grid !important;
  }
  
  .simulator-dashboard {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
  }
  
  .metric-value {
    font-size: 1.5rem !important;
  }
}

/* ФИКС МОБИЛЬНОГО СИМУЛЯТОРА */
@media (max-width: 900px) {
  .chart-container {
    display: none !important;
  }
  
  .mobile-metrics {
    display: grid !important;
  }
  
  .simulator-dashboard {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
  }
  
  .metric-value {
    font-size: 1.5rem !important;
  }
}
/* Тизер инструментов на главной */
#tools-teaser .tech-grid {
  margin: 2rem 0;
}

#tools-teaser .tech-item {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#tools-teaser .tech-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(37, 99, 235, 0.2);
}

#tools-teaser .tech-item h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
/* ========================================
   HERO SECTION v2 - ФОН И АНИМАЦИИ
   ======================================== */

.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Анимированные "пузыри" на фоне */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
  animation: float 25s infinite ease-in-out reverse;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* Блок статистики */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-subtle);
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  color: var(--color-text-gray);
  font-size: 0.95rem;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .hero-stat-value {
    font-size: 2rem;
  }
  
  .hero-stat-label {
    font-size: 0.85rem;
  }
}

/* Адаптив для статистики */
@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem !important;
    padding: 1rem !important;
  }
  
  .hero-stat-value {
    font-size: 1.5rem !important;
    line-height: 1.1;
  }
  
  .hero-stat-label {
    font-size: 0.8rem !important;
  }
  
  .hero-stat-item {
    min-width: 100px;
  }
}
/* МОБИЛЬНОЕ МЕНЮ - ФИКС v2 */
.menu-toggle__line {
  background-color: #ffffff !important;
}

@media (max-width: 900px) {
  .nav, .nav__inner {
    background: rgba(255, 255, 255, 0.98) !important;
  }
  .nav a, .nav__inner a {
    color: #0f172a !important;
  }
  .header .nav a {
    color: #0f172a !important;
  }
}
 /* Симулятор: сетка и липкий график */
.simulator-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.simulator-visual {
  position: sticky;
  top: 120px;
  align-self: start;
  height: fit-content;
  z-index: 10;
}

.chart-y-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .simulator-controls {
    grid-template-columns: 1fr !important;
  }
  .simulator-visual {
    position: static !important;
  }
  .chart-y-label {
    display: none;
  }
}