/* ========================================================================
   УЛУЧШЕННЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ВИДЕОНАБЛЮДЕНИЯ
   ======================================================================== */

/* ========================================================================
   ОБЩИЕ СТИЛИ И АНИМАЦИИ
   ======================================================================== */

/* Анимации появления элементов */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 var(--trans-orange-medium);
  }

  70% {
    box-shadow: 0 0 0 10px var(--trans-orange-light);
  }

  100% {
    box-shadow: 0 0 0 0 var(--trans-orange-light);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Анимации для элементов при скролле */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Немедленная анимация для первого экрана */
.animate-fade-in {
  animation: fadeIn 1s var(--ease-out) forwards;
}

/* Заголовки секций */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, var(--spacing-6));
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, var(--font-size-2xl));
  color: var(--color-dark-gray);
  margin-bottom: var(--spacing-4);
  position: relative;
  display: inline-block;
  text-align: center;
}

.section-divider {
  height: 4px;
  width: 80px;
  margin: 0 auto;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 15px;
  background: var(--color-orange-primary);
  border-radius: var(--radius-full);
  top: 0;
}

.section-divider::before {
  left: -25px;
}

.section-divider::after {
  right: -25px;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 8vw, 64px);
  height: clamp(48px, 8vw, 64px);
  background: var(--gradient-orange);
  border-radius: 50%;
  margin: 0 auto var(--spacing-4);
  color: white;
  box-shadow: var(--shadow-card);
}


/* Стилизация бейджей */
.badge {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-orange-primary);
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--spacing-3);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* ========================================================================
 HERO СЕКЦИЯ
 ======================================================================== */

/* ===== ПРОДАЮЩАЯ HERO-СЕКЦИЯ ДЛЯ ВИДЕОНАБЛЮДЕНИЯ ===== */
.slider-tarifs.video-surveillance {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(14, 20, 33, 0.9) 0%, rgba(22, 30, 48, 0.9) 50%, rgba(14, 20, 33, 0.9) 100%), url('assets/templates/img/video-bg.jpg') no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 150px 80px 80px 80px;
}

/* Основные градиенты и цвета */
:root {
  --sales-gradient-primary: linear-gradient(90deg, #fd7921 0%, #f3761b 100%);
  --sales-gradient-dark: linear-gradient(120deg, #121921 0%, #1c2630 50%, #121921 100%);
  --sales-primary: #fd7921;
  --sales-success: #86bc42;
  --sales-trust: #6a91d0;
  --sales-video: #4a90e2;
  --sales-shadow-cta: 0 10px 30px rgba(253, 121, 33, 0.4);
  --sales-shadow-trust: 0 5px 15px rgba(106, 145, 208, 0.3);
}

.slider-tarifs .mm-cta-btn {
  font-size: 15px;
}

/* Особые стили для видеонаблюдения */
.video-surveillance .hero-badge {
  background: var(--sales-video);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.video-surveillance .hero-circle-1 {
  background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, rgba(74, 144, 226, 0) 70%);
}

/* Декоративные элементы фона */
.hero-bg-element {
  position: absolute;
  z-index: -1;
}

.hero-circle-1 {
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(253, 121, 33, 0.15) 0%, rgba(253, 121, 33, 0) 70%);
  animation: pulse-bg 12s infinite alternate;
}

.hero-circle-2 {
  bottom: -30%;
  left: -15%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(106, 145, 208, 0.08) 0%, rgba(106, 145, 208, 0) 70%);
  animation: pulse-bg 15s infinite alternate-reverse;
}

.hero-grid {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Плавающие формы */
.hero-floating-shape {
  position: absolute;
  z-index: -1;
}

.hero-shape-1 {
  top: 15%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, rgba(74, 144, 226, 0.1) 0%, rgba(106, 167, 252, 0.1) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, rgba(253, 121, 33, 0.1) 0%, rgba(255, 154, 81, 0.05) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 10s ease-in-out infinite 1s;
}

/* Контейнер для контента */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(30px, 5vw, 50px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  z-index: 1;
  animation: fadeSlideUp 1s forwards;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--sales-gradient-primary);
  z-index: 0;
}

