img,
svg,
video {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Переменные проекта */
:root {
  --bg-main: #0b0d13;
  --bg-glow-1: rgba(24, 63, 169, 0.4);
  --bg-glow-2: rgba(15, 23, 42, 0.8);

  /* Интегрирован синий цвет из твоего макета */
  --accent-blue: #4383ec;
  --accent-gradient-start: #6ea2f5;
  --accent-gradient-end: #4383ec;

  --text-primary: #ffffff;
  --text-muted: #94a3b8;
  --text-light-gray: #e0e0e0;

  --border-light: rgba(255, 255, 255, 0.15);
  --border-hover: rgba(255, 255, 255, 0.3);
}

/* Обнуление и база */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Глубокий сине-черный бэкграунд */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 80% 60%,
      var(--bg-glow-1) 0%,
      rgba(11, 13, 19, 0) 60%
    ),
    radial-gradient(circle at 20% 20%, var(--bg-glow-2) 0%, var(--bg-main) 70%);
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  /* Изначально в самом верху шапка полностью прозрачная */
  background-color: transparent;
  box-shadow: none;

  /* Плавный переход для скрытия/появления и изменения фона */
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* КЛАСС ДЛЯ СКРЫТИЯ (остается без изменений) */
.site-header.is-hidden {
  transform: translateY(-100%);
}

/* НОВЫЙ КЛАСС: Включается, когда мы отъехали от верха страницы */
.site-header.is-scrolled {
  background-color: rgba(
    13,
    14,
    18,
    0.85
  ); /* Твой фирменный темный цвет с прозрачностью 85% */
  backdrop-filter: blur(12px); /* Стильное размытие контента под шапкой */
  -webkit-backdrop-filter: blur(12px); /* Поддержка для Safari */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4); /* Мягкая тень, отделяющая шапку от сайта */
  border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Едва заметная нижняя полосочка */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.logo img {
  height: 32px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--text-primary);
}

/* Контентная зона по центру */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 0 24px;
  text-align: center;
}

.hero-container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Заголовок H1 */
.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Стильный акцент на важные слова */
.accent-text {
  font-style: italic;

  /* Задаем фоновый градиент */
  background: linear-gradient(
    90deg,
    var(--accent-gradient-start),
    var(--accent-gradient-end)
  );

  /* Магия обрезки градиента строго по форме букв */
  -webkit-background-clip: text;
  background-clip: text;

  /* Делаем саму заливку букв прозрачной, чтобы просвечивал фон-градиент */
  -webkit-text-fill-color: transparent;
  color: transparent; /* Фолбэк для безопасности */

  /* Подстраховка: если браузер совсем древний и не умеет в background-clip, 
     он просто покажет сплошной цвет вместо невидимого текста */
  @supports not (-webkit-background-clip: text) {
    background: none;
    color: var(--accent-blue);
  }
}

/* Подзаголовок */
.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Кнопки */
.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-main);
  border: none;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

/* Адаптив под мобилки */
@media (max-width: 768px) {
  .site-header {
    padding: 20px 24px;
  }
  .nav-menu,
  .header-action {
    display: none;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
}

/* Блок About */
.about-section {
  padding: 120px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Верхний ряд: заголовок слева, текст справа */
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
}

.about-title-block {
  flex: 1;
}

.section-tag {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-intro {
  flex: 1;
  max-width: 600px;
}

.about-intro p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light-gray);
  font-weight: 300;
}

.about-intro strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Сетка из 4 карточек в один ряд */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Стильная B2B карточка */
.about-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

/* Эффект при наведении на карточку */
.about-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

/* Шапка внутри карточки (номер и тайтл) */
.card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.card-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue);
  font-family: monospace;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* Текст внутри карточки */
.card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

/* Адаптивность для планшетов и мобилок */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 24px;
  }
  .section-title {
    font-size: 32px;
  }
  .about-intro p {
    font-size: 16px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 24px;
  }
}

/* Секция Solutions */
.solutions-section {
  padding: 120px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.solutions-header {
  margin-bottom: 80px;
  max-width: 800px;
}

.solutions-intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 16px;
}

