/* 
 * Дополнительные стили для улучшенного дизайна
 * Основаны на существующих переменных из root.css
 */

/* ========================================================================
   HERO SECTION STYLES - Улучшенная версия с центрированием и отступом
   ======================================================================== */

   .hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(13, 12, 54, 0.9) 100%), url('assets/templates/img/ban1.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    z-index: 1;
    color: var(--color-white);
}

.hero-section .d-none {
  display: none !important;
}

.hero-section .hero-row {
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--color-orange-primary);
    color: white;
    font-size: clamp(0.75rem, 1vw, 0.81rem);
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.hero-badge i {
    margin-right: 0.313rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .5rem;
    color: var(--color-white);
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-break: normal;
    hyphens: none;
    word-wrap: normal;
    overflow-wrap: normal;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    text-align: center;
    word-break: normal;
    hyphens: none;
    word-wrap: normal;
    overflow-wrap: normal;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center; /* если нужно и вертикальное центрирование */
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Дополнительные стили для отключения переносов */
.hero-title,
.hero-description,
.hero-features,
.feature-item span {
    word-break: keep-all;
    hyphens: none;
    word-wrap: normal;
    overflow-wrap: normal;
    white-space: normal;
}

/* Убираем подчёркивания у ссылок в hero секции */
.hero-section a {
    text-decoration: none;
}

.hero-section a:hover {
    text-decoration: none;
}

/* Стиль для подчёркивания только "за 5 дней" */
.highlight-days {
    text-decoration: underline;
    text-decoration-color: var(--color-orange-primary);
    text-underline-offset: 2px;
}

  
 .feature-item {
    display: flex;
    align-items: left;
    justify-content: start;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    text-align: left;
}
  
  .feature-item i {
    color: var(--color-orange-primary);
    font-size: 1.25rem;
    flex-shrink: 0; /* Предотвращение сжатия иконки */
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: .5rem;
    flex-wrap: wrap;
    justify-content: center; /* Центрирование кнопок */
    width: 100%;
  }
  
  .hero-clients {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center; /* Центрирование */
    width: 100%;
  }
  
  .clients-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 500;
  }
  
  .clients-count span {
    color: var(--color-orange-primary);
    font-weight: 700;
  }
  
  .hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto; /* Центрирование изображения */
    width: 100%;
    max-width: 100%;
  }
  
  .hero-image img {
    border-radius: 12px;
    transform: scale(1.02);
    transition: all 0.5s ease;
    width: 100%;
    display: block; /* Удаляет небольшой отступ внизу изображения */
  }
  
  .hero-image:hover img {
    transform: scale(1.05);
  }
  
  .hero-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-blue-dark);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Адаптивные стили для разных устройств */
  @media (max-width: 991px) {
    .hero-section {
      padding: 40px 0; /* Немного меньший отступ для планшетов */
    }
    
    .hero-features {
      flex-direction: column;
      gap: 15px;
      margin-bottom: 30px;
    }
    
    .hero-image {
      margin-top: 2rem;
    }
  }
  
  @media (max-width: 767px) {
    .hero-section {
      padding: 30px 0 30px; /* Меньший отступ для мобильных */
      text-align: center;
    }
    
    .hero-title {
      font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .hero-description {
      max-width: 100%;
    }
    
    .feature-item {
      justify-content: flex-start; /* Выравнивание для читаемости */
    }
    
    .hero-actions {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .hero-actions .btn {
      width: 100%;
    }
    
    .hero-clients {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-section {
      padding: 20px 0 20px; /* Минимальный отступ для маленьких экранов */
      min-height: auto;
    }
    
    .feature-item {
      font-size: 0.9rem;
    }
    
    .hero-image-badge {
      padding: 0.5rem 0.875rem;
      font-size: 0.8rem;
      bottom: 10px;
      right: 10px;
    }
  }
  
  /* ========================================================================
     PROBLEMS SECTION STYLES
     ======================================================================== */
  
  .problems-section {
    background-color: var(--color-white);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
  }
  
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
  }
  
  .problem-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: clamp(1.5rem, 2vw, 2rem);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, var(--color-orange-primary), var(--color-blue-dark));
    border-image-slice: 1;
    height: 100%;
  }
  
  .problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(253, 121, 33, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-orange-primary);
    transition: all 0.3s ease;
  }
  
  .problem-card:hover .problem-icon {
    background-color: var(--color-orange-primary);
    color: white;
    transform: scale(1.05) rotate(5deg);
  }
  
  .problem-icon i {
    font-size: 28px;
  }
  
  .problem-card h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--color-dark-gray);
  }
  
  .problem-card p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--color-dark-gray-alt);
    line-height: 1.5;
    text-align: left;
  }
  
  .emergency-button {
    background: linear-gradient(135deg, rgba(160, 25, 25, 0.98) 0%, rgba(140, 18, 18, 0.98) 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 15px 30px rgba(183, 28, 28, 0.2);
    margin-top: 3rem;
    color: white;
  }
  
  .emergency-icon {
    width: 90px;
    height: 90px;
  background: rgba(255, 0, 0, 0.4);


    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .emergency-icon i {
    font-size: 40px;
    color: white;
  }
  
  .emergency-content h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: left;
    color: white;
  }
  
  .emergency-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
  }
  


  /* ========================================================================
     ENHANCED INTRO SECTION
     ======================================================================== */

