/*--------------------------------------------------------------------------
  Сброс стилей и базовые настройки
--------------------------------------------------------------------------*/

:root {
  /* Основные цвета */
  --primary-dark: #070A26;    /* Темно-синий */
  --primary-light: #9d23d2;   /* малиновый */
  --text-white: #FFFFFF;      /* Белый для текста на темном фоне */
  --text-dark: #333333;       /* Темный для основного текста */
  --text-light: #B0BEC5;      /* Светло-серый для вспомогательного текста */
  --bg-light: #F5F7FA;        /* Светло-серый фон */
  --bg-white: #FFFFFF;        /* Белый фон */
  --border-light: #E0E7FF;    /* Светло-синий для бордеров */
  --success: #10B981;         /* Зеленый для элементов успеха */
  --error: #EF4444;           /* Красный для ошибок */
  --warning: #F59E0B;         /* Оранжевый для предупреждений */
  --text-h1-luma: #03f5ec;       /*  для заголовков  */
  --text-malina: #9d23d2;     /*  для фона для светлого текста на темном поле  */
   --text-push: #ff00ff;     /*  для фона для светлого текста на темном поле  */

  /* Размеры текста */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */

  /* Отступы */
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */

  /* Радиусы */
  --radius-sm: 0.125rem;  /* 2px */
  --radius-base: 0.25rem; /* 4px */
  --radius-md: 0.375rem;  /* 6px */
  --radius-lg: 0.5rem;    /* 8px */
  --radius-xl: 0.75rem;   /* 12px */
  --radius-2xl: 1rem;     /* 16px */
  --radius-full: 9999px;  /* Полный радиус (для круглых элементов) */

  /* Тени */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Переходы */
  --transition-base: all 0.2s ease-in-out;
  --transition-slow: all 0.3s ease-in-out;
  --transition-fast: all 0.1s ease-in-out;

  /* Контейнеры */
  --container-max-width: 1200px;
  --container-padding: var(--space-4);
}

/* Сброс стилей */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--primary-light);
}

ul, ol {
  list-style: none;
}

/* Контейнер - базовый блок для контента */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Разделители секций */
.section {
  padding: var(--space-16) 0;
}

.section-sm {
  padding: var(--space-8) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/*--------------------------------------------------------------------------
  Типографика
--------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

h1 {
  font-size: var(--text-5xl);
   margin-top: 20px;
   margin-bottom: 20px;
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
}

.text-center {
  text-align: center;
}

.text-primary-dark {
  color: var(--primary-dark);
}

.text-primary-light {
  color: var(--primary-light);
}

.text-white {
  color: var(--text-white);
}

.text-light {
  color: var(--text-light);
}

.text-bold {
  font-weight: 700;
}

.text-medium {
  font-weight: 500;
}

.text-regular {
  font-weight: 400;
}

.text-sm {
  font-size: var(--text-sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}



/*--------------------------------------------------------------------------
  Кнопки
--------------------------------------------------------------------------*/

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: var(--text-base);
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: #55aa59; /* Немного темнее --primary-light */
  color: var(--text-white);
}

.btn-secondary {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: #151d6b; /* Немного темнее --primary-dark */
  color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--primary-dark);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/*--------------------------------------------------------------------------
  Формы
--------------------------------------------------------------------------*/

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B0BEC5'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
  background-position: right var(--space-4) center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-right: var(--space-12);
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  min-height: 100px;
  resize: vertical;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: center;
}

.form-checkbox input[type="checkbox"] {
  margin-right: var(--space-2);
}

/*--------------------------------------------------------------------------
  Хэштеги
--------------------------------------------------------------------------*/

.hashtag {
  display: inline-flex;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-base);
  font-size: var(--text-sm);
  margin-right: var(--space-2);
  margin-bottom: var(--space-2);
}

.hashtag-primary {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.hashtag-outline {
  border: 1px solid var(--text-light);
  color: var(--text-white);
}

/*--------------------------------------------------------------------------
  Шапка и навигация
--------------------------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.header-scrolled {
  background-color: rgba(26, 35, 126, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: var(--space-2);
}

img.logo-footer {
  height: 40px;
  width:  40px;
  margin-right: var(--space-2);
  float: left;
}

.logo-text {
  color: var(--text-white);
  font-size: var(--text-2xl);
  font-weight: 700;
}

/* Навигация */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: var(--space-6);
  position: relative;
}