/* Заголовок и подзаголовок */
.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 30px auto 20px;
  line-height: 1.1;
  position: relative;
  text-align: center;
  width: 100%;
  display: block;
}

.hero-title span {
  color: var(--sales-primary);
  display: inline-block;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 35px;
  font-weight: 300;
  max-width: 95%;
  text-align: center;
}

/* Бейдж профессионализма */
.hero-badge {
  position: absolute;
  top: 20px;
  right: 30px;
  background: var(--sales-trust);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--sales-shadow-trust);
}

.hero-badge i {
  font-size: 18px;
}

/* Доверительные элементы */
.trust-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 30px auto 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.trust-item i {
  color: var(--sales-success);
  font-size: 20px;
}

.video-surveillance .trust-item i {
  color: var(--sales-video);
}

.trust-item span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

/* Премиальная CTA-кнопка */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero-actions .btn,
.btn.popup-with-form {
  background: var(--sales-gradient-primary);
  color: white;
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  font-weight: 700;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 2.2rem);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--sales-shadow-cta);
  border: none;
  text-transform: uppercase;
  letter-spacing: max(0.5px, 0.05em);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}

.btn.popup-with-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: all 0.6s ease;
  z-index: 0;
}

.btn.popup-with-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(253, 121, 33, 0.4);
}

.btn.popup-with-form:hover::before {
  animation: shine 1.5s infinite;
}

.btn.popup-with-form i {
  font-size: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn.popup-with-form:hover i {
  transform: translateX(4px);
}

/* Таймер ограниченного предложения */
.offer-timer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: center;
}

.offer-timer i {
  color: var(--sales-savings);
  font-size: 18px;
}

.offer-timer .countdown {
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--sales-savings);
}

/* Анимации */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-bg {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Адаптивность */
@media (max-width: 992px) {
  .hero-content-box {
    padding: 40px 30px;
  }

  .hero-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 20px;
    align-self: flex-start;
    display: inline-flex;
  }

  .trust-features {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .slider-tarifs.video-surveillance {
    margin-top: var(--header-height-mobile);
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-content-box {
    margin: 0 15px;
  }

  .hero-circle-1,
  .hero-circle-2 {
    opacity: 0.5;
  }
}

@media (max-width: 576px) {
  .slider-tarifs.video-surveillance {
    margin-top: var(--header-height-mobile);
    padding: 40px 0;
    min-height: auto;
  }

  .hero-content-box {
    padding: 30px 20px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .offer-timer {
    flex-direction: column;
    gap: 5px;
  }

  .hero-actions .btn,
  .btn.popup-with-form {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    width: 100%;
  }

  .hero-actions .btn i,
  .btn.popup-with-form i {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {

  .hero-actions .btn,
  .btn.popup-with-form {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .slider-tarifs .mm-cta-btn i {
    display: none;
  }
}


/* ========================================================================
 ОСНОВНОЙ КОНТЕНТ
 ======================================================================== */

/* ОСНОВНОЙ КОНТЕНТ */
.desc-service {
  padding: clamp(3rem, 8vw, var(--spacing-16)) 0;
  position: relative;
  z-index: 1;
}

.intro-text {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto clamp(2rem, 8vw, var(--spacing-16));
  text-align: center;
  color: var(--color-gray);
  line-height: var(--line-height-relaxed);
}

.intro-text strong {
  color: var(--color-orange-primary);
  font-weight: var(--font-weight-bold);
}

/* Блоки с изображениями */
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 100%;
  min-height: 300px;
  transition: all 0.5s var(--ease-out);
  margin: 0 auto;
  max-width: 100%;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.overlay-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid var(--color-orange-primary);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s var(--ease-out);
  z-index: 2;
  pointer-events: none;
}

.feature-image:hover {
  transform: perspective(1000px) rotateY(2deg);
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-image:hover .overlay-frame {
  opacity: 0.5;
  transform: scale(1);
}

/* Блоки с преимуществами */
.benefits-container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, var(--spacing-8));
  box-shadow: var(--shadow-lg);
  margin-bottom: clamp(2rem, 5vw, var(--spacing-10));
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--color-orange-primary);
  width: 100%;
  min-height: 100%;
}


.benefits-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--color-orange-ultra-light) 0%, transparent 70%);
  opacity: 0.7;
  border-radius: 50%;
}

