/* === Главная: блок «Герой» + преимущества (glassmorphism) === */

.hero-section {
  padding: 80px 20px;
}

.glass-section {
  padding: 80px 20px;
}

.glass-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Hero-сетка: левая колонка + цифры в одну линию справа */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.hero-left {
  padding: 40px;
}

.hero-left .hero-title {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1e293b;
  font-weight: 700;
}

.hero-left .subtitle {
  font-size: 18px;
  opacity: 0.85;
  color: #334155;
  margin: 0;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  border: 1px solid rgba(37, 99, 235, 0.5);
  color: #2563eb;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.08);
}

/* Правая часть — цифры в одну линию [ 95% ] [ 5+ лет ] [ 300+ ] */
.hero-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-card .stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card .stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.stat-card .stat-text strong {
  font-size: 32px;
  color: #2563eb;
  display: block;
  margin-bottom: 4px;
}

.stat-card .stat-text span {
  font-size: 14px;
  opacity: 0.85;
  color: #475569;
}

/* Адаптив */
@media (max-width: 900px) {
  .glass-section {
    padding: 48px 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 28px 24px;
  }

  .hero-left .hero-title {
    font-size: 28px;
  }

  .hero-left .subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-card .stat-text strong {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .glass-section {
    padding: 32px 12px;
  }
}