.nav-link {
  color: var(--text-white);
  font-weight: 500;
  font-size: var(--text-base);
  padding: var(--space-2) 0;
  display: block;
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--primary-light);
}

.nav-link.active {
  color: var(--primary-light);
}

.nav-button {
  margin-left: var(--space-6);
}

/* Выпадающее меню */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  margin-left: var(--space-2);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-white);
  border-bottom: 2px solid var(--text-white);
  transform: rotate(45deg);
  transition: var(--transition-base);
}

.dropdown-toggle:hover::after {
  border-color: var(--primary-light);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  padding: var(--space-2) 0;
  margin-top: var(--space-2);
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: var(--text-dark);
  transition: var(--transition-base);
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-white);
  position: absolute;
  left: 0;
  transition: var(--transition-base);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 7px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 15px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 23px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* Адаптивное меню для мобильных устройств */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-dark);
    padding: var(--space-4);
    flex-direction: column;
    align-items: stretch;
    transform: translateX(-100%);
    transition: var(--transition-base);
    overflow-y: auto;
    z-index: 999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item {
    margin: 0;
    margin-bottom: var(--space-4);
  }

  .nav-link {
    font-size: var(--text-lg);
    padding: var(--space-2) 0;
  }

  .nav-button {
    margin: var(--space-4) 0 0 0;
  }

  .dropdown-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    margin-top: var(--space-2);
    padding-left: var(--space-4);
    padding-right: 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    color: var(--text-white);
    padding: var(--space-2) 0;
  }

  .dropdown-item:hover {
    background-color: transparent;
    color: var(--primary-light);
  }

  .dropdown-toggle::after {
    transform: rotate(45deg);
  }

  .dropdown.active .dropdown-toggle::after {
    transform: rotate(-135deg);
  }

.no_smartfon    {
   display: none;
}

table, thead, tbody, th, td, tr {
    display: block;
  }
  thead tr {
    display: none; /* скрываем заголовки */
  }
  td {
    position: relative;
    padding-left: 50%;
    border: 1px solid #ccc;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 8px;
    font-weight: bold;
  }

}


/*--------------------------------------------------------------------------
  Секции и компоненты страницы
--------------------------------------------------------------------------*/

/* Герой-секция */
.hero {
  background-color: var(--primary-dark);
  color: var(--text-white);
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(102, 187, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(102, 187, 106, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  color: var(--text-white);
  margin-bottom: var(--space-4);
  font-size: var(--text-5xl);
}

.hero-subtitle {
  color: var(--primary-light);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  font-weight: 400;
}

.hero-description {
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-image {
  flex: 1;
  max-width: 500px;
  margin-left: var(--space-8);
  position: relative;
}

.hero-hashtags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

/* Блок "Для кого это решение" */
.target-audience {
  padding: var(--space-16) 0;
}

.target-audience-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.target-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.audience-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.audience-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-4);
  color: var(--primary-light);
}

.audience-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.audience-card-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.audience-card-list li {
  margin-bottom: var(--space-2);
  padding-left: var(--space-6);
  position: relative;
}

.audience-card-list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-light);
}

/* Блок "Проблемы, которые мы решаем" */
.problems {
  background-color: var(--bg-light);
  padding: var(--space-16) 0;
}

.problems-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.problem-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--space-4);
}

.problem-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(102, 187, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.problem-card-content {
  flex-grow: 1;
}

.problem-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.problem-card-description {
  color: var(--text-dark);
}

/* Блок "Как это работает" */
.how-it-works {
  padding: var(--space-16) 0;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.how-it-works-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.step-item {
  display: flex;
  gap: var(--space-4);
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.step-description {
  color: var(--text-dark);
}

/* Блок "Преимущества решения" */
.benefits {
  background-color: var(--bg-light);
  padding: var(--space-16) 0;
}

.benefits-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-4);
  color: var(--primary-light);
}

.benefit-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.benefit-card-description {
  color: var(--text-dark);
}

/* Блок "Тарифы и пакеты" */
.pricing {
  padding: var(--space-16) 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.pricing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-12);
}

.pricing-switch-item {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 500;
}