.benefits-title {
  color: var(--color-orange-primary);
  font-size: 18px;
  margin-bottom: var(--spacing-6);
  padding-bottom: var(--spacing-2);
  border-bottom: 2px solid var(--color-orange-ultra-light);
  text-align: center;
}

.article_list {
  padding-left: 0;
  text-align: left;
  list-style: none;
}

.article_list li {
  margin-bottom: var(--spacing-6);
  position: relative;
  padding-left: clamp(2rem, 8vw, var(--spacing-8));
  transition: transform 0.3s var(--ease-out);
}


.article_list li:hover {
  transform: translateX(5px);
}

.article_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: clamp(20px, 4vw, 24px);
  height: clamp(20px, 4vw, 24px);
  background-color: var(--color-orange-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M10 15.172l9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z' fill='white'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 5px rgba(237, 137, 54, 0.4);
  transition: all 0.3s var(--ease-out);
}

.article_list li:hover::before {
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(237, 137, 54, 0.6);
}

.article_list h3 {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--spacing-2);
  color: var(--color-dark-gray);
  transition: color 0.3s var(--ease-out);
}

.article_list li:hover h3 {
  color: var(--color-orange-primary);
}

.highlight-box {
  background-color: var(--color-orange-ultra-light);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 4vw, var(--spacing-4));
  margin-top: var(--spacing-10);
  border-left: 4px solid var(--color-orange-primary);
  text-align: center;
}


.highlight-box h3 {
  font-size: 16px;
  color: var(--color-orange-dark);
  margin: 0;
  text-align: center;
}


/* Блок "Почему выбрать нас" */
.why-us-container {
  background: var(--gradient-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, var(--spacing-8));
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.why-us-row {
  margin-top: 30px;
}

.why-us-title {
  color: var(--color-orange-primary);
  font-size: 18px;
  margin-bottom: var(--spacing-8);
  text-align: center;
  position: relative;
  width: 100%;
}

.why-us-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
}

.why-us-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(1rem, 2.5vw, var(--spacing-4));
  width: 100%;
}

.why-us-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2.5vw, var(--spacing-4));
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.why-us-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-orange);
  transition: all 0.3s var(--ease-out);
  z-index: -1;
}

.why-us-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.why-us-item:hover::before {
  width: 100%;
  opacity: 0.1;
}

.why-us-item h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark-gray);
  margin-bottom: 0;
  position: relative;
  transition: color 0.3s var(--ease-out);
  text-align: left;
}


.why-us-item:hover h3 {
  color: var(--color-orange-primary);
}

/* ===== ЦЕНЫ ===== */
.price-section {
  background: var(--sales-light, #f7f9fc);
  position: relative;
  z-index: 1;
  padding: 80px 15px;
  overflow: hidden;
}

.price-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,107,0,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* Плавающие круги для фонового эффекта */
.price-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.02) 100%);
  top: -100px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
  animation: float-element 20s infinite alternate ease-in-out;
}

@keyframes float-element {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-50px, 50px) rotate(10deg);
  }
}