.intro-section {
    background-color: var(--color-white-soft);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

/* Стили для значка "ЗАЩИЩЕННЫЙ ОФИС" */
.badge-container {
    margin-bottom: 1.5rem;
}

.sales-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sales-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.sales-badge:hover:before {
    left: 100%;
}

.sales-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.highlight-days {
    font-weight: 700;
    color: var(--color-orange-primary);
    text-decoration: underline;
    padding: 0 3px;
}

.intro-box {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-content {
    text-align: left;
    padding: 0 1rem;
}

.intro-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.2;
}

.intro-content h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    background: var(--color-orange-primary);
    border-radius: 5px;
}

.intro-content .accent {
    color: var(--color-orange-primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.intro-content .accent:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 107, 0, 0.1);
    z-index: -1;
}

.intro-content p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--color-dark-gray-alt);
    margin-bottom: 1rem;
    text-align: center;
}

/* Стиль для выделенного оранжевого текста */
.intro-content .highlight-text {
    font-weight: 500;
    padding: 1rem;
    background-color: rgba(255, 107, 0, 0.08);
    border-left: 3px solid var(--color-orange-primary);
    border-right: 3px solid var(--color-orange-primary);
    border-radius: 8px;
    margin: 0;
    margin-top: 1.5rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.1);
}

/* Стили для картинок */
.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-image-left {
    justify-content: flex-end;
}

.intro-image-right {
  display: none;
    justify-content: flex-start;
}

.intro-image-large {
    width: 100%;
    max-width: 320px; /* Увеличено для рабочего стола */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 0, 0.1);
}

.intro-image-small {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 0, 0.1);
}

.intro-image-large:hover,
.intro-image-small:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--color-orange-primary);
}

/* Декоративные элементы */
.intro-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.intro-image:hover:before {
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .intro-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .intro-content h2:before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .intro-image-large,
    .intro-image-small {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 3rem 0;
    }
    
    .intro-box {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .intro-image-left {
        order: -1;
    }
    
    .intro-image-right {
        order: 1;
    }
    
    .intro-content {
        order: 0;
    }
    
    .intro-image-large {
        max-width: 180px;
    }
    
    .intro-image-small {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .sales-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .intro-content .highlight-text {
        padding: 0.8rem;
        margin: 1rem 0;
    }
}


  /* ========================================================================
     ENHANCED BENEFITS SECTION - КОНКУРЕНТНЫЕ ПРЕИМУЩЕСТВА
     ======================================================================== */

.benefits-section {
  background: linear-gradient(135deg, var(--color-lighter-gray-alt) 0%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.benefits-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ff6b00" opacity="0.03"/><circle cx="80" cy="40" r="0.3" fill="%23ff6b00" opacity="0.02"/><circle cx="40" cy="80" r="0.4" fill="%23ff6b00" opacity="0.025"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: -1;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 1;
  padding-top: 25px !important;
}

.badge-container {
  margin-bottom: 1.5rem;
  position: relative;
  height: 30px;
  z-index: 1;
}

.sales-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42) !important;
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  position: absolute !important;
  top: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4) !important;
  z-index: 10 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease !important;
}

.sales-badge:hover {
  transform: translateX(-50%) translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5) !important;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.section-header p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--color-dark-gray-alt);
  max-width: 95%;
  margin: 1.5rem auto 0;
  font-weight: 500;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: linear-gradient(145deg, white 0%, #fafbfc 100%);
  border-radius: 15px;
  padding: clamp(1.8rem, 2.5vw, 2.5rem);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
  border-radius: 15px 15px 0 0;
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--color-orange-primary);
}

.benefit-icon {
  width: clamp(65px, 8vw, 75px);
  height: clamp(65px, 8vw, 75px);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 66, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-orange-primary);
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 107, 0, 0.1);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42);
  color: white;
  transform: scale(1.1) rotate(8deg);
  border-color: white;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.benefit-icon i {
  font-size: clamp(22px, 3.5vw, 30px);
}