.pricing-switch-item.active {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  position: relative;
  height: 100%;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary-light);
  z-index: 1;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: var(--space-6);
  transform: translateY(-50%);
  background-color: var(--primary-light);
  color: var(--text-white);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.pricing-card-header {
  margin-bottom: var(--space-6);
}

.pricing-card-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.pricing-card-price {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.pricing-card-period {
  color: var(--text-light);
  font-size: var(--text-sm);
}

.pricing-card-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  flex-grow: 1;
}

.pricing-card-features li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-6);
  position: relative;
}

.pricing-card-features li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-light);
  font-weight: bold;
}

.pricing-card-button {
  width: 100%;
  margin-top: auto;
}

.pricing-options {
  margin-top: var(--space-12);
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.pricing-options-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.pricing-options-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.pricing-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-option-name {
  font-weight: 500;
}

.pricing-option-price {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Блок "Результаты внедрения" */
.results {
  background-color: var(--bg-light);
  padding: var(--space-16) 0;
}

.results-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  text-align: center;
}

.result-stat {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.result-stat-value {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.result-stat-label {
  color: var(--text-dark);
}

.case-studies {
  position: relative;
}

.case-studies-slider {
  overflow: hidden;
}

.case-studies-track {
  display: flex;
  gap: var(--space-6);
  transition: var(--transition-slow);
}

.case-study-card {
  flex: 0 0 calc(50% - var(--space-6) / 2);
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.case-study-header {
  margin-bottom: var(--space-4);
}

.case-study-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.case-study-industry {
  color: var(--text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.case-study-metrics {
  margin-bottom: var(--space-4);
}

.case-study-metrics-item {
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
}

.case-study-metrics-item::before {
  content: '↑';
  margin-right: var(--space-2);
  color: var(--success);
  font-weight: bold;
}

.case-study-metrics-item.down::before {
  content: '↓';
  color: var(--success);
}

.case-study-testimonial {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
  font-style: italic;
  position: relative;
}

.case-study-testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-4);
  font-size: 80px;
  color: rgba(102, 187, 106, 0.2);
  font-family: sans-serif;
  line-height: 1;
}

.case-study-author {
  display: flex;
  align-items: center;
}

.case-study-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-3);
  object-fit: cover;
}

.case-study-author-info {
  flex-grow: 1;
}

.case-study-author-name {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.case-study-author-position {
  font-size: var(--text-sm);
  color: var(--text-light);
}

.case-studies-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.case-studies-nav-item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-base);
}

.case-studies-nav-item.active {
  background-color: var(--primary-light);
}

/* Блок "Часто задаваемые вопросы" */
.faq {
  padding: var(--space-16) 0;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  background-color: var(--bg-white);
  padding: var(--space-4) var(--space-6);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition-base);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: rotate(45deg);
  transition: var(--transition-base);
}

.faq-item.active .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  background-color: var(--bg-white);
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active .faq-answer {
  padding: var(--space-4) var(--space-6);
  max-height: 500px; /* Достаточно большое значение для любого контента */
}

/* Блок "Процесс внедрения" */
.implementation {
  background-color: var(--bg-light);
  padding: var(--space-16) 0;
}

.implementation-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.implementation-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.implementation-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-left: var(--space-12);
  margin-bottom: var(--space-8);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.timeline-description {
  color: var(--text-dark);
}

/* Блок "Команда экспертов" */
.team {
  padding: var(--space-16) 0;
}

.team-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.team-member {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-member-info {
  padding: var(--space-4);
  text-align: center;
}

.team-member-name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--primary-dark);
}

.team-member-position {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-bottom: var(--space-2);
}

.team-member-description {
  font-size: var(--text-sm);
}

