/*
* Стили для страницы 1С Фреш
* Использует существующие переменные из :root
*/

/* Хлебные крошки */
.breadcrumbs {
    padding: var(--spacing-4) 0;
    background-color: var(--color-white-soft);
    border-bottom: 1px solid var(--color-lighter-gray);
  }
  
  .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--font-size-sm);
  }
  
  .breadcrumb-list li {
    display: inline-flex;
    align-items: center;
  }
  
  .breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 var(--spacing-2);
    color: var(--color-light-gray);
  }
  
  .breadcrumb-list a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition-standard);
  }
  
  .breadcrumb-list a:hover {
    color: var(--color-orange-primary);
  }
  
  .breadcrumb-list .active {
    color: var(--color-orange-primary);
    font-weight: var(--font-weight-medium);
  }
  
  /* Герой секция */
  .fresh-hero {
    padding: var(--spacing-10) 0;
    background: linear-gradient(135deg, var(--color-white), var(--color-white-soft));
    position: relative;
    overflow: hidden;
    margin-top: 10%;
    z-index: 1;

  }
  
  .fresh-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-content {
    flex: 1;
    padding-right: var(--spacing-8);
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  .fresh-hero h1 {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-3);
    line-height: var(--line-height-tight);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-gray);
    margin-bottom: var(--spacing-6);
    line-height: var(--line-height-normal);
  }
  
  .hero-cta {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
  }
  
  /* О 1С Фреш */
  .fresh-about {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white);
    z-index: 1;
position: relative;
  }
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-10);
  }
  
  .about-text h2 {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-5);
  }
  
  .about-text p {
    font-size: var(--font-size-lg);
    color: var(--color-gray);
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-4);
  }
  
  .highlight {
    font-weight: var(--font-weight-medium);
    color: var(--color-orange-primary);
    font-size: var(--font-size-lg);
  }
  
  .about-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-6);
    margin-top: var(--spacing-10);
  }
  
  .feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-card);
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: var(--transition-standard);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-service-hover);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    margin: 0 auto var(--spacing-4);
  }
  
  .feature-icon i {
    font-size: 28px;
    color: var(--color-white);
  }
  
  .feature-card h3 {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-3);
  }
  
  .feature-card p {
    color: var(--color-gray);
    font-size: var(--font-size-base);
  }
  
  /* Преимущества */
  .fresh-benefits {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white-soft);
    z-index: 1;