.price-content {
  padding: clamp(25px, 5vw, 45px);
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
  margin-bottom: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.price-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* Бейдж ограниченного предложения */
.price-offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--sales-savings, #ffc107);
  color: var(--sales-dark, #0a2540);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  transform-origin: right center;
  animation: pulse-badge 2s infinite alternate;
  z-index: 2;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.price-offer-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 7px 25px rgba(255, 193, 7, 0.4);
}

.price-offer-badge i {
  font-size: 16px;
  flex-shrink: 0;
  animation: flash 4s infinite;
}

@keyframes flash {

  0%,
  40%,
  80%,
  100% {
    opacity: 1;
  }

  20%,
  60% {
    opacity: 0.6;
  }
}

/* Декоративный элемент для карточки */
.price-content::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, var(--sales-primary, #ff6b00), var(--sales-primary, #ff6b00) 30%, transparent);
  height: 5px;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
  z-index: 1;
}

.price-title {
  font-size: clamp(24px, 5vw, 34px);
  color: var(--sales-secondary, #0a2540);
  margin: 0 auto 16px auto;
  width: fit-content;
  font-weight: 800;
  position: relative;
  word-break: break-word;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-divider {
  height: 4px;
  width: 80px;
  margin: 0 auto;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 15px;
  background: var(--color-orange-primary);
  border-radius: var(--radius-full);
  top: 0;
}

.section-divider::before {
  left: -25px;
}

.section-divider::after {
  right: -25px;
}

.price-text {
  text-align: center;
  font-size: clamp(16px, 4vw, 18px);
  color: rgba(10, 37, 64, 0.75);
  margin: 35px 0;
  line-height: 1.6;
}

.price-badges {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 35px;
}

.price-badge {
  width: calc(50% - 11px);
  background: var(--sales-light, #f7f9fc);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-left: 5px solid var(--sales-primary, #ff6b00);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.price-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-badge:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.price-badge:hover::after {
  opacity: 1;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sales-primary, #ff6b00), #ff8c40);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 0;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
  position: relative;
  z-index: 1;
}

.price-badge:hover .badge-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.badge-text {
  text-align: left;
  font-weight: 700;
  color: var(--sales-secondary, #0a2540);
  font-size: 16px;
  flex: 1;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* CTA баннер */
.cta-banner {
  margin: clamp(3rem, 8vw, var(--spacing-16)) auto;
  background: linear-gradient(135deg, var(--color-orange-primary), var(--color-orange-dark));
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, var(--spacing-6)) clamp(1.5rem, 5vw, var(--spacing-8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
}


.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E") center/30px 30px;
}

.cta-content {
  color: var(--color-white);
  flex: 1;
  padding-right: clamp(0rem, 3vw, var(--spacing-6));
  text-align: center;
}

.cta-content h3 {
  font-size: clamp(1.25rem, 3vw, var(--font-size-xl));
  margin-bottom: var(--spacing-2);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.cta-content p {
  font-size: clamp(0.9rem, 2vw, var(--font-size-md));
  opacity: 0.9;
  margin: 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-orange-primary);
  padding: clamp(0.75rem, 2vw, var(--spacing-3)) clamp(1.25rem, 3vw, var(--spacing-6));
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-button);
  white-space: nowrap;
  animation: pulseGlow 2s infinite;
  margin: 1rem auto 0;
  text-align: center;
}


.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-button-hover);
  color: var(--color-orange-dark);
}

@media (max-width: 1000px) {
  .why-us-row .col-md-6 {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
  }
}

/* ========================================================================
 СЕКЦИЯ С ЦЕНАМИ
 ======================================================================== */

.pricelist {
  background-color: var(--color-white-soft);
  padding: clamp(3rem, 8vw, var(--spacing-16)) 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  z-index: 1;
}

.pricelist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fd7921' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.pricelist .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.price-intro {
  padding-right: clamp(0rem, 4vw, var(--spacing-8));
  margin-bottom: 2rem;
  text-align: left;
  max-width: 540px;
}

.number-tag {
  display: flex;
  align-items: left;
  margin-bottom: var(--spacing-4);
  justify-content: left;
}

.number-tag span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 6vw, 40px);
  height: clamp(30px, 6vw, 40px);
  background: var(--gradient-orange);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  margin-right: var(--spacing-4);
  font-size: clamp(0.9rem, 2vw, var(--font-size-md));
}



.number-tag h3 {
  font-size: clamp(1rem, 2.5vw, var(--font-size-lg));
  color: var(--color-dark-gray);
  margin: 0;
  text-align: left;
}


.price-intro p {

  color: var(--color-gray);
  margin-bottom: var(--spacing-6);
  padding-left: calc(clamp(30px, 6vw, 40px) + var(--spacing-4));
  font-size: clamp(0.875rem, 1.5vw, var(--font-size-base));
  text-align: left;
}

.calc-wrap {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s var(--ease-out);
  transform-style: preserve-3d;
  width: 100%;
  max-width: 1200px;
}