/* Блок "Призыв к действию" */
.cta {
  background-color: var(--primary-dark);
  padding: var(--space-16) 0;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(102, 187, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(102, 187, 106, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  position: relative;
  z-index: 2;
}

.cta-content {
  flex: 1;
}

.cta-title {
  color: var(--text-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  color: var(--primary-light);
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.cta-form {
  flex: 1;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.cta-form-title {
  color: var(--primary-dark);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  text-align: center;
}

.cta-form-subtitle {
  text-align: center;
  margin-bottom: var(--space-6);
  color: var(--text-dark);
}

/* Навигация по услугам (вкладки) */
.service-tabs {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-12);
  overflow: hidden;
}

.service-tabs-list {
  display: flex;
  border-bottom: 1px solid var(--border-light);
}

.service-tab {
  flex: 1;
  padding: var(--space-4);
  text-align: center;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
}

.service-tab:hover {
  color: var(--primary-dark);
}

.service-tab.active {
  color: var(--primary-dark);
}

.service-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-light);
}

.service-tab-content {
  padding: var(--space-6);
  display: none;
}

.service-tab-content.active {
  display: block;
}

/* Блок выбора услуги */
.service-finder {
  padding: var(--space-16) 0;
}

.service-finder-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.service-finder-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.service-finder-tab {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-base);
  background-color: var(--bg-light);
}

.service-finder-tab:hover {
  background-color: rgba(102, 187, 106, 0.1);
}

.service-finder-tab.active {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.service-finder-content {
  display: none;
}

.service-finder-content.active {
  display: block;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-tag {
  position: absolute;
  top: 12px;
  right: -30px;
  background-color: var(--primary-light);
  color: var(--text-white);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-8);
  transform: rotate(45deg);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-4);
  color: var(--primary-light);
}

.service-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.service-card-description {
  margin-bottom: var(--space-4);
  color: var(--text-dark);
  flex-grow: 1;
}

.service-card-benefit {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
}

.service-card-benefit-icon {
  width: 24px;
  height: 24px;
  margin-right: var(--space-2);
  color: var(--primary-light);
}

.service-card-button {
  width: 100%;
  margin-top: auto;
}

.service-card-extra-info {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--text-dark);
  font-size: var(--text-sm);
  line-height: 1.5;
  opacity: 0.85;
  padding-left: var(--space-2);
  border-left: 2px solid var(--primary-light);
}




 /*--------------------------------------------------------------------------
страница услуги дополнительные элементы
--------------------------------------------------------------------------*/
/* Стили для таблиц */

.table,
.data-table,
.article-content .data-table,
.bg_fe .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border: none;
}


.table-responsive {
    margin: 2rem 0;
    overflow-x: auto;
}

.table thead {
    background-color: #1A237E;
    color: white;
}

.table th, .table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.table tr:last-child td {
    border-bottom: none;
}



.data-table th,
.data-table td,
.article-content .data-table th,
.article-content .data-table td,
.bg_fe .data-table th,
.bg_fe .data-table td {
    padding: 15px 20px;
    border: 1px solid #eee;
    text-align: left;
}

.data-table th,
.article-content .data-table th,
.bg_fe .data-table th {
    background-color: #2A4D69;
    color: white !important;
    font-weight: 600;
    border-color: #2A4D69;
}

.data-table tr:nth-child(even),
.article-content .data-table tr:nth-child(even),
.bg_fe .data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.data-table tr:hover,
.article-content .data-table tr:hover,
.bg_fe .data-table tr:hover {
    background-color: #f1f7ff;
}

table,
.article-content table,
.bg_fe table {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}


/* Сравнительная таблица */
.comparison-table {
    margin: 30px 0;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 15px;
}



/* Стили для калькулятора */
#calculator {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

/* Стили для расчета потерь */
.loss-calculation {
    background-color: #fff3e8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid #FF8C42;
}


/* Стили для галереи примеров */
.content-tab {
    cursor: pointer;
    transition: var(--transition-base);
}

.content-tab.active {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.content-panel {
    display: none;
}

.content-panel.active {
    display: block;
}

/* Стили для случаев успеха (кейсов) */
.case-study-metrics-item.down::before {
    content: '↓';
    color: var(--success);
}

/*--------------------------------------------------------------------------
  страницы ИИ-ассистентов
--------------------------------------------------------------------------*/
 /* Основная структура страницы с горизонтальными блоками */
.page-content {
    display: flex;
    gap: var(--space-8);
    padding-top: var(--space-12);
    margin-bottom: var(--space-12);
    margin: 0px 2%;
}

.page_2 {
    margin: 0px 2%;
}

/* Основной контент (левая колонка) */
.content-main {
    flex: 3;
    min-width: 0; /* Предотвращает переполнение при уменьшении размера */
}

/* Боковая панель (правая колонка) */
.sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    min-width: 250px;
    max-width: 300px;
}

/* Заголовок услуги */
.service-header {
    margin-bottom: var(--space-8);
}

