/* ========== ПЕРЕМЕННЫЕ ========== */
:root {
  --primary: #2c5740;
  --primary-dark: #1e4a31;
  --primary-light: #e6f0ea;
  --secondary: #c0a86a;
  --secondary-glow: rgba(192, 168, 106, 0.3);
  --accent-gradient: linear-gradient(135deg, #2c5740 0%, #c0a86a 100%);
  --bg-gradient-1: linear-gradient(135deg, rgba(44, 87, 64, 0.03) 0%, rgba(192, 168, 106, 0.05) 100%);
  --bg-gradient-2: linear-gradient(180deg, rgba(44, 87, 64, 0.02) 0%, rgba(192, 168, 106, 0.03) 100%);
  --pattern-dots: radial-gradient(circle, rgba(44, 87, 64, 0.05) 1px, transparent 1px);
  --pattern-lines: repeating-linear-gradient(45deg, rgba(44, 87, 64, 0.03) 0, rgba(44, 87, 64, 0.03) 1px, transparent 1px, transparent 10px);
  --gray-bg: #f8faf8;
  --glass-bg: rgba(255, 255, 255, 0.92);
  --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ========== ОБЩИЕ ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: white;
  color: #1a2e1a;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(44, 87, 64, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: '';
  position: fixed;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 168, 106, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

.analytics-pixel {
  left: -9999px;
  position: absolute;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 9998;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__body {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(35, 79, 56, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #173b2a;
  box-shadow: 0 18px 42px rgba(24, 35, 28, 0.18);
  pointer-events: auto;
}

.cookie-consent__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(44, 87, 64, 0.1);
  color: #234f38;
  font-size: 1.2rem;
}

.cookie-consent__copy {
  min-width: 0;
}

.cookie-consent__copy strong {
  display: block;
  color: #163322;
  font-size: 1rem;
  line-height: 1.25;
}

.cookie-consent__copy p {
  margin: 0.25rem 0 0;
  color: #4f6157;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent__copy a {
  color: #176b54;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.cookie-consent__button {
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 87, 64, 0.18);
}

.cookie-consent__button-primary {
  background: #234f38;
  color: #ffffff;
}

.cookie-consent__button-primary:hover {
  background: #163322;
}

.cookie-consent__button-secondary {
  border-color: rgba(35, 79, 56, 0.18);
  background: #f5f8f6;
  color: #234f38;
}

.cookie-consent__button-secondary:hover {
  border-color: rgba(35, 79, 56, 0.32);
  background: #ffffff;
}

@media (max-width: 767px) {
  .cookie-consent {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
  }

  .cookie-consent__body {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cookie-consent__icon {
    display: none;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__button {
    flex: 1 1 12rem;
  }
}

/* Прелоадер */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========== НАВИГАЦИЯ (статичная, над баннером) ========== */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0;
  z-index: 1030;
}
.navbar-brand {
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}
.brand-gradient {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-light {
  font-weight: 300;
  color: #2c3e2b;
}
.nav-link {
  font-weight: 500;
  margin: 0 0.25rem;
  transition: var(--transition);
  color: #1e2a1e;
}
.nav-link:hover {
  color: var(--primary);
}

/* Кнопки в навбаре - убираем синюю обводку */
.navbar .btn {
  outline: none !important;
  box-shadow: none !important;
}
.navbar .btn:focus, .navbar .btn:active, .navbar .btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.navbar .btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border: none !important;
}
.navbar .btn-primary:hover, .navbar .btn-primary:focus, .navbar .btn-primary:active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 4px 12px rgba(44, 87, 64, 0.2) !important;
}
.navbar .btn-outline-primary {
  border: 1.5px solid var(--primary) !important;
}
.navbar .btn-outline-primary:hover, .navbar .btn-outline-primary:focus, .navbar .btn-outline-primary:active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  outline: none !important;
  box-shadow: none !important;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border: none !important;
  padding: 0.5rem 1.3rem;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(44, 87, 64, 0.2);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 87, 64, 0.3) !important;
  filter: brightness(1.02);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  outline: none !important;
  border: none !important;
}
.btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.navbar .btn:focus, .navbar .btn:active, .navbar .btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.btn-outline-primary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 40px;
  font-weight: 500;
  background: transparent;
  transition: var(--transition);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-primary:focus, .btn-outline-primary:active {
  outline: none !important;
  box-shadow: none !important;
}
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* ========== КАРУСЕЛЬ (баннер без кнопок) ========== */
.hero-carousel {
  position: relative;
  overflow: hidden;
}
.carousel-item {
  height: 70vh;
  min-height: 500px;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.carousel-banner-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: -6px;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 2rem;
}
.carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-bg-primary {
  background-image: linear-gradient(135deg, #0a1a0a, #1a3a1a);
}

.carousel-bg-dark {
  background-image: linear-gradient(135deg, #111111, #2a2a2a);
}

.carousel-bg-teal {
  background-image: linear-gradient(135deg, #001d1d, #004040);
}

/* Индикаторы-кружочки */
.carousel-indicators {
  bottom: 30px;
  margin-bottom: 0;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #ffffff;
  margin: 0 6px;
  opacity: 1;
  transition: all 0.3s ease;
}
.carousel-indicators [data-bs-target].active {
  background-color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.2);
}
.carousel-indicators [data-bs-target]:hover {
  border-color: #ffffff;
  opacity: 1;
}

/* ========== БЛОК СТАТИСТИКИ ПОД КАРУСЕЛЬЮ ========== */
.stats-bar {
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}
.stats-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stats-icon {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.stats-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}
.stats-label {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stats-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}
.stats-action .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 87, 64, 0.25);
}
.stats-action .btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 87, 64, 0.35);
  color: white;
}
.stats-action .btn-more i {
  transition: transform 0.3s ease;
}
.stats-action .btn-more:hover i {
  transform: translateY(3px);
}
.stats-action .btn-login-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 87, 64, 0.25);
}
.stats-action .btn-login-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 87, 64, 0.35);
  color: white;
}