.calc-wrap:hover {
  transform: perspective(1000px) rotateY(2deg) translateY(-5px);
}

.price-header {
  background: var(--gradient-orange);
  padding: clamp(1rem, 2.5vw, var(--spacing-4));
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.price-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0.4;
  animation: gradientFlow 5s linear infinite;
}

.price-badge {
  position: relative;
  z-index: 1;
  font-weight: var(--font-weight-bold);
  font-size: clamp(1rem, 2vw, var(--font-size-md));
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  text-align: center;
}

.pricelist table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.pricelist th {
  background-color: var(--color-lighter-gray);
  color: var(--color-dark-gray);
  text-align: center;
  padding: clamp(0.75rem, 2vw, var(--spacing-3));
  font-weight: var(--font-weight-semibold);
  border-bottom: 2px solid var(--color-orange-primary);
}

.pricelist td {
  padding: clamp(0.75rem, 2vw, var(--spacing-3));
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-lighter-gray);
  transition: background-color 0.3s var(--ease-out);
}

.pricelist tr:hover td {
  background-color: var(--color-orange-ultra-light);
}

.pricelist tr:last-child td {
  border-bottom: none;
}

.price-value {
  font-weight: var(--font-weight-bold);
  color: var(--color-orange-primary);
  font-size: clamp(0.9rem, 2vw, var(--font-size-md));
  text-align: center;
}

.price-footer {
  padding: clamp(1rem, 2.5vw, var(--spacing-4));
  text-align: center;
  background-color: var(--color-lighter-gray-alt);
  border-top: 1px solid var(--color-lighter-gray);
}

.price-footer .mm-cta-btn:hover {
  color: #fff;
}

@keyframes gradientFlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Секция доверия */

.trust-section {
  background: linear-gradient(to right, var(--color-orange-dark), var(--color-orange-primary));
  padding: clamp(2.5rem, 6vw, var(--spacing-12)) 0;
  color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 1;

  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-content {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, var(--spacing-8));
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  margin: 0 auto clamp(1rem, 2.5vw, var(--spacing-4));
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-orange-primary);
  text-align: center;
}


.trust-content h3 {
  font-size: clamp(1.25rem, 3vw, var(--font-size-xl));
  margin-bottom: var(--spacing-2);
  font-weight: var(--font-weight-bold);
  text-align: center;
}


.trust-content p {
  font-size: clamp(0.9rem, 2vw, var(--font-size-md));
  opacity: 0.9;
  margin-bottom: var(--spacing-6);
  text-align: center;
}

.trust-btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-orange-primary);
  padding: clamp(0.75rem, 2vw, var(--spacing-3)) clamp(1.5rem, 5vw, var(--spacing-8));
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: clamp(0.9rem, 2vw, var(--font-size-md));
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  text-align: center;
}


.trust-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange-primary), var(--color-orange-dark));
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.trust-btn:hover {
  color: var(--color-white);
}

.trust-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.ind-contact-section {
  margin-top: 0;
}

/* ========================================================================
 АДАПТИВНОСТЬ
 ======================================================================== */

@media (max-width: 992px) {
  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    padding-right: 0;
    margin-bottom: var(--spacing-4);
  }

  .benefits-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .benefits-row .col-md-6 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .feature-image {
    margin-bottom: var(--spacing-6);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }

  .why-us-list {
    grid-template-columns: 1fr;
  }

  .number-tag {
    flex-direction: column;
    text-align: center;
  }

  .number-tag span {
    margin-right: 0;
    margin-bottom: var(--spacing-2);
  }

  .price-intro p {
    padding-left: 0;
    text-align: center;
  }

  .calc-wrap {
    margin-top: var(--spacing-6);
  }
}

@media (max-width: 576px) {
  .hero-video {
    padding: var(--spacing-10) 0;
  }

  .hero-content {
    padding: var(--spacing-4);
  }

  .benefits-container,
  .why-us-container,
  .price-factors {
    padding: var(--spacing-4);
  }

  .article_list li {
    padding-left: var(--spacing-10);
  }

  .cta-banner {
    padding: var(--spacing-4);
  }

  .action-btn {
    width: 100%;
  }
}