.service-title {
    color: var(--primary-light);
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.service-subtitle {
    color: var(--primary-dark);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    margin-top: 2em;
}

/* Выделенный блок с описанием */
.highlight-block {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-light);
    padding: var(--space-4);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: var(--space-6);
}

.highlight-text {
    margin-bottom: 0;
    font-size: var(--text-lg);
}

/* Блок "Боль клиента" */
.problem-section {
    margin-bottom: var(--space-12);
}

.problem-section h2 {
    margin-bottom: var(--space-6);
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

/* Блок "Решение" */
.solution-section {
    margin-bottom: var(--space-12);
}

.solution-section h2 {
    margin-bottom: var(--space-4);
    text-align: center;
}

.solution-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-8);
}

.target-industries {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-top: var(--space-8);
}

.target-industries h3 {
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-3) var(--space-6);
    padding-left: var(--space-6);
}

.industries-list li {
    position: relative;
}

.industries-list li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--primary-light);
    font-weight: bold;
}

/* Блок "Ключевые функции и возможности" */
.features-section {
    margin-bottom: var(--space-12);
}

.features-section h2 {
    text-align: center;
    margin-bottom: var(--space-8);
}

.feature-block {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-8);
}

.feature-title {
    color: var(--primary-dark);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.feature-description {
    margin-bottom: var(--space-6);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-4);
}

.feature-item {
    display: flex;
    gap: var(--space-3);
    background-color: var(--bg-light);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.feature-item-icon {
    flex-shrink: 0;
    color: var(--primary-light);
    margin-top: 2px;
}

.feature-item-content {
    flex-grow: 1;
}

.feature-item-content h4 {
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
    font-size: var(--text-lg);
}

.feature-item-content p {
    margin-bottom: 0;
    font-size: var(--text-sm);
}

/* Скриншот / Иллюстрация */
.screenshot-block {
    margin: var(--space-12) 0;
    text-align: center;
}

.screenshot-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: var(--space-4) 0;
}

.screenshot-image {
    width: 100%;
    display: block;
}

.screenshot-caption {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-top: var(--space-4);
}

/* Тренировочные режимы */
.training-modes {
    margin-top: var(--space-12);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.mode-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.mode-card-header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: var(--space-4);
    text-align: center;
}

.mode-card-header h4 {
    color: var(--text-white);
    margin-bottom: 0;
}

.mode-card-content {
    padding: var(--space-4);
}

.mode-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.mode-features li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
}

.mode-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.mode-features li:last-child {
    margin-bottom: 0;
}
/* Блок ROI для клиента */
.roi-section {
    margin-bottom: var(--space-12);
    background-color: var(--bg-light);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
}

.roi-section h2 {
    text-align: center;
    margin-bottom: var(--space-6);
}

.roi-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-8);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.roi-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.roi-card-icon {
    color: var(--primary-light);
    margin: 0 auto var(--space-4);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roi-card-title {
    color: var(--primary-dark);
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.roi-card-description {
    margin-bottom: 0;
}

/* Чек-марка для таблиц */
.check-mark {
    color: var(--primary-light);
    font-weight: bold;
}

.check-mark::after {
    content: "✓";
}
/* Блок "Пакеты услуг" */
.packages-section {
    margin-bottom: var(--space-12);
}

.packages-section h2 {
    text-align: center;
    margin-bottom: var(--space-4);
}

.packages-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-8);
}

.packages-table-container {
    margin-bottom: var(--space-8);
    overflow-x: auto;
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.packages-table th,
.packages-table td {
    padding: var(--space-3);
    text-align: center;
    border: 1px solid var(--border-light);
}

.packages-table th {
    background-color: var(--primary-dark);
    color: var(--text-white);
    font-weight: 600;
}

.packages-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.package-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.package-card.featured {
    box-shadow: 0 0 0 2px var(--primary-light), var(--shadow-lg);
    z-index: 1;
}

.package-card-tag {
    position: absolute;
    top: 12px;
    right: -30px;
    background-color: var(--primary-light);
    color: var(--text-white);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: var(--space-1) var(--space-8);
    transform: rotate(45deg);
}

.package-card-header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: var(--space-4);
    text-align: center;
}

.package-title {
    color: var(--text-white);
    margin-bottom: var(--space-1);
}