.benefit-card h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  text-align: left;
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-card p {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: var(--color-dark-gray-alt);
  line-height: 1.6;
  text-align: left;
  flex-grow: 1;
}

.benefits-extra {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.extra-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  text-align: left;
  background: linear-gradient(145deg, white 0%, #fafbfc 100%);
  padding: 1.3rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-green);
  position: relative;
  overflow: hidden;
}

.extra-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-green), #7cb83d);
}

.extra-item:hover {
  transform: translateY(-8px) translateX(8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-left-color: #7cb83d;
}

.check-icon {
  min-width: clamp(28px, 4vw, 36px);
  width: clamp(28px, 4vw, 36px);
  height: clamp(28px, 4vw, 36px);
  background: linear-gradient(135deg, var(--color-green), #7cb83d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(134, 188, 66, 0.4);
  transition: all 0.3s ease;
  margin-top: 2px;
}

.extra-item:hover .check-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(134, 188, 66, 0.5);
}

.check-icon i {
  font-size: clamp(0.8rem, 1.3vw, 1.1rem);
  font-weight: 600;
}

.extra-item p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-dark-gray);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .benefits-extra {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .benefits-grid {
    margin-bottom: 2rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .extra-item {
    padding: 1rem 1.2rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .sales-badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
  }
  
  .benefits-extra {
    gap: 0.8rem;
  }
  
  .extra-item {
    padding: 0.9rem 1rem;
  }
}

 /* ========================================================================
     ENHANCED TARGET SECTION - КОМПАКТНАЯ ВЕРСИЯ
     ======================================================================== */

.target-section {
    padding: 3rem 0; /* уменьшено с 5rem */
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    position: relative;
    z-index: 1;
}

.target-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.target-text {
    width: 100%;
    padding: clamp(1.5rem, 3vw, 3rem); /* уменьшено с 2-4rem */
    background: linear-gradient(145deg, white 0%, #fafbfc 100%);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06); /* уменьшено с 25px и прозрачность */
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.target-text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; /* уменьшено с 5px */
    background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
    border-radius: 20px 20px 0 0;
}

.target-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem); /* уменьшено с 2-2.8rem */
    font-weight: 800;
    color: var(--color-dark-gray);
    margin-top: 1rem;
    margin-bottom: 2rem; /* уменьшено с 2.5rem */
    position: relative;
    text-align: center;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
}

.target-text h2:before {
    content: 'ИДЕАЛЬНО ДЛЯ ВАС';
    position: absolute;
    top: -37px; /* уменьшено с -35px */
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.65rem, 1vw, 0.85rem); /* уменьшено */
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42);
    padding: 0.5rem 1.2rem; /* уменьшено */
    border-radius: 25px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25); /* уменьшено */
}

.target-text h2:after {
    content: '';
    position: absolute;
    bottom: -12px; /* уменьшено с -15px */
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* уменьшено с 100px */
    height: 3px; /* уменьшено с 4px */
    background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
    border-radius: 5px;
}

.target-text > p {
    font-size: clamp(1rem, 1.3vw, 1.2rem); /* уменьшено с 1.15-1.4rem */
    color: var(--color-dark-gray-alt);
    margin-bottom: 2rem; /* уменьшено с 2.5rem */
    line-height: 1.5; /* уменьшено с 1.6 */
    text-align: left; /* ПО ЛЕВОМУ КРАЮ */
    font-weight: 500;
}

.target-list {
    margin-bottom: 3rem; /* уменьшено с 3.5rem */
    padding-left: 0;
    text-align: left; /* ПО ЛЕВОМУ КРАЮ */
}

.target-list li {
    position: relative;
    padding-left: 50px; /* уменьшено с 60px */
    margin-bottom: 1.5rem; /* уменьшено с 2rem */
    font-size: clamp(1rem, 1.2vw, 1.1rem); /* уменьшено с 1.1-1.25rem */
    color: var(--color-dark-gray);
    line-height: 1.5; /* уменьшено с 1.7 */
    list-style: none;
    text-align: left; /* ПО ЛЕВОМУ КРАЮ */
    font-weight: 500;
    transition: all 0.3s ease;
}

.target-list li:hover {
    color: var(--color-orange-primary);
    transform: translateX(4px); /* чуть меньше сдвиг */
}

/* ГАЛОЧКИ ВМЕСТО ЦИФР */
.target-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%; 
    width: 32px; /* уменьшено с 38px */
    height: 32px; /* уменьшено с 38px */
    background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem; /* уменьшено с 1.3rem */
    box-shadow: 0 5px 12px rgba(255, 107, 0, 0.25); /* уменьшено */
    transition: all 0.3s ease;
    border: 2px solid white;
    transform: translateY(-50%);
}

