/* =========================
   Base
========================= */
html {
width: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: black;
  color: #fff;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   Typography
========================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  margin: 0 0 20px;
  color: #fff;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff, #bcb8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 56px;
  background: linear-gradient(90deg, #ffffff, #bcb8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 42px;
  font-weight: 800;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 700;
}

p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 16px;
}
.small,
.cta-mini-label {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.85;
}
}
/* === Единый header для секций === */
.section-header {
  text-align: center!important;
  margin-bottom: 40px;
}

.section-header .section-label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #66A8F3, #009DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header .section-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 180px; /* или 160%, если адаптивнее */
  height: 2px;
  background: radial-gradient(
    90% 80% at 50% 50%,       /* эллиптическая форма */
    rgba(67, 100, 247, 1) 0%, /* #4364F7 — яркий центр */
    rgba(67, 100, 247, 0.4) 35%,
    rgba(67, 100, 247, 0.1) 60%,
    rgba(67, 100, 247, 0) 100%
  );
  filter: drop-shadow(0 3px 8px rgba(67, 100, 247, 0.6));
  border-radius: 1px;
}

.section-header h2 {
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0px;
}

.section-header p {
  line-height: 1.6;
  color: #C0BECE;
  max-width: 524px;
  margin: 0 auto; 
}

/* Текстовые выравнивания */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Мобильная адаптация */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  p { font-size: 15px; }
}

section {
  background: black!important;
}