.package-subtitle {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.package-content {
    padding: var(--space-4);
}

.package-description {
    margin-bottom: var(--space-4);
}

.package-feature-list h4,
.package-tech-details h4 {
    color: var(--primary-dark);
    font-size: var(--text-lg);
    margin: var(--space-4) 0 var(--space-2);
}

.package-feature-list ul,
.package-tech-details ul {
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.package-feature-list li,
.package-tech-details li {
    margin-bottom: var(--space-2);
    position: relative;
}

.package-feature-list li::before,
.package-tech-details li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--primary-light);
}

.package-price-block {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin: var(--space-4) 0;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.price-option {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    text-align: center;
}

.price-title {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: var(--text-sm);
}

.price-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin: var(--space-1) 0;
}

.price-details {
    font-size: var(--text-xs);
    color: var(--text-light);
}

.setup-fee {
    text-align: center;
    font-size: var(--text-sm);
}

.setup-fee-value {
    font-weight: 600;
    color: var(--primary-dark);
}

.package-cta {
    text-align: center;
    margin-top: var(--space-4);
}

.package-button {
    width: 100%;
}
/* Кейсы и отзывы */
.cases-section {
    margin-bottom: var(--space-12);
}

.cases-section h2 {
    text-align: center;
    margin-bottom: var(--space-8);
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

/* Блок "Стратегия внедрения" */
.implementation-section {
    margin-bottom: var(--space-12);
    background-color: var(--bg-light);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
}

/* Блок "Техническая реализация" */
.technical-section {
    margin-bottom: var(--space-12);
}

.technical-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.tech-option-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.tech-option-card.featured {
    box-shadow: 0 0 0 2px var(--primary-light), var(--shadow-md);
}

.tech-option-header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: var(--space-4);
    position: relative;
}

.tech-option-tag {
    position: absolute;
    right: var(--space-4);
    top: 100%;
    transform: translateY(-50%);
    background-color: var(--primary-light);
    color: var(--text-white);
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
}

.tech-option-content {
    padding: var(--space-4);
}

.tech-option-content h4 {
    color: var(--primary-dark);
    margin: var(--space-3) 0 var(--space-2);
}

.tech-option-list {
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
}

.tech-option-list li {
    margin-bottom: var(--space-2);
}

.tech-recommendation {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-top: var(--space-8);
    text-align: center;
}

/* Стили для боковой панели */
.sidebar-block {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-6);
}

.sidebar-title {
    color: var(--primary-dark);
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    margin-top: 2em;
}

.sidebar-menu {
    margin: 0;
    padding: 0;
}

.sidebar-menu-item {
    margin-bottom: var(--space-2);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--space-2);
}

.sidebar-menu-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.sidebar-menu-item.current {
    font-weight: 600;
}

.sidebar-menu-link {
    color: var(--text-dark);
    display: block;
    transition: var(--transition-base);
}

.sidebar-menu-link:hover,
.sidebar-menu-item.current .sidebar-menu-link {
    color: var(--primary-light);

}

.sidebar-menu-link:hover,
.sidebar-menu-item.current {
    background-color: var(--bg-light);
    font-weight: 600;
}

.sidebar-button {
    width: 100%;
    margin-top: var(--space-3);
}

/* Адаптивность */
@media (max-width: 991px) {
    .page-content {
        flex-direction: column;
    }

    .content-main,
    .sidebar {
        max-width: 100%;
        width: 100%;
    }

    .sidebar {
        position: static;
        order: -1;
        margin-bottom: var(--space-8);
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .technical-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .price-options {
        grid-template-columns: 1fr;
    }
}


/*--------------------------------------------------------------------------
  Дополнительные элементы
--------------------------------------------------------------------------*/

.bold {
 font-weight: bold;
}


.bg_fe {
  background-color: fefefe;
}


/* Всплывающие подсказки (тултипы) */
.tooltip {
 position: relative;
  display: block;
  width: 100%;
}

.service-card-description {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--text-dark);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: var(--primary-dark);
  color: var(--text-white);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-4);
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  min-width: 200px;
  transform: translateX(-50%) translateY(10px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-dark) transparent transparent transparent;
}

/* Фиксированная боковая панель */
.sidebar-fixed {
  position: fixed;
  top: 50%;
  right: var(--space-4);
  transform: translateY(-50%);
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: 900;
}