.target-list li:hover:before {
    transform: translateY(-50%) scale(1.1) rotate(8deg); /* чуть меньше масштаб и поворот */
    box-shadow: 0 7px 18px rgba(255, 107, 0, 0.35); /* чуть меньше */
}

.industries {
    margin-bottom: 2rem; /* уменьшено с 3rem */
    padding: 1.5rem 0; /* уменьшено с 2rem */
    border-top: 2px solid rgba(255, 107, 0, 0.1);
    border-bottom: 2px solid rgba(255, 107, 0, 0.1);
}

.industries h4 {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem); /* уменьшено с 1.25-1.4rem */
    margin-bottom: 1rem; /* уменьшено с 1.5rem */
    font-weight: 700;
    color: var(--color-dark-gray);
    text-align: left; /* ПО ЛЕВОМУ КРАЮ */
    position: relative;
}

.industries h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px; /* уменьшено с -5px */
    width: 40px; /* уменьшено с 50px */
    height: 2px; /* уменьшено с 3px */
    background: var(--color-orange-primary);
    border-radius: 3px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem; /* чуть меньше */
    justify-content: flex-start; /* ПО ЛЕВОМУ КРАЮ */
}

.industry-tag {
    background: linear-gradient(135deg, var(--color-blue-ultra-light), #e0f2fe);
    color: var(--color-blue-dark);
    padding: 0.6rem 1.2rem; /* уменьшено с 0.8-1.5rem */
    border-radius: 25px;
    font-size: clamp(0.85rem, 1vw, 1rem); /* уменьшено с 0.95-1.05rem */
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    cursor: pointer;
}

/* ВЫДЕЛЕНИЕ НОВЫХ СФЕР */
.industry-tag.new-sphere {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 66, 0.15));
    color: var(--color-orange-primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
    font-weight: 700;
}

.industry-tag:hover {
    background: linear-gradient(135deg, var(--color-blue-dark), #1e40af);
    color: white;
    transform: translateY(-2px) scale(1.03); /* чуть меньше масштаб */
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.25); /* чуть меньше тень */
}

.industry-tag.new-sphere:hover {
    background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42);
    color: white;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
}

/* ИСПРАВЛЕННЫЙ ТЕКСТ БЕЗ КАВЫЧКИ */
.highlight-text {
    font-size: clamp(1rem, 1.2vw, 1.15rem); /* уменьшено с 1.1-1.3rem */
    font-weight: 600;
    text-align: left; /* ПО ЛЕВОМУ КРАЮ */
    color: var(--color-dark-gray);
    padding: 1.8rem; /* уменьшено с 2.5rem */
    margin-top: 1.5rem; /* уменьшено с 2rem */
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 140, 66, 0.12));
    border-left: 6px solid var(--color-orange-primary);
    border-radius: 0 15px 15px 0;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.1); /* уменьшено */
    position: relative;
    line-height: 1.5; /* уменьшено с 1.7 */
    border-right: 1px solid rgba(255, 107, 0, 0.2);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