.solutions-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Строка: Проблема -> Разделитель -> Решение */
.solution-row {
  display: grid;
  grid-template-columns: 1fr 80px 1.5fr;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 48px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.solution-row:hover {
  border-color: rgba(67, 131, 236, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

/* Колонка Проблемы */
.solution-pain {
  display: flex;
  flex-direction: column;
}

.pain-label {
  font-size: 12px;
  font-weight: 600;
  color: #ef4444; /* Красный маркер для проблемы */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pain-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pain-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Декоративный коннектор (Мост между блоками) */
.solution-bridge {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
}

.bridge-line {
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, #ef4444, var(--accent-blue));
  opacity: 0.4;
}

/* Колонка Решения */
.solution-cure {
  display: flex;
  flex-direction: column;
}

.cure-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cure-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cure-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light-gray);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Список подпунктов */
.cure-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.cure-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  position: relative;
  padding-left: 24px;
}

/* Кастомный маркер для списков решений */
.cure-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-weight: 600;
}

.cure-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .solution-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .solution-bridge {
    display: none; /* Убираем вертикальную линию на планшетах/мобильных */
  }

  .pain-title {
    font-size: 24px;
  }

  .cure-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 60px 24px;
  }

  .solutions-header {
    margin-bottom: 48px;
  }

  .solution-row {
    padding: 24px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   Секция Why Choose Us (Premium Редизайн)
   ========================================================================== */
.benefits-section {
  padding: 140px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* Шапка секции */
.benefits-header {
  margin-bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.benefits-main-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.benefits-decorative-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
}

/* Сетка контента */
.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* Контейнер карточек (Левая сторона) */
.benefits-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Карточка отдельного преимущества */
.benefit-item-card {
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  gap: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(67, 131, 236, 0.2);
  transform: translateX(8px);
}

/* Тонкий неоновый индикатор при ховере */
.benefit-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #4383ec;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item-card:hover .benefit-card-accent {
  opacity: 1;
}

/* Текст внутри карточек преимуществ */
.benefit-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.stat-number {
  color: #4383ec; /* Наш синий цвет */
  font-weight: 800;
}

.benefit-card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #8a99ad;
  margin: 0;
}

/* Правый блок: Крупное заявление (Тонированная панель) */
.benefits-statement-wrapper {
  position: relative;
  height: 100%;
}

/* Мягкое фоновое свечение позади карточки заявления */
.statement-glow-effect {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: #4383ec;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}

.benefits-statement-card {
  position: relative;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(
    145deg,
    rgba(20, 24, 33, 0.6) 0%,
    rgba(10, 12, 16, 0.9) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}

/* Декоративная кавычка для акцента */
.quote-icon {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(67, 131, 236, 0.15);
  position: absolute;
  top: 24px;
  left: 40px;
  font-weight: 800;
  user-select: none;
}

.statement-text {
  position: relative;
  font-size: 24px;
  line-height: 1.6;
  color: #e2e8f0;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Адаптивность для планшетов и смартфонов */
@media (max-width: 1100px) {
  .benefits-section {
    padding: 100px 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-statement-card {
    min-height: auto;
    padding: 56px 40px;
  }

  .benefit-item-card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 70px 24px;
  }

  .benefits-header {
    margin-bottom: 48px;
  }

  .benefits-decorative-line {
    display: none;
  }

  .benefit-item-card {
    padding: 24px;
    border-radius: 12px;
  }

  .statement-text {
    font-size: 19px;
  }
}

/* ==========================================================================
   Секция IT Infrastructure Solutions (Premium Hub)
   ========================================================================== */
.it-solutions-section {
  padding: 140px 80px;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
}

.it-solutions-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Левый сайдбар с описанием */
.it-solutions-sidebar {
  position: sticky;
  top: 100px;
}

.it-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #4383ec;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.it-main-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.it-main-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #8a99ad;
  margin: 0;
}

/* Правая сетка хаба */
.it-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Общий стиль интерактивных карт */
.it-hub-card {
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

/* Локальные неоновые свечения внутри карт */
.it-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(67, 131, 236, 0.06),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.it-hub-card:hover {
  border-color: rgba(67, 131, 236, 0.25);
  transform: translateY(-4px);
}

.it-hub-card:hover .it-card-glow {
  opacity: 1;
}

/* Асимметрия размеров */
.card-large {
  grid-column: span 2;
  min-height: 280px;
}

.card-medium {
  grid-column: span 1;
  min-height: 320px;
}

/* --- КАРТОЧКА TECH OPS (ЦЕНТРИРУЕМ ТЕКСТ ПО ВЕРТИКАЛИ) --- */
.card-compact .it-card-content-vertical {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Равномерно распределяем заголовок и описание, убирая пустоту внизу */
  justify-content: center;
  gap: 16px; /* Аккуратный отступ между заголовком и текстом */
  box-sizing: border-box;
}

/* Убираем лишние дефолтные маргины у текста, чтобы центрирование было идеальным */
.card-compact .it-compact-header,
.card-compact .it-card-text {
  margin: 0;
}

/* Контент текстовых карт */
.it-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.it-card-num {
  font-size: 16px;
  font-weight: 700;
  color: #4383ec;
  line-height: 1.2;
}

.it-hub-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.it-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #8a99ad;
  margin: 0;
}

/* Стилизация компактной карты Tech Ops */
.it-card-content-vertical {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.it-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.it-compact-badge {
  font-size: 10px;
  font-weight: 800;
  background: rgba(67, 131, 236, 0.15);
  color: #4383ec;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.it-compact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  width: 100%;
}

.it-action-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 16px;
  transition: background 0.3s ease;
}

.it-action-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-compact:hover .it-action-line {
  background: rgba(67, 131, 236, 0.4);
}

.card-compact:hover .it-action-arrow {
  background: #4383ec;
  border-color: #4383ec;
  transform: rotate(-45deg);
}

.it-hub-media-card {
  grid-column: 2 / span 1;
  height: 240px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  width: 100%;
}

.it-hub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0) brightness(0.65);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.it-hub-media-card:hover .it-hub-img {
  transform: scale(1.04);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0a0c10 20%, rgba(10, 12, 16, 0.1));
  z-index: 1;
}