position: relative;
  }
  
  .fresh-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-10);
    text-align: center;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-standard);
  }
  
  .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    margin-right: var(--spacing-4);
    flex-shrink: 0;
  }
  
  .benefit-icon i {
    font-size: 20px;
    color: var(--color-white);
  }
  
  .benefit-content h3 {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-2);
    text-align: left;
  }
  
  .benefit-content p {
    color: var(--color-gray);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    margin: 0;
    text-align: left;
  }
  
  /* Безопасность */
  .fresh-security {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;

  }
  
  .security-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: var(--spacing-10);
  }
  
  .security-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .security-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  .security-text {
    flex: 1;
  }
  
  .security-text h2 {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-5);
  }
  
  .security-text p {
    font-size: var(--font-size-lg);
    color: var(--color-gray);
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-5);
  }
  
  .security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .security-list li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-4);
    color: var(--color-gray-dark);
    font-size: var(--font-size-base);
  }
  
  .security-list li i {
    width: 24px;
    height: 24px;
    background-color: var(--color-orange-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-right: var(--spacing-3);
    font-size: 12px;
  }
  
  /* Идеальные случаи */
  .fresh-ideal {
    padding: var(--spacing-16) 0;
    background-color: var(--color-white-soft);
    position: relative;
    z-index: 1;

  }
  
  .fresh-ideal .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .fresh-ideal h2 {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-10);
  }
  
  .ideal-cases {
    display: flex;
    justify-content: center;
    gap: var(--spacing-6);
  }
  
  .ideal-case {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-6);
    box-shadow: var(--shadow-card);
    flex: 1;
    max-width: 330px;
    transition: var(--transition-standard);
  }
  
  .ideal-case:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-service-hover);
  }
  
  .case-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    margin: 0 auto var(--spacing-4);
  }
  
  .case-icon i {
    font-size: 24px;
    color: var(--color-white);
  }
  
  .ideal-case p {
    color: var(--color-gray-dark);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
  }
  
  /* Call to Action */
  .fresh-cta {
    padding: var(--spacing-16) 0;
    background: linear-gradient(135deg, var(--color-orange-primary), var(--color-orange-dark));
    color: var(--color-white);
    position: relative;
    z-index: 1;

  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-content h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-4);
    color: var(--color-white);
  }
  
  .cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-8);
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
  }
  
  /* Кнопки */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    transition: var(--transition-standard);
    text-decoration: none;
    border: none;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    gap: var(--spacing-2);
  }
  
  .btn i {
    font-size: 1.1em;
  }
  
  .btn-primary {
    background-color: var(--color-orange-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-button);
  }
  
  .btn-primary:hover {
    background-color: var(--color-orange-dark);
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-3px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--color-orange-primary);
    border: 1px solid var(--color-orange-primary);
  }
  
  .fresh-cta .btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
  }
  
  .btn-outline:hover {
    background-color: var(--color-orange-primary);
    color: var(--color-white);
    transform: translateY(-3px);
  }
  
  .fresh-cta .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-orange-primary);
    transform: translateY(-3px);
  }
  
  /* Адаптивность */
  @media (max-width: 1200px) {
    .container {
      max-width: 90%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 992px) {
    .fresh-hero .container,
    .security-content {
      flex-direction: column;
    }
    
    .hero-content,
    .security-text {
      padding-right: 0;
      margin-bottom: var(--spacing-8);
      text-align: center;
    }
    
    .security-text {
      order: -1;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .about-cards,
    .ideal-cases {
      flex-direction: column;
      align-items: center;
    }
    
    .feature-card,
    .ideal-case {
      max-width: 100%;
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .fresh-hero h1 {
      font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
      font-size: var(--font-size-lg);
    }
    
    .about-text h2,
    .section-title,
    .fresh-ideal h2,
    .cta-content h2 {
      font-size: var(--font-size-2xl);
    }
    
    .security-text h2 {
      font-size: var(--font-size-xl);
    }
    
    .security-text p,
    .about-text p,
    .cta-content p {
      font-size: var(--font-size-base);
    }
    
    .hero-cta,
    .cta-buttons {
      flex-direction: column;
      gap: var(--spacing-3);
    }
    
    .fresh-hero,
    .fresh-about,
    .fresh-benefits,
    .fresh-security,
    .fresh-ideal,
    .fresh-cta {
      padding: var(--spacing-10) 0;
    }
  }
  
  @media (max-width: 576px) {
    .fresh-hero h1 {
      font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
      font-size: var(--font-size-base);
    }
    
    .about-text h2,
    .section-title,
    .fresh-ideal h2,
    .cta-content h2 {
      font-size: var(--font-size-xl);
    }
    
    .benefit-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .benefit-icon {
      margin-right: 0;
      margin-bottom: var(--spacing-4);
    }
    
    .security-list li {
      align-items: flex-start;
    }
    
    .security-list li i {
      margin-top: 3px;
    }
    
    .breadcrumb-list {
      font-size: var(--font-size-xs);
    }
  }

  /* ===== ЦЕНЫ ===== */
.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-bottom: 25px;
  font-weight: 800;
  position: relative;
  word-break: break-word;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.price-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sales-primary, #ff6b00), #ff8c40);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.price-content:hover .price-title::after {
  width: 120px;
}

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

.price-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.price-badge {
  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 {
  font-weight: 700;
  color: var(--sales-secondary, #0a2540);
  font-size: 16px;
  flex: 1;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.price-calculator {
  background: linear-gradient(120deg, #0a2540 0%, #153a5f 100%);
  border-radius: 24px;
  padding: clamp(25px, 5vw, 45px);
  height: 100%;
  position: relative;
  box-shadow: 0 15px 50px rgba(10, 37, 64, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-calculator:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.3);
}

/* Улучшенный фоновый эффект */
.price-calculator::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0) 70%);
  animation: pulse-bg 15s infinite alternate ease-in-out;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* Добавим второй элемент для более интересного фона */
.price-calculator::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.1) 0%, rgba(0, 132, 255, 0) 70%);
  animation: pulse-bg 18s infinite alternate-reverse ease-in-out;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes pulse-bg {
  0% {
    opacity: 0.6;
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: rotate(10deg);
  }
}

.calculator-content {
  position: relative;
  z-index: 1;
}

.calculator-title {
  font-size: clamp(24px, 5vw, 32px);
  color: white;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
}

.calculator-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sales-primary, #ff6b00), #ff8c40);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.price-calculator:hover .calculator-title::after {
  width: 120px;
}

.calculator-text {
  font-size: clamp(16px, 4vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Гарантия удовлетворения */
.satisfaction-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.satisfaction-guarantee:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.satisfaction-guarantee i {
  font-size: 26px;
  color: var(--sales-savings, #ffc107);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

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

.satisfaction-guarantee span {
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.open-price {
  background: linear-gradient(135deg, var(--sales-primary, #ff6b00), #ff8c40);
  color: white;
  font-weight: 700;
  font-size: clamp(16px, 4vw, 18px);
  padding: 18px clamp(20px, 5vw, 35px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

.open-price::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: 1;
  pointer-events: none;
}

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

.open-price:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #ff8c40, var(--sales-primary, #ff6b00));
}

.open-price:active {
  transform: translateY(0px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.open-price:hover::before {
  animation: shine 1.5s infinite;
}

.open-price i {
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.open-price:hover i {
  transform: translateX(6px);
}

/* Дополнительные стили для некоторых элементов */
.container {
  position: relative;
}

/* Медиа-запросы для различных размеров экрана */
@media (max-width: 1199px) {
  .price-section {
    padding: 70px 15px;
  }
  
  .price-badge {
    padding: 16px;
  }
}

@media (max-width: 991px) {
  .price-content, .price-calculator {
    margin-bottom: 35px;
  }
  
  .price-section {
    padding: 60px 15px;
  }
}

@media (max-width: 767px) {
  .price-section {
    padding: 50px 15px;
  }
  
  .price-offer-badge {
    top: 15px;
    right: 15px;
    font-size: 12px;
    padding: 6px 15px;
  }
  
  .badge-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  
  .price-badge {
    padding: 14px;
    gap: 12px;
  }
  
  .price-badge:hover {
    transform: translateY(-5px);
  }
  
  .satisfaction-guarantee {
    padding: 15px 18px;
  }
}

@media (max-width: 576px) {
  .price-section {
    padding: 40px 10px;
  }
  
  .price-content, .price-calculator {
    padding: 25px 20px;
  }
  
  .price-badges {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .satisfaction-guarantee {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 15px;
  }
  
  .open-price {
    padding: 16px 24px;
  }
  
  .price-title::after,
  .calculator-title::after {
    width: 60px;
  }
  
  .price-content:hover .price-title::after,
  .price-calculator:hover .calculator-title::after {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .price-offer-badge {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .price-badge {
    padding: 12px;
  }
  
  .badge-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .open-price {
    font-size: 14px;
    padding: 14px 20px;
  }
  
  .open-price i {
    font-size: 18px;
  }
}

/* Добавление темного режима */
@media (prefers-color-scheme: dark) {
  .price-content {
    background: #1a1f36;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .price-badge {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .price-text {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .price-title, .badge-text {
    color: white;
  }
  
  .price-section {
    background: #0f1729;
  }
}

/* Анимация для появления элементов при прокрутке */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.price-content {
  animation-delay: 0.1s;
}

.price-calculator {
  animation-delay: 0.3s;
}

/* Дополнительные улучшения доступности */
.open-price:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.5), 0 10px 30px rgba(255, 107, 0, 0.3);
  outline: none;
}

.price-badge:focus-within {
  outline: 2px solid var(--sales-primary, #ff6b00);
  outline-offset: 2px;
}