/* ЗАМЕНЯЕМ ЭМОДЗИ НА FONT AWESOME ИКОНКУ */
.highlight-text:before {
    content: '\f080'; /* Font Awesome bar-chart иконка */
    font-family: 'FontAwesome';
    position: absolute;
    top: -8px;
    left: 5px;
    font-size: 1.3rem;
    background: white;
    color: var(--color-orange-primary); /* Цвет иконки */
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 0, 0.2);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
    .target-text {
        padding: 2rem 1.5rem;
        margin: 0 0.8rem;
    }
    
    .target-list li {
        padding-left: 45px;
        margin-bottom: 1.3rem;
    }
    
    .target-list li:before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .target-section {
        padding: 3rem 0;
    }
    
    .target-text {
        padding: 1.5rem 1rem;
        margin: 0 0.8rem;
    }
    
    .target-list li {
        padding-left: 40px;
        margin-bottom: 1rem;
    }
    
    .target-list li:before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .industry-tags {
        gap: 0.6rem;
    }
    
    .industries {
        padding: 1rem 0;
    }
    
    .highlight-text {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .target-section {
        padding: 2rem 0;
    }
    
    .target-text {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .target-list li {
        padding-left: 35px;
    }
    
    .target-list li:before {
        width: 25px;
        height: 25px;
        font-size: 0.85rem;
    }
    
    .highlight-text {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .industries {
        padding: 0.8rem 0;
    }
}

  /* ========================================================================
     PROCESS SECTION STYLES (МАКСИМАЛЬНО КОМПАКТНАЯ ВЕРСИЯ)
     ======================================================================== */

.process-section {
    background-color: var(--color-white);
    padding: 3rem 0; /* уменьшено с 4rem */
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 2rem; /* уменьшено */
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0.5rem 0; /* уменьшено с 1rem */
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 19px; /* сдвинуто ближе к кругам */
    height: 100%;
    width: 3px;
    background: var(--color-orange-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 60px; /* уменьшено с 70px */
    margin-bottom: 1rem; /* уменьшено с 1.5rem */
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px; /* уменьшено с 50px */
    height: 40px; /* уменьшено с 50px */
    background: var(--color-orange-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem; /* уменьшено с 1.5rem */
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(253, 121, 33, 0.3);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1rem 1.2rem; /* уменьшено с 1.2rem 1.5rem */
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid rgba(255, 107, 0, 0.1);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--color-orange-primary);
}

.timeline-content h3 {
    font-size: 1.1rem; /* уменьшено с 1.2rem */
    font-weight: 700;
    margin-bottom: 0.4rem; /* уменьшено с 0.5rem */
    color: var(--color-dark-gray);
    line-height: 1.3; /* добавлено для компактности */
}

.timeline-content p {
    font-size: 0.9rem; /* уменьшено с 0.95rem */
    color: var(--color-dark-gray-alt);
    line-height: 1.3; /* уменьшено с 1.4 */
    margin: 0;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .process-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 55px;
        margin-bottom: 0.8rem;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        left: 0;
    }
    
    .process-timeline:before {
        left: 17px;
    }
    
    .timeline-content {
        padding: 0.8rem 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 0.6rem;
    }
    
    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .process-timeline:before {
        left: 15px;
    }
    
    .timeline-content {
        padding: 0.7rem 0.8rem;
    }
}


  /* ========================================================================
     ENHANCED WHY US SECTION - ОБНОВЛЕННАЯ ВЕРСИЯ
     ======================================================================== */

.why-us-section {
  background: linear-gradient(135deg, var(--color-white-muted) 0%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-us-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  z-index: -1;
}

.why-us-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-dark-gray);
  margin-bottom: 3.5rem;
  text-align: center !important; /* ЦЕНТРИРОВАНИЕ ЗАГОЛОВКА */
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.2;
}

.why-us-section h2:before {
  content: 'ЭКСПЕРТНОЕ РЕШЕНИЕ';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--color-orange-primary), #ff8c42);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.why-us-section h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
  border-radius: 5px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.expertise-card {
  background: linear-gradient(145deg, white 0%, #fafbfc 100%);
  border-radius: 15px;
  padding: clamp(1.8rem, 2.5vw, 2.5rem);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  border: 1px solid rgba(255, 107, 0, 0.1);
  overflow: hidden;
}

.expertise-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
  border-radius: 15px 15px 0 0;
}

.expertise-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--color-orange-primary);
}

.expertise-number {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: rgba(255, 107, 0, 0.12);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  transition: all 0.4s ease;
}

.expertise-card:hover .expertise-number {
  color: rgba(255, 107, 0, 0.2);
  transform: scale(1.15) rotate(5deg);
}

.expertise-card h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--color-dark-gray);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
  padding-right: 80px; /* место для номера */
}

.expertise-card p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-dark-gray-alt);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ОБНОВЛЕННЫЙ БЛОК КАЧЕСТВА */
.quality-badge {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--color-orange-primary) 0%, #ff8c42 100%);
  border-radius: 20px;
  padding: clamp(2rem, 3vw, 3rem);
  color: white;
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.quality-badge:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

.badge-icon {
  flex-shrink: 0;
  width: clamp(70px, 10vw, 90px);
  height: clamp(70px, 10vw, 90px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.quality-badge:hover .badge-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255, 255, 255, 0.3);
}

.badge-icon i {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
}

.badge-text {
  flex: 1;
}

.badge-text h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: white;
  line-height: 1.3;
}