.media-content {
  position: absolute;
  /* Жёстко сажаем панель на самый дефолтный низ карточки */
  bottom: 0;
  left: 0;
  right: 0;
  /* Задаем одинаковые отступы со всех сторон, чтобы текст встал ровно по центру */
  padding: 20px 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.media-tag {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Слайдер-пульсация активного статуса */
.pulse-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 12px #10b981;
  animation: telemetryPulse 2s infinite ease-in-out;
}

.pulse-text {
  font-size: 12px;
  color: #8a99ad;
}

@keyframes telemetryPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
    box-shadow: 0 0 16px #10b981;
  }
}

/* Адаптивность IT Hub */
@media (max-width: 1100px) {
  .it-solutions-section {
    padding: 100px 40px;
  }
  .it-solutions-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .it-solutions-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .it-solutions-section {
    padding: 70px 24px;
  }
  .it-solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-large,
  .card-medium,
  .card-compact,
  .it-hub-media-card {
    grid-column: span 1;
  }
  .it-hub-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   СЕКЦИЯ SYSTEMS & OPTIMIZATION (В СТИЛЕ IT HUB)
   ========================================================================== */
.systems-optimization-section {
  padding: 140px 80px; /* Выровнял глобальные отступы под общий стиль */
  max-width: 1440px;
  margin: 0 auto;
  background-color: transparent;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Крупный неоновый заголовок */
.section-title-large {
  font-size: clamp(
    36px,
    4vw,
    52px
  ); /* Синхронизировал размер с .it-main-title */
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: #ffffff;
  line-height: 1.1;
}

/* Сетка карточек */
.optimization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Карточка в стиле IT-Hub */
.optimization-card {
  position: relative;
  background: rgba(
    255,
    255,
    255,
    0.01
  ); /* Родной полупрозрачный фон из IT-Hub */
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Интерактивный ховер на карточку */
.optimization-card:hover {
  border-color: rgba(67, 131, 236, 0.25); /* Родной синий неоновый бордер */
  transform: translateY(-4px);
}

/* Позиционирование номера и шапки */
.card-number {
  font-size: 16px;
  font-weight: 700;
  color: #4383ec; /* Синий акцент для номеров */
  letter-spacing: 0.05em;
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

/* Тонкая минималистичная стрелка в круге */
.card-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.optimization-card:hover .card-arrow {
  background-color: #4383ec;
  border-color: #4383ec;
  transform: rotate(-45deg); /* Поворот стрелки как в блоке Tech Ops */
}

/* Текст описания */
.card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #8a99ad; /* Серый читаемый текст из оригинального стайлгайда */
  margin: 0;
  font-weight: 400;
}

/* Адаптив под планшеты и мобилки */
@media (max-width: 1100px) {
  .systems-optimization-section {
    padding: 100px 40px;
  }
  .optimization-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .systems-optimization-section {
    padding: 70px 24px;
  }
  .optimization-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-title-large {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   СЕКЦИЯ MARKETING & BRANDING (PREMIUM INTERACTIVE DROPDOWN)
   ========================================================================== */
.marketing-brand-section {
  padding: 140px 80px;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
}

.marketing-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Сайдбар слева */
.marketing-sidebar {
  position: sticky;
  top: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.marketing-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #4383ec;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.marketing-main-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.marketing-main-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #8a99ad;
  margin: 0;
}

/* Правая сетка */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

/* Интерактивная карточка */
.marketing-interactive-card {
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition:
    border-color 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Верхняя часть карточки */
.m-card-static-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.m-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-card-num {
  font-size: 16px;
  font-weight: 700;
  color: #4383ec;
}

.m-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* Круглая стрелка */
.m-card-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-card-arrow svg {
  transform: rotate(45deg); /* Изначально смотрит в угол */
  transition: transform 0.3s ease;
}

/* ==========================================================================
   ЛОГИКА РАСКРЫТИЯ КОНТЕНТА (GRID-METHOD)
   ========================================================================== */
.m-card-expandable-body {
  display: grid;
  grid-template-rows: 0fr; /* Текст скрыт */
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-list-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Элементы списка внутри */
.m-list-item {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

.m-list-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.m-list-item p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #8a99ad;
  margin: 0;
}

/* ==========================================================================
   СОСТОЯНИЯ ПРИ НАВЕДЕНИИ И КЛИКЕ
   ========================================================================== */
.marketing-interactive-card:hover {
  border-color: rgba(67, 131, 236, 0.25);
  transform: translateY(-4px);
}

.marketing-interactive-card:hover .m-card-arrow {
  background-color: #4383ec;
  border-color: #4383ec;
}

.marketing-interactive-card:hover .m-card-arrow svg,
.marketing-interactive-card.is-active .m-card-arrow svg {
  transform: rotate(0deg); /* Направляем прямо при раскрытии */
}

/* Раскрываем контейнер */
.marketing-interactive-card:hover .m-card-expandable-body,
.marketing-interactive-card.is-active .m-card-expandable-body {
  grid-template-rows: 1fr;
}

/* Проявляем внутренние пункты */
.marketing-interactive-card:hover .m-list-item,
.marketing-interactive-card.is-active .m-list-item {
  opacity: 1;
  transform: translateY(0);
}

/* Появление с задержкой сверху вниз для красоты */
.marketing-interactive-card:hover .m-list-inner,
.marketing-interactive-card.is-active .m-list-inner {
  padding-top: 32px; /* Появляется плавный отступ перед списком */
}

.marketing-interactive-card:hover .m-list-item:nth-child(1),
.marketing-interactive-card.is-active .m-list-item:nth-child(1) {
  transition-delay: 0.05s;
}
.marketing-interactive-card:hover .m-list-item:nth-child(2),
.marketing-interactive-card.is-active .m-list-item:nth-child(2) {
  transition-delay: 0.1s;
}
.marketing-interactive-card:hover .m-list-item:nth-child(3),
.marketing-interactive-card.is-active .m-list-item:nth-child(3) {
  transition-delay: 0.15s;
}
.marketing-interactive-card:hover .m-list-item:nth-child(4),
.marketing-interactive-card.is-active .m-list-item:nth-child(4) {
  transition-delay: 0.2s;
}

/* ==========================================================================
   АДАПТИВНОСТЬ
   ========================================================================== */
@media (max-width: 1100px) {
  .marketing-brand-section {
    padding: 100px 40px;
  }
  .marketing-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .marketing-sidebar {
    position: static;
  }
  .marketing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .marketing-brand-section {
    padding: 70px 24px;
  }
  .marketing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .marketing-interactive-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   ENGINE HERO SECTION STYLES
   ========================================================================== */
.engine-hero-section {
  padding: 120px 0 80px 0;
  background-color: #d1d7d5; /* Светлый серо-зеленый оттенок как на скрине */
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.engine-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Левая текстовая колонка */
.engine-text-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.engine-descr {
  font-size: 18px;
  line-height: 1.45;
  color: #2b2b2b;
  max-width: 520px;
  margin-bottom: 60px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.engine-main-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(65px, 8.5vw, 115px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #111111;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.engine-line {
  display: block;
  transform: translateZ(0);
  will-change: transform, opacity, letter-spacing;
}

/* Обычный hover эффект при наведении мыши (интерактивный микро-сдвиг) */
.engine-line:nth-child(1) {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.engine-line:nth-child(2) {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.engine-line:nth-child(3) {
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.engine-hero-section:hover .engine-line:nth-child(odd) {
  transform: translateX(8px);
}

.engine-hero-section:hover .engine-line:nth-child(2) {
  transform: translateX(-4px);
}

/* Главное слово-акцент: плавно меняет межбуквенный интервал от скролла */
.engine-dynamic-word {
  letter-spacing: var(--engine-tracking, -0.04em);
  color: #000000;
}

/* Правая медиа колонка с 3D эффектом */
.engine-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Включаем перспективу для 3D наклона */
  perspective: 1000px;
}

.engine-tilt-wrapper {
  width: 100%;
  max-width: 520px;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.engine-image-card {
  position: relative;
  width: 100%;
  padding-top: 105%; /* Формат карточки близок к квадрату */
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: translateZ(0); /* Фикс багов рендеринга в Safari */
}

.engine-image-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

/* При наведении слегка увеличиваем саму картинку внутри рамки */
.engine-tilt-wrapper:hover .engine-image-card img {
  scale: 1.03;
}

/* Интерактивный блик сверху картинки */
.engine-card-flare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle 150px at var(--flare-x, 50%) var(--flare-y, 50%),
    rgba(255, 255, 255, 0.25),
    transparent 80%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  mix-blend-mode: overlay;
}

.engine-tilt-wrapper:hover .engine-card-flare {
  opacity: 1;
}

/* Адаптив под планшеты и мобилки */
@media (max-width: 992px) {
  .engine-hero-section {
    padding: 80px 0;
  }

  .engine-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .engine-descr {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .engine-media-col {
    order: -1; /* На мобилках картинка будет сверху текста */
  }
}

.accent-word {
  color: transparent;
  -webkit-text-stroke: 2px #111111; /* Делает слово контурным (пустым внутри) */
}

/* ==========================================================================
   0.6. MEET THE TEAM СТИЛИ (УНИКАЛЬНОЕ СВЕЧЕНИЕ)
   ========================================================================== */
.team-section {
  background-color: #111111;
  padding: 100px 40px;
  color: #ffffff;
  padding-bottom: 60px; /* Аккуратный вынос карточек */
  border-bottom: none;
}

.team-main-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(50px, 7vw, 90px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 60px 0;
  letter-spacing: -0.03em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* Базовая карточка */
.team-card {
  background-color: #a3b4c1; /* */
  border-radius: 24px;
  padding: 20px;
  color: #111111;
  box-sizing: border-box;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;

  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease,
    border-color 0.4s ease;
}

/* --------------------------------------------------------------------------
   ОБНОВЛЕННОЕ ТЕМНО-СИНЕЕ СВЕЧЕНИЕ ПРИ НАВЕДЕНИИ И АКТИВНОСТИ
   -------------------------------------------------------------------------- */

/* 1. Снижана (Глубокий сине-фиолетовый оттенок) */
.team-grid .team-card:nth-child(1):hover,
.team-grid .team-card:nth-child(1).is-active {
  transform: translateY(-8px);
  border-color: #2f54eb;
  box-shadow: 0 20px 40px rgba(47, 84, 235, 0.25);
}

/* 2. Катерина (Насыщенный темно-синий электрик) */
.team-grid .team-card:nth-child(2) {
  border-color: #1d39c4; /* Постоянная аккуратная темно-синяя рамка */
}
.team-grid .team-card:nth-child(2):hover,
.team-grid .team-card:nth-child(2).is-active {
  transform: translateY(-8px);
  border-color: #2f54eb;
  box-shadow: 0 20px 40px rgba(29, 57, 196, 0.35);
}

/* 3. Данил (Полночный синий неоновый акцент) */
.team-grid .team-card:nth-child(3):hover,
.team-grid .team-card:nth-child(3).is-active {
  transform: translateY(-8px);
  border-color: #1d39c4;
  box-shadow: 0 20px 40px rgba(29, 57, 196, 0.25);
}

/* --------------------------------------------------------------------------
   ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ АКТИВНОЙ КНОПКИ-ШЕВРОНА
   -------------------------------------------------------------------------- */
.team-card.is-active .team-arrow-btn {
  background-color: #1d39c4; /* Кнопка активной карточки окрасится в темно-синий */
  border-color: #1d39c4;
}
/* --------------------------------------------------------------------------
   ВНУТРЕННОСТИ КАРТОЧЕК
   -------------------------------------------------------------------------- */
.team-card-visible {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: #111111;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img {
  transform: scale(1.025);
  filter: brightness(0.95);
}

.team-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 4px;
}

.team-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-name {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.team-role {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2b353e;
  margin: 0;
}

.team-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #111111;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}

.team-arrow-btn svg {
  width: 18px;
  height: 18px;
  color: #111111;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hintMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}

.team-card:hover:not(.is-active) .team-arrow-btn svg {
  animation: hintMove 1.2s ease-in-out infinite;
}

/* Раскрытие */
.team-dropdown {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-dropdown-content {
  overflow: hidden;
}

.team-bio {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #1c232a;
  margin: 20px 0 16px 0;
}

.team-capabilities {
  margin: 0;
  padding: 0 0 8px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  padding-top: 16px;
}

.team-capabilities li {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-capabilities li::before {
  content: "—";
}

.team-card.is-active {
  background-color: #b1c2cf;
}

.team-card.is-active .team-dropdown {
  grid-template-rows: 1fr;
}

.team-card.is-active .team-arrow-btn svg {
  animation: none;
  transform: rotate(-180deg);
}

.team-card.is-active .team-arrow-btn {
  background-color: #111111;
  border-color: #111111;
}

.team-card.is-active .team-arrow-btn svg {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   QA BLOCK SECTION STYLES (FLEX INTERACTIVE VARIANT)
   ========================================================================= */
.qa-block-section {
  border-top: none;
  padding: 120px 0 120px 0;
  background-color: #111111;
  position: relative;
  box-sizing: border-box;
}

.qa-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex; /* Выстраивает левую панель и форму в одну линию */
  justify-content: space-between;
  align-items: start;
  gap: 0;
  transition: gap 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Когда кликаем, между текстом и формой появляется красивый отступ */
.qa-grid-container.is-active {
  gap: 80px;
}

.qa-info-panel {
  flex: 1;
  max-width: 550px;
  box-sizing: border-box;
}

/* Форма изначально полностью сжата по ширине и скрыта */
.qa-form-panel {
  flex: 0;
  width: 0;
  max-width: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    flex 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* Когда контейнер активен, форма плавно забирает 50% ширины (flex: 1.1) */
.qa-grid-container.is-active .qa-form-panel {
  flex: 1.1;
  max-width: 650px;
  opacity: 1;
  visibility: visible;
  transition:
    flex 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease 0.2s,
    visibility 0s ease;
}

.qa-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.qa-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(45px, 5vw, 75px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.qa-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 56px;
  height: 34px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    transform 0.5s ease;
  margin-top: 10px;
  flex-shrink: 0;
}

.qa-toggle-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.qa-toggle-btn:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Анимация кнопки */
.qa-grid-container.is-active .qa-toggle-btn {
  transform: rotate(180deg);
  border-color: #ffffff;
  background-color: #ffffff;
  color: #111111;
}

.qa-descr {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ПРАВАЯ ПАНЕЛЬ (ФОРМА) — СТАБИЛЬНЫЙ ВЫЕЗД */
.qa-form-panel {
  /* В закрытом состоянии ширина равна 0, и она полностью скрыта */
  flex: 0;
  width: 0;
  max-width: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  /* Плавная анимация изменения ширины и прозрачности */
  transition:
    flex 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* Когда класс добавлен — форма плавно забирает свою половину пространства */
.qa-grid-container.is-active .qa-form-panel {
  flex: 1.1;
  max-width: 650px; /* Ограничиваем максимальную ширину формы */
  opacity: 1;
  visibility: visible;
  /* Небольшая задержка для прозрачности, чтобы текст появлялся красиво */
  transition:
    flex 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease 0.2s,
    visibility 0s ease;
}

.qa-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap; /* Чтобы заголовок не переносился во время анимации */
}

.qa-inputs-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qa-input-field input,
.qa-input-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-bottom-color 0.3s ease;
}

.qa-input-field textarea {
  height: 90px;
  resize: none;
  line-height: 1.4;
}

.qa-input-field input:focus,
.qa-input-field textarea:focus {
  border-bottom-color: #ffffff;
}

.qa-input-field input::placeholder,
.qa-input-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.qa-submit-btn {
  margin-top: 20px;
  align-self: flex-start;
  background-color: #ffffff;
  color: #111111;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.qa-submit-btn:hover {
  background-color: #f0f0f0;
}

.qa-field-fullwidth {
  grid-column: 1 / -1; /* Растянет текстовое поле на обе колонки */
}

/* Адаптив под мобилки */
@media (max-width: 992px) {
  .qa-block-section {
    padding: 80px 0;
  }
  .qa-grid-container {
    flex-direction: column;
    padding: 0 24px;
  }
  .qa-grid-container.is-active {
    gap: 40px;
  }
  .qa-info-panel {
    max-width: 100%;
  }
  .qa-form-panel {
    width: 100%;
    max-width: 100%;
  }
  .qa-title {
    font-size: 50px;
  }
}

/* ==========================================================================
   AMERICAN B2B FOOTER STYLES (Professional & High-Density)
   ========================================================================== */
.site-footer {
  background-color: #0d0e12; /* Твой фирменный глубокий темный оттенок */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0 0;
  color: #a0a5b5; /* Чуть более читаемый серый для американского аудита */
  font-family: inherit;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
  display: grid;
  /* Четыре колонки: первая (под бренд) чуть шире, остальные равные */
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Логотип и слоган */
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 24px;
  filter: invert(1); /* Оставляем инверсию в белый */
}

.footer-slogan {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #878c9c;
  max-width: 320px;
}

/* Заголовки колонок */
.footer-block-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff; /* Заголовки ярко горят белым */
  margin-bottom: 24px;
  margin-top: 0;
}

/* Списки ссылок */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #878c9c;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px; /* Дорогой микро-эффект при наведении */
}

/* Информационный текст в 4-й колонке */
.footer-info-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 6px 0;
  color: #e2e4e9;
}

.footer-info-text.sub-text {
  color: #878c9c;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Юридические ссылки (выделим их плашками или легким разделителем) */
.legal-links {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  margin-top: 8px;
}

.legal-links a {
  font-size: 0.85rem;
}

/* Нижняя панель копирайта */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
}

.footer-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: #686d7c;
}

.footer-creators {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Идеальный адаптив под планшеты и мобилки */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
} /* ==========================================================================
   AMERICAN B2B FOOTER STYLES (Professional & High-Density)
   ========================================================================== */
.site-footer {
  background-color: #0d0e12; /* Твой фирменный глубокий темный оттенок */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0 0;
  color: #a0a5b5; /* Чуть более читаемый серый для американского аудита */
  font-family: inherit;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
  display: grid;
  /* Четыре колонки: первая (под бренд) чуть шире, остальные равные */
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Логотип и слоган */
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 24px;
  filter: invert(1); /* Оставляем инверсию в белый */
}

.footer-slogan {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #878c9c;
  max-width: 320px;
}

/* Заголовки колонок */
.footer-block-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff; /* Заголовки ярко горят белым */
  margin-bottom: 24px;
  margin-top: 0;
}

/* Списки ссылок */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #878c9c;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px; /* Дорогой микро-эффект при наведении */
}

/* Информационный текст в 4-й колонке */
.footer-info-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 6px 0;
  color: #e2e4e9;
}

.footer-info-text.sub-text {
  color: #878c9c;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Юридические ссылки (выделим их плашками или легким разделителем) */
.legal-links {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
  margin-top: 8px;
}

.legal-links a {
  font-size: 0.85rem;
}

/* Нижняя панель копирайта */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
}

.footer-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: #686d7c;
}

.footer-creators {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Идеальный адаптив под планшеты и мобилки */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 100px; /* Регулируй высоту под свой логотип */
  width: auto;
  display: block;
  object-fit: contain;
  /* ХИТРЫЙ ТРЮК: Инвертирует черный цвет картинки в чисто белый */
  filter: invert(1);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer; /* Делает логотип явно кликабельным */
  text-decoration: none;
}

/* ==========================================================================
   PRIVACY POLICY MODAL STYLES (Clean Minimalist Luxury)
   ========================================================================== */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000; /* Выше хедера и всего остального */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Когда поп-ап активен */
.privacy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Задний фон с размытием */
.privacy-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 11, 14, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Контейнер с текстом */
.privacy-modal-container {
  position: relative;
  background-color: #111216; /* Твой благородный темный фон */
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  border-radius: 4px; /* Строгий минималистичный радиус */
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-modal.is-open .privacy-modal-container {
  transform: scale(1) translateY(0);
}

/* Шапка модалки */
.privacy-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Кнопка закрытия */
.privacy-modal-close {
  background: none;
  border: none;
  color: #878c9c;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.privacy-modal-close:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* Контентная скролл-зона */
.privacy-modal-content {
  padding: 32px;
  overflow-y: auto; /* Если текст большой, он аккуратно скроллится внутри окна */
  color: #a0a5b5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Стилизация скроллбара внутри модалки (под темную тему) */
.privacy-modal-content::-webkit-scrollbar {
  width: 6px;
}
.privacy-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
}
.privacy-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.privacy-date {
  font-size: 0.85rem;
  color: #686d7c;
  margin-top: 0;
  margin-bottom: 24px;
}

.privacy-modal-content h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-modal-content p {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Запрет скролла страницы при открытой модалке */
body.modal-open {
  overflow: hidden;
}

/* По дефолту для всех текстовых элементов на сайте ставим обычную стрелку */
p,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6,
td,
th {
  cursor: default;
}

/* Этот класс будет динамически включать палочку ТОЛЬКО в момент выделения */
.selecting-process {
  cursor: text !important;
}

/* ==========================================================================
   АДАПТИВНАЯ ВЕРСТКА ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ========================================================================== */

/* 1. Смартфоны (вертикальный режим: iPhone, Samsung Galaxy, Pixel и др.) */
@media screen and (max-width: 480px) {
  /* Перестраиваем сетку блоков из колонок в одну линию */
  .your-grid-container {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Уменьшаем гигантские десктопные заголовки */
  h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }
  h2 {
    font-size: 22px !important;
  }

  /* Уменьшаем отступы секций, чтобы пользователю не пришлось листать километры пустоты */
  section {
    padding: 40px 15px !important;
  }
}

/* 2. Планшеты и большие телефоны (горизонтальный режим) */
@media screen and (max-width: 768px) {
  /* Прячем десктопное меню, если планируешь делать мобильное бургер-меню */
  .desktop-nav {
    display: none;
  }
  .burger-button {
    display: block;
  }
}

/* Стили для всплывающего окна успеха */
.qa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.qa-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qa-modal-content {
  background: #111111; /* В цвет твоей темной темы */
  border: 1px solid #222222;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.qa-modal-overlay.is-open .qa-modal-content {
  transform: scale(1);
}

.qa-modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.qa-modal-icon svg {
  width: 28px;
  height: 28px;
}

.qa-modal-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.qa-modal-text {
  color: #aaaaaa;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Базовое скрытие мобильных элементов на десктопе */
.hamburger-btn,
.mobile-menu-overlay {
  display: none;
}

/* ==========================================================================
   МОБИЛЬНАЯ АДАПТАЦИЯ ХЕДЕРА (До 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Скрываем десктопную навигацию и кнопку */
  .nav-menu,
  .header-action {
    display: none !important;
  }

  /* Включаем и стилизуем гамбургер */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Поверх оверлея */
    padding: 0;
  }

  .hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }

  /* Анимация кнопки в крестик при открытии */
  .hamburger-btn.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-btn.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Полноэкранное мобильное меню */
  .mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-overlay.is-open {
    transform: translateY(0);
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 90%;
    text-align: center;
  }

  .mobile-link {
    font-size: 1.3rem;
    color: #888;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .mobile-link:hover,
  .mobile-link:focus {
    color: #fff;
  }

  /* Твоя кнопка-акцент Get in Touch внутри мобильного оверлея */
  .btn-mobile-cta {
    margin-top: 15px;
    padding: 14px 40px;
    background: #fff;
    color: #000 !important;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
/* ==========================================================================
   CUSTOM QUIZ — PREMIUM CYBERTECH DESIGN
   ========================================================================== */
/* ==========================================================================
   PREMIUM QUIZ - INTEGRATED DESIGN
   ========================================================================== */
:root {
  --quiz-bg-dark: #050505;
  --quiz-card-bg: #111111;
  --quiz-border: #222222;
  --quiz-accent: #0088ff;
  --quiz-accent-hover: #33aaff;
  --quiz-text-sub: #aaaaaa;
}

.custom-quiz {
  background-color: var(--quiz-bg-dark);
  padding: 120px 20px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

.quiz-container {
  max-width: 650px;
  margin: 0 auto;
  min-height: 450px;
  position: relative;
}

/* --- Прогресс-бар --- */
.progress-container {
  width: 100%;
  height: 6px;
  background: #1a1a1a;
  margin-bottom: 40px;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--quiz-accent);
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 3px;
}

/* --- Заголовки и текст --- */
.step h3 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.step p.quiz-sub {
  color: var(--quiz-text-sub);
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.step {
  display: none;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transform: translateY(20px);
}
.step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* --- Кнопки вариантов --- */
.options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.options button {
  width: 100%;
  padding: 22px;
  background: var(--quiz-card-bg);
  border: 1px solid var(--quiz-border);
  color: #ffffff;
  font-size: 1.15rem;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.options button:hover {
  border-color: var(--quiz-accent);
  background: #161616;
  transform: translateY(-2px);
}

/* --- Финальная форма --- */
#quizForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

#quizForm input,
#quizForm textarea {
  width: 100%;
  padding: 18px;
  background: var(--quiz-card-bg);
  border: 1px solid var(--quiz-border);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1.1rem;
  box-sizing: border-box;
}

#quizForm input:focus,
#quizForm textarea:focus {
  outline: none;
  border-color: var(--quiz-accent);
}

#quizForm button[type="submit"] {
  width: 100%;
  padding: 20px;
  background: var(--quiz-accent);
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}

#quizForm button[type="submit"]:hover {
  background: var(--quiz-accent-hover);
}

/* --- Мобильная оптимизация --- */
@media (max-width: 768px) {
  .custom-quiz {
    padding: 60px 15px;
  }
  .step h3 {
    font-size: 1.6rem;
  }
  .quiz-sub {
    font-size: 1.1rem;
  }
  .options button {
    padding: 18px;
    font-size: 1rem;
  }
}

.nav-container {
  margin-top: 40px;
  text-align: left;
  width: 100%;
}

.back-btn {
  background: transparent !important;
  border: 1px solid #333 !important;
  color: #666 !important;
  padding: 12px 20px !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s !important;
  display: inline-flex;
  align-items: center;
}

.back-btn:hover {
  color: #fff !important;
  border-color: #0088ff !important;
}

.privacy-modal-content {
  scroll-behavior: smooth;
  height: 80vh; /* ограничение высоты для скролла */
  overflow-y: auto;
}