.sidebar-fixed-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sidebar-fixed-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-base);
}

.sidebar-fixed-item:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

/* Всплывающий чат */
.chat-button {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition-base);
}

.chat-button:hover {
  transform: scale(1.1);
}

.chat-widget {
  position: fixed;
  bottom: calc(var(--space-6) + 70px);
  right: var(--space-6);
  width: 360px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 1000;
  transform: scale(0);
  opacity: 0;
  transform-origin: bottom right;
  transition: var(--transition-base);
}

.chat-widget.active {
  transform: scale(1);
  opacity: 1;
}

.chat-header {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-title {
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  font-size: var(--text-xl);
  line-height: 1;
}

.chat-body {
  height: 300px;
  padding: var(--space-4);
  overflow-y: auto;
}

.chat-message {
  margin-bottom: var(--space-4);
  max-width: 80%;
}

.chat-message-bot {
  padding: var(--space-3);
  background-color: var(--bg-light);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  margin-right: auto;
}

.chat-message-user {
  padding: var(--space-3);
  background-color: var(--primary-dark);
  color: var(--text-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  margin-left: auto;
}

.chat-footer {
  padding: var(--space-3);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}

.chat-input {
  flex-grow: 1;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-right: var(--space-2);
}

.chat-send {
  background-color: var(--primary-light);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Счетчик клиентов */
.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-8) 0;
  gap: var(--space-2);
}

.counter-number {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.counter-text {
  font-size: var(--text-xl);
  max-width: 300px;
}

/* Кнопка "Вверх" */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-light);
}