.badge-text p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.5;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .quality-badge {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .badge-icon {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 4rem 0;
  }
  
  .expertise-card {
    padding: 1.5rem;
  }
  
  .expertise-card h3 {
    padding-right: 60px;
  }
  
  .quality-badge {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .expertise-grid {
    gap: 1rem;
  }
  
  .expertise-card {
    padding: 1.2rem;
  }
  
  .expertise-number {
    top: 10px;
    right: 15px;
  }
  
  .expertise-card h3 {
    padding-right: 50px;
  }
}

/* ========================================================================
   PRICE SECTION STYLES - КОМПАКТНАЯ ВЕРСИЯ
   ======================================================================== */

.price-section {
  background: linear-gradient(135deg, var(--color-white) 0%, #f8fafc 100%);
  padding: 3rem 0; /* уменьшено с 5rem */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.price-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
  z-index: -1;
}

.section-header {
  margin-bottom: 1.5rem; /* уменьшено */
}

.price-comparison {
  padding: 1rem 0; /* уменьшено с 2rem */
  max-width: 1100px;
  margin: 0 auto;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; /* уменьшено с 3rem */
}

/* ТРАДИЦИОННЫЙ ПОДХОД */
.price-traditional {
  background: linear-gradient(145deg, white 0%, #fafbfc 100%);
  border-radius: 15px; /* уменьшено с 20px */
  padding: 1.8rem; /* уменьшено с 2.5rem */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid rgba(220, 38, 38, 0.1);
}

.price-traditional:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px; /* уменьшено с 5px */
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border-radius: 15px 15px 0 0;
}

/* ВИРТУАЛЬНЫЙ ОФИС */
.price-virtual {
  background: linear-gradient(145deg, white 0%, #fffbf7 100%);
  border-radius: 15px;
  padding: 1.8rem;
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  transform: scale(1.03); /* уменьшено с 1.05 */
  border: 2px solid rgba(255, 107, 0, 0.2);
}

.price-virtual:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange-primary), #ff8c42);
  border-radius: 15px 15px 0 0;
}

.price-traditional:hover {
  transform: translateY(-5px); /* уменьшено с -8px */
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.12);
}