/* ========== ЯКОРНАЯ НАВИГАЦИЯ (липкая) ========== */
.anchor-nav-wrapper {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1020;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.anchor-nav {
  background: transparent;
  padding: 0.5rem 0;
}
.anchor-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-list::-webkit-scrollbar {
  display: none;
}
.anchor-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--gray-bg);
  border-radius: 40px;
  color: #5a6855;
  font-weight: 500;
  font-size: 0.93rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
}
.anchor-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.anchor-link.active {
  background: var(--primary);
  color: white;
}
.anchor-nav {
  padding: 0.5rem 0;
}
.anchor-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  color: #2c3e2b;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.anchor-link i {
  font-size: 0.9rem;
  color: var(--primary);
}
.anchor-link:hover, .anchor-link.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.anchor-link:hover i {
  transform: scale(1.1);
}

/* ========== СЕКЦИИ (добавлены отступы) ========== */
.section-features, .section-steps, .section-pricing, .section-testimonials, .section-faq {
  padding: 5rem 0;
  scroll-margin-top: 80px;
  position: relative;
}
.section-head {
  margin-bottom: 3rem;
  position: relative;
}
.section-head::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
.badge.bg-primary-soft {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-weight: 500;
  border: 1px solid rgba(44, 87, 64, 0.1);
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(44, 87, 64, 0.08);
  border-color: rgba(44, 87, 64, 0.15);
}
.feature-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8d8 100%);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  line-height: 1;
  transition: all 0.4s ease;
  position: relative;
}
.feature-card-icon i {
  font-size: 2rem;
}
.feature-card-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: var(--accent-gradient);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.feature-card:hover .feature-card-icon::after {
  opacity: 0.2;
}
.feature-card:hover .feature-card-icon {
  background: var(--accent-gradient);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.feature-card p {
  color: #5a6855;
  line-height: 1.7;
  font-size: 0.98rem;
}
/* ========== ШАГИ ========== */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.step-item {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.step-icon-bg {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 2.5rem;
  transition: all 0.4s ease;
}
.step-item:hover .step-icon-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  transform: scale(1.05);
}
.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--secondary) 0%, #d4b978 100%);
  color: #1a2e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.step-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}
.step-item p {
  color: #5a6855;
  line-height: 1.7;
  font-size: 0.95rem;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  padding-top: 2.5rem;
  opacity: 0.6;
}