/* Уведомления и баннеры */
.notification {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  color: var(--text-white);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.notification.active {
  opacity: 1;
  transform: translateY(0);
}

.notification-success {
  background-color: var(--success);
}

.notification-error {
  background-color: var(--error);
}

.notification-warning {
  background-color: var(--warning);
}

.banner {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: var(--space-2) 0;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.banner-close {
  position: absolute;
  top: 50%;
  right: var(--space-6);
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  font-size: var(--text-xl);
  line-height: 1;
}

/* Дополнительные утилиты */
.bg-primary-dark {
  background-color: var(--primary-dark);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-white {
  background-color: var(--bg-white);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-full {
  border-radius: var(--radius-full);
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Подвал сайта */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: var(--space-12) 0 var(--space-8);
  position: relative;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column-title {
  color: var(--text-white);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.footer-about {
  margin-bottom: var(--space-4);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-title {
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--primary-light);
}

.footer-menu-item {
  margin-bottom: var(--space-2);
}

.footer-menu-link {
  color: var(--text-white);
  transition: var(--transition-base);
}

.footer-menu-link:hover {
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-base);
}

.footer-social-link:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
}

.footer-legal-link {
  color: var(--text-white);
  transition: var(--transition-base);

}

.footer-legal-link:hover {
  color: var(--primary-light);
}


/* cookie-banner согласие на обработку персональных данных */

/* Общие стили для затемняющего оверлея */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

/* Общие стили для модальных окон */
.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

/* Содержимое модального окна */
.cookie-modal-content {
    padding: 25px;
}

.cookie-modal h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1A237E;
    font-size: 20px;
}

.cookie-modal p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

/* Кнопка */
.cookie-modal-button {
    text-align: center;
}

.cookie-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #66BB6A;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cookie-btn:hover {
    background-color: #55aa59;
    transform: translateY(-2px);
}

.cookie-btn:active {
    transform: translateY(1px);
}

/* Адаптивность для маленьких экранов */
@media (max-width: 576px) {
    .cookie-modal {
        width: 95%;
        max-height: 80vh;
        overflow-y: auto;
    }

    .cookie-modal-content {
        padding: 15px;
    }

    .cookie-btn {
        width: 100%;
        padding: 10px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fadeIn {
    animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fadeOut {
    animation: fadeOut 0.3s ease-in-out forwards;
}

/*--------------------------------------------------------------------------
  Адаптивность (медиа запросы)
--------------------------------------------------------------------------*/

/* Extra large устройства (больше 1200px) */
@media (max-width: 1200px) {
  :root {
    --text-5xl: 2.5rem;  /* 40px вместо 48px */
    --text-4xl: 2rem;    /* 32px вместо 36px */
  }

  .container {
    max-width: 1140px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* Large устройства (меньше 992px) */
@media (max-width: 991px) {
  :root {
    --text-5xl: 2.25rem; /* 36px */
    --text-4xl: 1.875rem; /* 30px */
    --text-3xl: 1.5rem; /* 24px */
  }

  .container {
    max-width: 960px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: var(--space-8);
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-hashtags {
    justify-content: center;
  }

  .hero-image {
    max-width: 80%;
    margin-left: 0;
  }

  .target-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .pricing-card.popular {
    grid-column: span 2;
    margin-bottom: var(--space-8);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    gap: var(--space-8);
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-image {
    order: -1;
    margin-bottom: var(--space-8);
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar-fixed {
    display: none;
  }
}

/* Medium устройства (меньше 768px) */
@media (max-width: 767px) {
  :root {
    --container-padding: var(--space-4);
    --space-16: 3rem; /* 48px вместо 64px */
    --space-20: 4rem; /* 64px вместо 80px */
  }

  .container {
    max-width: 720px;
  }

  .hero-title {
    font-size: var(--text-4xl);
    padding-top: 4.0em;
  }

  .hero-subtitle {
    font-size: var(--text-xl);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--space-3);
  }

  .hero-image {
    max-width: 100%;
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  .target-audience-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    grid-column: auto;
  }

  .case-study-card {
    flex: 0 0 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-finder-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-2);
  }

  .service-finder-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .chat-widget {
    width: calc(100% - var(--space-8));
    right: var(--space-4);
  }

  .footer-column {
    flex: 0 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Small устройства (меньше 576px) */
@media (max-width: 575px) {
  :root {
    --text-base: 0.9375rem; /* 15px вместо 16px */
    --space-12: 2.5rem; /* 40px вместо 48px */
    --space-16: 2.5rem; /* 40px вместо 64px */
  }

  .container {
    max-width: 540px;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  h1, .h1 {
    font-size: var(--text-3xl);
       margin-top: 20px;
   margin-bottom: 20px;

  }

  h2, .h2 {
    font-size: var(--text-2xl);
  }

  .hero {
    padding: var(--space-16) 0 var(--space-12);
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-subtitle {
    font-size: var(--text-lg);
  }

  .problem-card {
    flex-direction: column;
  }

  .problem-card-icon {
    margin-bottom: var(--space-3);
  }

  .pricing-options-list {
    grid-template-columns: 1fr;
  }

  .case-study-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-author-image {
    margin-bottom: var(--space-2);
    margin-right: 0;
  }

  .implementation-timeline::before {
    left: 18px;
  }

  .timeline-dot {
    width: 12px;
    height: 12px;
    top: 8px;
  }

  .counter {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
  }
}

/* Печать */
@media print {
  .header,
  .footer,
  .chat-button,
  .sidebar-fixed,
  .back-to-top,
  .banner {
    display: none !important;
  }

  body {
    color: #000;
    background-color: #fff;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  .hero,
  .cta {
    background-color: #fff;
    color: #000;
    padding: 1cm 0;
  }

  .hero-title,
  .cta-title,
  .section-title {
    color: #000;
  }

  .pricing-card,
  .benefit-card,
  .audience-card,
  .problem-card,
  .case-study-card {
    break-inside: avoid;
    border: 1px solid #ccc;
    box-shadow: none !important;
  }
}

/* Высококонтрастный режим */
@media (prefers-contrast: high) {
  :root {
    --primary-dark: #000066;
    --primary-light: #00AA00;
    --text-dark: #000000;
    --text-light: #444444;
    --border-light: #777777;
  }

  .hero,
  .cta,
  .footer {
    background-color: var(--primary-dark);
  }

  .btn-primary,
  .btn-secondary,
  .pricing-switch-item.active,
  .service-finder-tab.active {
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-weight: bold;
  }

  .form-input,
  .form-select,
  .form-textarea {
    border: 2px solid var(--text-dark);
  }

  .step-number,
  .timeline-dot,
  .case-studies-nav-item {
    border: 2px solid var(--text-dark);
  }
}

/* Предпочтения по уменьшению движения */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover,
  .pricing-card:hover,
  .benefit-card:hover,
  .audience-card:hover,
  .team-member:hover,
  .service-card:hover {
    transform: none !important;
  }
}