.price-virtual:hover {
  transform: scale(1.05) translateY(-6px); /* уменьшено */
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

/* ЗАГОЛОВКИ СЕКЦИЙ */
.price-traditional h3,
.price-virtual h3 {
  font-size: clamp(1.3rem, 2vw, 1.5rem); /* уменьшено */
  font-weight: 700;
  margin-bottom: 1.2rem; /* уменьшено с 2rem */
  text-align: center;
  color: var(--color-dark-gray);
  position: relative;
  padding-bottom: 0.8rem; /* уменьшено */
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.price-traditional h3:after {
  content: 'ДОРОГО';
  position: absolute;
  top: -20px; /* уменьшено с -25px */
  right: 0;
  background: #dc2626;
  color: white;
  padding: 0.2rem 0.6rem; /* уменьшено */
  border-radius: 12px;
  font-size: 0.65rem; /* уменьшено */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price-virtual h3:after {
  content: 'ВЫГОДНО';
  position: absolute;
  top: -20px;
  right: 0;
  background: var(--color-orange-primary);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ЭЛЕМЕНТЫ ЦЕН */
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0; /* уменьшено с 0.8rem */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.price-item:hover {
  background-color: rgba(255, 107, 0, 0.04);
  margin: 0 -0.8rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border-radius: 6px;
}

/* НАЗВАНИЯ УСЛУГ */
.price-title {
  font-size: clamp(0.85rem, 1vw, 0.9rem); /* уменьшено */
  color: var(--color-dark-gray);
  max-width: 65%;
  text-align: left;
  line-height: 1.4; /* уменьшено с 1.5 */
  padding-right: 0.8rem;
  font-weight: 500;
  position: relative;
}

/* ЗНАЧЕНИЯ ЦЕН */
.price-value {
  font-size: clamp(0.85rem, 1vw, 0.95rem); /* уменьшено */
  font-weight: 700;
  color: #dc2626;
  text-align: right;
  white-space: nowrap;
  min-width: 100px; /* уменьшено с 120px */
}

/* ВЫДЕЛЕННАЯ СТРОКА С РИСКАМИ */
.price-item.highlight {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  margin: 1rem -1.8rem 0; /* уменьшено */
  padding: 1rem 1.8rem; /* уменьшено */
  border-radius: 8px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.price-item.highlight .price-title {
  font-weight: 700;
  color: #dc2626;
  font-size: 1rem; /* уменьшено с 1.1rem */
}

.price-item.highlight .price-value {
  color: #dc2626;
  font-weight: 800;
  font-size: 1.1rem; /* уменьшено с 1.2rem */
}

/* ВИРТУАЛЬНЫЙ ОФИС - ЦЕНА */
.price-range {
  text-align: center;
  margin: 1.5rem 0; /* уменьшено с 2.5rem */
  padding: 1.5rem; /* уменьшено с 2rem */
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 66, 0.05));
  border-radius: 12px;
  border: 2px solid rgba(255, 107, 0, 0.2);
}

.price-value-big {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem); /* уменьшено */
  font-weight: 800;
  color: var(--color-orange-primary);
  margin-bottom: 0.3rem; /* уменьшено */
  line-height: 1;
  text-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.price-period {
  font-size: clamp(0.9rem, 1.1vw, 1rem); /* уменьшено */
  color: var(--color-dark-gray-alt);
  font-weight: 600;
}

.price-note {
  text-align: center;
  font-size: clamp(0.8rem, 0.9vw, 0.85rem); /* уменьшено */
  color: var(--color-dark-gray-alt);
  margin-bottom: 1.5rem; /* уменьшено с 2rem */
  padding: 0.8rem; /* уменьшено */
  background: rgba(255, 107, 0, 0.05);
  border-radius: 8px;
  line-height: 1.4;
  font-weight: 500;
}

/* ЧТО ВКЛЮЧЕНО */

.price-includes h4 {
  font-size: clamp(1rem, 1.1vw, 1.1rem); /* уменьшено */
  font-weight: 700;
  margin-bottom: 1rem; /* уменьшено */
  color: var(--color-dark-gray);
  text-align: left;
  position: relative;
}

.price-includes h4:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1.1rem;
  transform: translateX(-50%);
  width: 40px; /* уменьшено с 50px */
  height: 2px;
  background: var(--color-orange-primary);
  border-radius: 2px;
}

.price-includes ul {
  padding-left: 0;
  list-style: none;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* уменьшено */
  margin-bottom: 0.6rem; /* уменьшено с 0.8rem */
  font-size: clamp(0.85rem, 1vw, 0.9rem); /* уменьшено */
  color: var(--color-dark-gray);
  padding: 0.3rem 0; /* уменьшено */
  transition: all 0.3s ease;
}

.price-includes li:hover {
  background-color: rgba(134, 188, 66, 0.08);
  padding-left: 0.8rem;
  margin-left: -0.8rem;
  border-radius: 6px;
}

.price-includes li i {
  color: var(--color-green);
  font-size: 1rem; /* уменьшено */
  width: 18px; /* уменьшено с 20px */
  text-align: center;
  background: rgba(134, 188, 66, 0.1);
  border-radius: 50%;
  padding: 3px; /* уменьшено */
}

/* КНОПКА */
.mm-cta-btn {
  margin-top: 1rem; /* уменьшено */
}

/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
  .price-table {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .price-virtual {
    transform: none;
  }
  
  .price-virtual:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .price-section {
    padding: 2.5rem 0;
  }
  
  .price-traditional,
  .price-virtual {
    padding: 1.5rem;
  }
  
  .price-item.highlight {
    margin: 0.8rem -1.5rem 0;
    padding: 0.8rem 1.5rem;
  }
  
  .price-range {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .price-traditional,
  .price-virtual {
    padding: 1.2rem;
  }
  
  .price-title {
    max-width: 60%;
  }
  
  .price-value {
    min-width: 80px;
    font-size: 0.8rem;
  }
}


/* ========================================================================
   CTA SECTION STYLES
   ======================================================================== */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(13, 12, 54, 0.9) 100%), url('assets/templates/img/ban2.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-box p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================================================
   FAQ SECTION STYLES
   ======================================================================== */

.faq-section {
  background-color: var(--color-white-soft);
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  margin: 0;
  color: var(--color-dark-gray);
  transition: all 0.3s ease;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange-primary);
  transition: all 0.3s ease;
}

.faq-question:hover h3 {
  color: var(--color-orange-primary);
}

.faq-question:hover .faq-toggle {
  background-color: var(--color-orange-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  display: none;
  text-align: left;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark-gray-alt);
}

.faq-item.active .faq-question {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-toggle {
  background-color: var(--color-orange-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ========================================================================
   FOOTER STYLES
   ======================================================================== */

.site-footer {
  background-color: var(--color-blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-info .logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 90%;
}

.footer-info .social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-orange-primary);
  transform: translateY(-5px);
}

.footer-nav h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-nav h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--color-orange-primary);
  border-radius: 3px;
}

.footer-nav ul {
  padding-left: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: white;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
  background-color: var(--color-orange-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* ========================================================================
   RESPONSIVE STYLES
   ======================================================================== */

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    padding: 3rem 0 4rem;
  }
  
  .hero-description {
    max-width: 90%;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-clients {
    justify-content: center;
  }
  
  .intro-box {
    flex-direction: column;
  }
  
  .intro-content {
    order: 2;
  }
  
  .intro-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .target-content {
    flex-direction: column;
  }
  
  .target-image {
    margin-bottom: 2rem;
  }
  
  .price-virtual {
    transform: scale(1);
  }
  
  .price-virtual:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .problem-card,
  .benefit-card,
  .expertise-card {
    padding: 1.5rem;
  }
  
  .problem-icon,
  .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .emergency-button {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
  }
  
  .emergency-icon {
    margin: 0 auto 1.5rem;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .price-table {
    grid-template-columns: 1fr;
  }
  
  .price-traditional {
    order: 2;
  }
  
  .price-virtual {
    order: 1;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    min-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-links a {
    margin: 0 0.5rem;
  }
}

/* ========================================================================
   UTILITIES AND ANIMATIONS
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange-primary) 0%, var(--color-orange-dark) 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(253, 121, 33, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(253, 121, 33, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

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

.justify-content-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-orange-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-orange-dark);
}

/* Contact section - change grey to dark blue */
.contact-section {
  background-color: var(--color-blue-dark);
}

.contact-overlay {
  background-color: var(--color-blue-dark);
}

.faq-section {
  --faq-accent: var(--color-orange-primary);
  --faq-accent-light: rgba(253, 121, 33, 0.1);
  --faq-accent-glow: rgba(253, 121, 33, 0.4);
  --faq-timing: cubic-bezier(0.34, 1.56, 0.64, 1); /* Упругая анимация */
  padding-bottom: 7rem; /* Дополнительное пространство внизу */
}

.faq-list {
  position: relative;
}

/* Градиентная линия между элементами */
.faq-list:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, 
    transparent, 
    var(--faq-accent-light), 
    var(--faq-accent-light), 
    transparent);
  opacity: 0.5;
  transform: translateX(-50%);
  z-index: 0;
}

/* Основной элемент FAQ */
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.5s var(--faq-timing);
  position: relative;
  z-index: 1;
  transform-origin: center;
}

/* Анимация появления */
.faq-item.fade-in {
  animation: fadeInUp 0.6s var(--faq-timing) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ховер-эффект */
.faq-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Активное состояние */
.faq-item.active {
  box-shadow: 0 20px 40px rgba(253, 121, 33, 0.15);
  transform: translateY(-5px);
  border-left: 4px solid var(--faq-accent);
}

/* Эффект подпрыгивания */
/* .faq-item.bounce {
  animation: bounce 0.5s var(--faq-timing);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(-15px);
  }
} */

/* Заголовок вопроса */
.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  user-select: none;
  z-index: 2;
}

/* Эффект волны при клике */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(253, 121, 33, 0.15);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  z-index: -1;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Стилизация заголовка */
.faq-question h3 {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  margin: 0;
  padding-right: 2rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Эффект подчеркивания при наведении */
.faq-question h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--faq-accent);
  transition: width 0.3s ease;
}

.faq-question:hover h3:after {
  width: 100%;
}

.faq-item.active .faq-question h3 {
  color: var(--faq-accent);
  font-weight: 700;
}

/* Стилизация иконки переключения */
.faq-toggle {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--faq-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faq-accent);
  transition: all 0.5s var(--faq-timing);
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 0 transparent;
}