/* ========== ТАРИФЫ ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  padding: 1rem;
}
.pricing-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem 2rem 2rem 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: visible;
  min-height: 520px;
}
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 87, 64, 0.02) 0%, rgba(192, 168, 106, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 28px;
}
.pricing-card:hover::after {
  opacity: 1;
}
.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(44, 87, 64, 0.15), 0 0 40px rgba(192, 168, 106, 0.1);
  border-color: rgba(44, 87, 64, 0.3);
}
.pricing-card-standard {
  border-color: rgba(44, 87, 64, 0.3);
  transform: scale(1.05);
}
.pricing-card-standard:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 25px 60px rgba(44, 87, 64, 0.2);
}
.pricing-card-popular {
  border-color: #c0a86a;
  box-shadow: 0 20px 50px rgba(192, 168, 106, 0.25), 0 0 80px rgba(192, 168, 106, 0.15);
  background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
  transform: scale(1.05);
}
.pricing-card-popular:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 30px 70px rgba(192, 168, 106, 0.35), 0 0 100px rgba(192, 168, 106, 0.2);
  border-color: #d4b978;
}
.pricing-card-best-value {
  border-color: #2c5740;
  box-shadow: 0 20px 50px rgba(44, 87, 64, 0.2), 0 0 60px rgba(44, 87, 64, 0.1);
  background: linear-gradient(180deg, #f5faf6 0%, #ffffff 100%);
  transform: scale(1.05);
}
.pricing-card-best-value:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 30px 70px rgba(44, 87, 64, 0.3), 0 0 100px rgba(44, 87, 64, 0.15);
  border-color: #1e4a31;
}
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary) 0%, #d4b978 100%);
  color: #1a2e1a;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(192, 168, 106, 0.3);
  z-index: 10;
}
.popular-badge i {
  font-size: 0.9rem;
}
.standard-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2c5740 0%, #3d7a55 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(44, 87, 64, 0.3);
  z-index: 10;
}
.standard-badge i {
  font-size: 0.9rem;
}
.best-value-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2c5740 0%, #3d7a55 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(44, 87, 64, 0.3);
  z-index: 10;
}
.best-value-badge i {
  font-size: 0.9rem;
}
.pricing-period {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.pricing-period i {
  color: var(--primary);
  font-size: 1.3rem;
}
.pricing-price-block {
  margin-bottom: 1rem;
  position: relative;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pricing-old-price {
  display: block;
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2c5740 0%, #c0a86a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pricing-period-price {
  font-size: 1rem;
  color: #7a8875;
  font-weight: 500;
}
.pricing-total {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pricing-total span {
  display: block;
  font-size: 0.95rem;
  color: #5a6855;
}
.pricing-total strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}
.pricing-save {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(192, 168, 106, 0.15) 0%, rgba(44, 87, 64, 0.1) 100%);
  color: #2c5740;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(192, 168, 106, 0.3);
}
.btn-pricing {
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: auto;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: inline-block;
  min-height: 50px;
  align-self: center;
  width: 100%;
  max-width: 280px;
}
.btn-pricing:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
}
.pricing-features-list {
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 0;
}
.pricing-features-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-align: center;
}
.pricing-features-list ul {
  margin: 0;
  padding: 0;
}
.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  font-size: 0.93rem;
  color: #4a5a4a;
  border-bottom: 1px dashed rgba(0,0,0,0.04);
}
.pricing-features-list li:last-child {
  border-bottom: none;
}
.pricing-features-list li i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 18px;
}
.pricing-guarantee {
  margin-top: 3rem;
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8d8 100%);
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(44, 87, 64, 0.15);
}
.guarantee-badge i {
  font-size: 1.3rem;
  color: var(--primary);
}

/* ========== РАЗДЕЛИТЕЛЬ СЕКЦИЙ ========== */
.section-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
}
.divider-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  background: white;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.divider-arrow {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(44, 87, 64, 0.2);
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========== ДОПОЛНИТЕЛЬНАЯ ОПЦИЯ ========== */
.section-addon {
  background: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-addon::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 87, 64, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.section-addon::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 87, 64, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.addon-wrapper {
  background: linear-gradient(135deg, #1a4a35 0%, #2c5740 40%, #3d7a55 60%, #1a4a35 100%);
  border-radius: 32px;
  padding: 3.5rem 4rem;
  box-shadow: 0 30px 80px rgba(44, 87, 64, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.addon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(192, 168, 106, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.addon-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.03) 50%,
    transparent 70%
  );
  pointer-events: none;
}
.addon-left {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.addon-right {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 4rem;
}
.addon-icon-wrapper {
  margin-bottom: 1.5rem;
}
.addon-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: white;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255,255,255,0.15),
    inset 0 0 40px rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  position: relative;
}
.addon-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}
.addon-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.addon-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 0;
}
.addon-price-block {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
  background: rgba(255,255,255,0.12);
  padding: 1.3rem 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.addon-price-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.addon-price-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff7d6;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255,247,214,0.3);
}
.addon-price-unit {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-left: 0.3rem;
}
.addon-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}
.addon-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: white;
  padding: 0.5rem;
}
.addon-feature i {
  color: #fff7d6;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.addon-feature.highlight {
  background: rgba(255,255,255,0.12);
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: 0.8rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.addon-feature.highlight i {
  color: #ffd700;
  font-size: 1.3rem;
}
.addon-action {
  text-align: center;
}
.btn-addon {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border: none;
  color: #1a4a35;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.25),
    0 0 0 3px rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}
.btn-addon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}
.btn-addon:hover::before {
  left: 100%;
}
.btn-addon:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 0 5px rgba(255,255,255,0.15);
  background: linear-gradient(135deg, #2c5740 0%, #1a4a35 100%);
  color: white !important;
}
/* ========== ОТЗЫВЫ ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(44, 87, 64, 0.15);
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.testimonial-meta {
  flex: 1;
}
.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}
.testimonial-rating i {
  color: #f5b042;
  filter: drop-shadow(0 0 3px rgba(245, 176, 66, 0.4));
}
.testimonial-date {
  font-size: 0.85rem;
  color: #7a8875;
  margin: 0;
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(44, 87, 64, 0.08);
  font-size: 3rem;
  line-height: 1;
}
.testimonial-text {
  color: #3a4a3a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  min-height: 80px;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.testimonial-id {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.9rem;
}
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}
.testimonial-verified i {
  font-size: 0.9rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.8rem;
  background: var(--primary-light);
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-badge i {
  font-size: 1.2rem;
  color: var(--primary);
}

/* ========== FAQ ========== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-item:hover::before {
  opacity: 1;
}
.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border-color: rgba(44, 87, 64, 0.15);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(44, 87, 64, 0.1);
}
.faq-item.active::before {
  opacity: 1;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}
.faq-question:hover {
  background: var(--primary-light);
}
.faq-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}
.faq-title i {
  color: var(--primary);
  font-size: 1.1rem;
}
.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fafcfb;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-answer p {
  margin: 0;
  padding-top: 1rem;
  color: #4a5a4a;
  line-height: 1.7;
}

/* ========== ФУТЕР ========== */
.footer-modern {
  background: linear-gradient(180deg, #0f1a0f 0%, #1a2e1a 100%);
  color: #b8c8b0;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  padding-right: 2rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.footer-logo-light {
  font-weight: 300;
  color: #8fa895;
}
.footer-desc {
  color: #98a890;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  color: #b8c8b0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  letter-spacing: 0.3px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 0.7rem;
}
.footer-col a {
  color: #98a890;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.footer-col a i {
  font-size: 0.7rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.footer-col a:hover {
  color: white;
  transform: translateX(5px);
}
.footer-col a:hover i {
  transform: translateX(3px);
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  margin: 2rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.copyright {
  color: #7a8875;
  font-size: 0.9rem;
  margin: 0;
}
.legal-info {
  color: #5a6855;
  font-size: 0.85rem;
  margin: 0;
}
.footer-payment {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  color: #98a890;
  font-size: 1rem;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
  .step-item {
    max-width: 100%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 3rem;
  }
  .pricing-card-popular {
    order: -1;
  }
  .addon-wrapper {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2.5rem;
  }
  .addon-left {
    text-align: center;
  }
  .addon-right {
    border-left: none;
    border-top: 2px solid rgba(255,255,255,0.15);
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .addon-action-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    padding-right: 0;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  .carousel-caption {
    max-width: 95%;
    padding: 1rem;
    bottom: 15%;
  }
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .navbar-brand {
    font-size: 1.3rem;
  }
  .anchor-nav-wrapper {
    top: 0 !important;
  }
  .anchor-list {
    gap: 0.5rem;
  }
  .anchor-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .addon-wrapper {
    padding: 2.5rem 1.5rem;
  }
  .addon-icon {
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
  }
  .addon-title {
    font-size: 1.8rem;
  }
  .addon-description {
    font-size: 1rem;
  }
  .addon-price-block {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
  }
  .addon-price-value {
    font-size: 1.8rem;
  }
  .addon-feature {
    font-size: 0.95rem;
  }
  .addon-feature i {
    width: 20px;
    font-size: 1rem;
  }
  .addon-action-wrapper {
    flex-direction: column;
  }
  .btn-addon {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
  .feature-card, .step-card, .pricing-card, .testimonial-card {
    padding: 1.5rem;
  }
  .stats-wrapper {
    gap: 1.5rem;
  }
  .stats-divider {
    display: none;
  }
  .stats-number {
    font-size: 1.2rem;
  }
  .stats-action .btn-login-mobile {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-text {
    min-height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-info {
    align-items: center;
  }
  .footer-payment {
    justify-content: center;
  }
}