/* ========================================================================
 АДАПТИВНОСТЬ
 ======================================================================== */

/* Большие экраны */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-4 {
    width: 33.33%;
  }

  .col-lg-8 {
    width: 66.67%;
  }
}

/* Средние экраны */
@media (max-width: 992px) {
  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    padding-right: 0;
    margin-bottom: clamp(1rem, 2.5vw, var(--spacing-4));
  }

  .benefits-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .feature-image {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .benefits-container {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .why-us-container {
    max-width: 100%;
  }

  .price-factors {
    max-width: 100%;
  }

  .price-intro {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .number-tag {
    justify-content: center;
  }

  .price-intro p {
    text-align: center;
  }

  .col-md-6 {
    width: 50%;
  }
}

/* Маленькие экраны */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, var(--font-size-2xl));
  }

  .why-us-list {
    grid-template-columns: 1fr;
  }

  .number-tag {
    flex-direction: column;
    text-align: center;
  }

  .number-tag span {
    margin-right: 0;
    margin-bottom: var(--spacing-2);
  }

  .price-intro p {
    padding-left: 0;
    text-align: center;
  }

  .calc-wrap {
    margin-top: clamp(1.5rem, 4vw, var(--spacing-6));
  }

  .cta-button {
    display: block;
    margin-top: 1rem;
    width: 100%;
  }

  .trust-btn {
    display: block;
    width: 100%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-md-6 {
    width: 100%;
  }

  /* Улучшаем таблицы на маленьких экранах */
  .pricelist table,
  .pricelist thead,
  .pricelist tbody,
  .pricelist th,
  .pricelist td,
  .pricelist tr {
    display: block;
  }

  .pricelist thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pricelist tr {
    border: 1px solid var(--color-lighter-gray);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .pricelist td {
    border: none;
    border-bottom: 1px solid var(--color-lighter-gray);
    position: relative;
    text-align: center;
  }

  .pricelist td:before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: var(--font-weight-semibold);
    content: attr(data-label);
  }

  .pricelist td:last-child {
    border-bottom: none;
  }

  .price-badge {
    width: 100%;
  }

  .badge-icon {
    width: 30px;
    height: 30px;
  }

  .badge-text {
    font-size: 14px;
  }

}

/* Очень маленькие экраны */
@media (max-width: 576px) {
  .hero-video {
    padding: clamp(2rem, 5vw, var(--spacing-10)) 0;
  }

  .hero-content {
    padding: clamp(1rem, 3vw, var(--spacing-4));
  }

  .benefits-container,
  .why-us-container,
  .price-factors {
    padding: clamp(1rem, 3vw, var(--spacing-4));
  }

  .cta-banner {
    padding: clamp(1rem, 3vw, var(--spacing-4));
  }

  .action-btn {
    width: 100%;
    display: block;
  }

  /* Дополнительные улучшения для маленьких экранов */
  .intro-text {
    padding: 0 15px;
  }
}

/* Дополнительные улучшения для разных устройств */
@media (max-width: 380px) {
  .article_list li::before {
    width: 18px;
    height: 18px;
    background-size: 10px 10px;
  }

  .article_list li {
    padding-left: 28px;
  }

  .section-icon {
    width: 40px;
    height: 40px;
  }

  .number-tag span {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Печатная версия */
@media print {

  .hero-video,
  .cta-banner,
  .trust-section,
  .action-btn,
  .cta-button,
  .trust-btn {
    display: none !important;
  }

  .pricelist,
  .desc-service {
    padding: 1rem 0 !important;
  }

  .benefits-container,
  .why-us-container,
  .price-factors,
  .calc-wrap {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }

  section-header {
    margin-bottom: 2rem !important;
  }

  body {
    color: black !important;
    background: white !important;
  }

  a {
    text-decoration: none !important;
    color: black !important;
  }

  .price-header {
    background: none !important;
    color: black !important;
    border-bottom: 2px solid #ddd !important;
  }

  .price-badge {
    color: var(--color-orange-primary) !important;
  }
}