/* Эффект свечения */
.faq-toggle.glow {
  animation: glow 1s ease-in-out;
  box-shadow: 0 0 0 10px var(--faq-accent-glow);
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 0 15px transparent;
  }
}

/* Анимация вращения иконки */
.faq-toggle.rotate i {
  transform: rotate(45deg);
}

.faq-toggle i {
  font-size: 1rem;
  transition: transform 0.5s var(--faq-timing);
}

.faq-item.active .faq-toggle {
  background-color: var(--faq-accent);
  color: white;
  transform: rotate(45deg);
}

/* Стилизация ответа */
.faq-answer {
  padding: 0 2rem;
  overflow: hidden;
  height: 0;
  display: none;
  transition: height 0.5s var(--faq-timing);
}

.faq-answer p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--color-dark-gray-alt);
  font-size: 1rem;
  transition: opacity 0.5s ease, transform 0.5s var(--faq-timing);
  position: relative;
  padding-left: 15px;
}

/* Стильная полоска перед текстом ответа */
.faq-answer p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  height: 70%;
  width: 3px;
  background: linear-gradient(to bottom, var(--faq-accent), transparent);
  border-radius: 3px;
}

/* Добавляем декоративные элементы */
.faq-item:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--faq-accent-light);
  transform: translateY(-50%) scale(0);
  transition: transform 0.5s var(--faq-timing);
  z-index: 0;
}

.faq-item.active:after {
  transform: translateY(-50%) scale(1);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
  .faq-list:before {
    left: 20px;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 1rem;
  }
  
  .faq-toggle {
    min-width: 28px;
    height: 28px;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
}

/* Дополнительная анимация для мобильных устройств */
@media (max-width: 576px) {
  .faq-item:hover {
    transform: none;
  }
  
  .faq-item.active {
    transform: translateX(5px);
  }
}