/* --- Глобальные переменные --- */
:root {
  --primary-blue: #007aff;
  --accent-cyan: #00d4ff;
  --bg-dark: #0a1128;
  --bg-light-blue: #e3f2fd;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --radius-lg: 35px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Кнопки --- */
.btn {
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn--header {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

.btn--header:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 122, 255, 0.4);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header__container {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  width: 35px;
  height: 35px;
}

.header__logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.header__menu {
  display: flex;
  gap: 25px;
}

.header__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.header__link:hover {
  color: var(--accent-cyan);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__burger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

/* --- Footer --- */
.footer {
  background: #060b1a;
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__description {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__title {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--accent-cyan);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__link:hover {
  color: white;
  padding-left: 5px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 20px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- Mobile --- */
@media (max-width: 992px) {
  .header__nav {
    display: none; /* Бургер логика в JS */
  }
  .header__burger {
    display: flex;
  }
  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  .header__logo-text {
    display: none;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid var(--primary-blue);
  color: var(--accent-cyan);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem); /* Гигантский размер */
  line-height: 1.1;
  margin-bottom: 30px;
}

.text-gradient {
  background: linear-gradient(to right, var(--accent-cyan), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 20px;
}

/* Кнопки Hero */
.btn--primary {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 15px 30px rgba(0, 122, 255, 0.3);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent-cyan);
}

/* Visual Elements */
.hero__visual {
  position: relative;
  height: 500px;
}

.hero__main-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(40px);
  border-radius: 50%;
}

.glass-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  z-index: 3;
  transition: var(--transition);
}

.hero__card--1 {
  top: 10%;
  right: 0;
  transform: rotate(5deg);
}
.hero__card--2 {
  bottom: 15%;
  left: -20px;
  transform: rotate(-5deg);
}

.glass-card i {
  color: var(--accent-cyan);
  width: 30px;
  height: 30px;
}

/* Glow Backgrounds */
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}

.hero__glow--1 {
  top: -200px;
  right: -100px;
  background: rgba(0, 212, 255, 0.15);
}

.hero__glow--2 {
  bottom: -100px;
  left: -100px;
  background: rgba(0, 122, 255, 0.1);
}

@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 50px;
  }
  .hero__subtitle {
    margin: 0 auto 40px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    display: none;
  }
}

/* --- Секция Стратегии --- */
.strategies {
  padding: 120px 0;
  position: relative;
}

.strategies__header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 25px;
}

.text-blue {
  color: var(--primary-blue);
}

.strategies__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Асимметричная сетка */
.strategies__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 30px;
}

.strategy-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Ломаем сетку через grid-column/row */
.strategy-card--large {
  grid-column: span 7;
  grid-row: span 3;
}

.strategy-card--slim {
  grid-column: span 5;
  grid-row: span 1.5;
}

.strategy-card--medium {
  grid-column: span 12;
  margin-top: 20px;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

/* Hover-эффекты */
.strategy-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px rgba(0, 122, 255, 0.15);
}

.strategy-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-cyan);
  transition: var(--transition);
}

.strategy-card:hover .strategy-card__icon {
  background: var(--primary-blue);
  color: white;
  transform: rotateY(180deg); /* Поворот иконки */
}

.strategy-card__title {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.strategy-card__text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.strategy-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.strategy-card__link svg {
  width: 18px;
  transition: var(--transition);
}

.strategy-card__link:hover svg {
  transform: translateX(5px);
}

/* Кнопка в медиум карточке */
.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Адаптивность для сетки */
@media (max-width: 992px) {
  .strategy-card--large,
  .strategy-card--slim,
  .strategy-card--medium {
    grid-column: span 12;
  }
  .strategy-card--medium {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Секция Аналитика --- */
.analytics {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.analytics__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Визуальный блок с перекрытием */
.analytics__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.analytics__main-img {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 550px;
  border-radius: 50px;
  overflow: visible; /* Чтобы плашки вылетали за края */
  z-index: 2;
}

.analytics__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}

.analytics__blob {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(0, 122, 255, 0.2) 0%,
    transparent 70%
  );
  top: -10%;
  left: -10%;
  z-index: 1;
  animation: pulse 8s infinite alternate;
}

/* Парящие плашки */
.stat-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  padding: 20px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: var(--transition);
}

.stat-pill--1 {
  top: 15%;
  left: -60px;
}

.stat-pill--2 {
  bottom: 20%;
  right: -40px;
}

.stat-pill:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-pill__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.stat-pill__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Контент */
.analytics__content {
  flex: 1.2;
  z-index: 2;
}

.analytics__text-block {
  margin-bottom: 30px;
}

.analytics__text-block p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.analytics__features {
  margin-bottom: 40px;
}

.analytics__feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.analytics__feature-item svg {
  color: var(--primary-blue);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Адаптивность */
@media (max-width: 992px) {
  .analytics__container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .analytics__visual {
    margin-top: 60px;
    width: 100%;
  }
  .stat-pill--1 {
    left: 0;
  }
  .stat-pill--2 {
    right: 0;
  }
  .analytics__feature-item {
    justify-content: center;
  }
}

/* --- Секция Масштабирование --- */
.growth {
  padding: 120px 0;
  background-color: #f8fbff; /* Очень светлый голубой фон */
  color: var(--bg-dark); /* Темный текст для контраста */
  border-radius: 80px; /* Сильное закругление всей секции */
  margin: 40px 20px;
}

.growth__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.growth__description {
  font-size: 1.2rem;
  color: #556b8d;
  margin-top: 20px;
}

.growth__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.growth-step {
  position: relative;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 45px; /* Гипер-округление */
  box-shadow: 0 20px 60px rgba(0, 122, 255, 0.05);
  transition: var(--transition);
  border: 1px solid transparent;
}

.growth-step:hover {
  transform: translateY(-15px);
  border-color: rgba(0, 122, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 122, 255, 0.1);
}

.growth-step__number {
  position: absolute;
  top: -20px;
  right: 40px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 122, 255, 0.05);
  line-height: 1;
  transition: var(--transition);
}

.growth-step:hover .growth-step__number {
  color: rgba(0, 122, 255, 0.1);
  transform: scale(1.1);
}

.growth-step__icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light-blue);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.growth-step__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--bg-dark);
}

.growth-step__text {
  color: #64748b;
  line-height: 1.7;
}

/* CTA блок внизу */
.growth__footer {
  display: flex;
  justify-content: center;
}

.growth__cta-box {
  background: #ffffff;
  padding: 30px 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.growth__cta-box p {
  font-weight: 600;
  color: #475569;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .growth__steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .growth__cta-box {
    flex-direction: column;
    border-radius: 40px;
    text-align: center;
    padding: 40px;
  }
}

/* --- Секция Кейсы --- */
.cases {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.cases__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}

.cases__intro {
  max-width: 450px;
  color: var(--text-muted);
  font-size: 1.1rem;
  border-left: 2px solid var(--primary-blue);
  padding-left: 25px;
}

/* Сетка Кейсов */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 300px;
  gap: 30px;
}

.case-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.case-item--tall {
  grid-row: span 2;
}

.case-item__image {
  width: 100%;
  height: 100%;
  position: relative;
}

.case-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Оверлей с контентом */
.case-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 17, 40, 0.9) 10%,
    transparent 100%
  );
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.8;
  transition: var(--transition);
}

.case-item__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.case-item__name {
  font-size: 1.8rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: var(--transition);
}

.case-item__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.case-item__btn {
  font-weight: 700;
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
  opacity: 0;
  transition: var(--transition);
}

/* Hover эффекты */
.case-item:hover .case-item__image img {
  transform: scale(1.1);
}

.case-item:hover .case-item__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 122, 255, 0.8) 0%,
    rgba(10, 17, 40, 0.4) 100%
  );
  opacity: 1;
}

.case-item:hover .case-item__name,
.case-item:hover .case-item__desc,
.case-item:hover .case-item__btn {
  opacity: 1;
  transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 850px) {
  .cases__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cases__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
  }
  .case-item--tall {
    grid-row: span 1;
  }
}

/* --- Секция Контактов --- */
.contact {
  padding: 100px 0;
  position: relative;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact__text {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.contact__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact__value {
  font-weight: 700;
}

/* Стили формы */
.contact__form-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 50px;
  border-radius: var(--radius-lg);
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 18px 25px;
  border-radius: 30px; /* Округлые формы */
  color: white;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 122, 255, 0.2);
}

/* Кастомные чекбоксы */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 15px;
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}

.custom-checkbox input:checked + .checkmark {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.custom-checkbox input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Капча-бокс */
.captcha-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.btn--full {
  width: 100%;
  margin-top: 10px;
}

/* Сообщение об успехе */
.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  display: none; /* Скрыто по умолчанию */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 10;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: #4ade80;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact__item {
    justify-content: center;
  }
}

/* --- Cookie Pop-up --- */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 17, 40, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 20px 30px;
  border-radius: 25px;
  z-index: 2000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup--active {
  transform: translateY(0);
}

.cookie-popup__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-popup p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
}
.cookie-popup a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* --- Валидация формы --- */
.form-input.error {
  border-color: #ff4d4d !important;
  background: rgba(255, 77, 77, 0.05);
}

.error-message {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: -15px;
  margin-bottom: 15px;
  padding-left: 15px;
  display: none;
}

/* --- Стили для страниц политик (privacy.html и т.д.) --- */
.pages {
  padding: 150px 0 100px;
  background: var(--bg-dark);
}

.pages h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: var(--accent-cyan);
}

.pages h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--primary-blue);
}

.pages p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.pages ul {
  margin-bottom: 30px;
  list-style: none;
}

.pages li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.pages li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.pages strong {
  color: white;
}
.pages a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* Вспомогательные классы для анимации появления */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Класс для фиксации экрана при открытом мобильном меню */
.no-scroll {
  overflow: hidden;
}

/* Стили для активного бургер-меню (пример) */
.header__nav--active {
  display: flex !important; /* Или ваша логика видимости */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
