:root {
  /* Основная цветовая схема - тёплая зелёная гамма */
  --primary: #2A7F62;
  --primary-dark: #1D5D47;
  --primary-light: #3B9E7A;
  --accent: #FF9F4B;
  --accent-dark: #E58A3D;
  --text: #333333;
  --text-light: #666666;
  --light-bg: #F8FAF7;
  --white: #ffffff;
  --gray-light: #f0f4f8;
  --gray: #94A3B8;
  --gray-dark: #64748B;
  --dark: #1E293B;
  --header-bg: #2A7F62;
  --header-hover: #1D5D47;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* Анимации появления */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Общие контейнеры */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Шапка */
.site-header {
  background: var(--header-bg);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.logo-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-small {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-small:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 159, 75, 0.3);
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 30px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero секция */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.hero-img-breakout {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  transform: translateX(20px);
  margin-left: -20px;
}

.hero-img-breakout:hover {
  transform: translateX(20px) scale(1.02);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero .lead {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

/* Декоративные элементы героя */
.hero-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: var(--accent);
}

.decoration-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.decoration-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 50px;
}

/* Преимущества */
.benefits {
  background: var(--white);
  padding: 100px 0;
}

.benefits h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.benefit-card:hover::before {
  transform: translateX(0);
}

.benefit-card .icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 600;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Как это работает */
.process {
  background: var(--light-bg);
  padding: 100px 0;
}

.process h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.step-number {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 127, 98, 0.3);
}

.step:hover .step-number {
  background: var(--accent);
  transform: scale(1.1);
}

.step h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 600;
}

.step p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Экономика */
.economics {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}

.economics h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.metric {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.metric-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.note {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

/* Тарифы */
.pricing {
  background: var(--light-bg);
  padding: 100px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.section-lead {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  text-align: left;
  width: 100%;
  max-width: 500px; /* ← Увеличено с 420px до 500px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.recommended {
  border-color: var(--accent);
  background: linear-gradient(to bottom, rgba(255, 159, 75, 0.05), rgba(255, 159, 75, 0.02));
}

.badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 159, 75, 0.3);
}

.pricing-header {
  margin-bottom: 30px;
  text-align: center;
}

.pricing-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 15px 0;
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-light);
  border-bottom: 1px dashed rgba(0,0,0,0.05);
  padding-left: 32px;
  position: relative;
  text-align: left;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Кнопки: одинаковые размеры и стиль */
.pricing-card .btn-outline,
.pricing-card .btn-primary {
  margin-top: auto;
  width: 100%;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  width: 100%;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 127, 98, 0.3);
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border: none;
  width: 100%;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 159, 75, 0.4);
}

/* Отзывы */
.reviews {
  background: var(--light-bg);
  padding: 100px 0;
}

.reviews h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.review-media {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.review-card:nth-child(1) .avatar { background: #3b82f6; }
.review-card:nth-child(2) .avatar { background: #10b981; }
.review-card:nth-child(3) .avatar { background: #f59e0b; }
.review-card:nth-child(4) .avatar { background: #ef4444; }
.review-card:nth-child(5) .avatar { background: #8b5cf6; }
.review-card:nth-child(6) .avatar { background: #14b8a6; }

.review-text {
  font-style: italic;
  font-size: 16px;
  color: var(--text-light);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin: 0;
}

/* FAQ */
.faq {
  background: var(--white);
  padding: 100px 0;
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: var(--dark);
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: var(--light-bg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: all 0.3s ease;
  color: var(--primary);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 20px 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item.active {
  background: var(--light-bg);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::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"><circle cx="20" cy="20" r="5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="8" fill="rgba(255,255,255,0.03)"/><circle cx="60" cy="40" r="6" fill="rgba(255,255,255,0.04)"/></svg>');
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.9);
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-form input {
  padding: 16px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 16px;
  flex: 1 1 250px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.95);
}

.cta-form input:focus {
  border-color: var(--accent);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 159, 75, 0.2);
}

.cta-form button {
  padding: 16px 32px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 200px;
  box-shadow: 0 4px 20px rgba(255, 159, 75, 0.3);
}

.cta-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 159, 75, 0.4);
}

/* Футер */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info .logo {
  color: var(--white);
}

.footer-info .logo-main {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-info p {
  color: rgba(255,255,255,0.9);
  text-align: left;
  font-size: 14px;
}

.footer-contact p {
  margin: 8px 0;
  text-align: right;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 868px) {
  .nav {
    height: 70px;
  }
  
  .logo-main {
    font-size: 16px;
  }
  
  .logo-sub {
    font-size: 11px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-dark);
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    height: auto;
    padding: 20px 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links .btn-small {
    margin: 15px auto;
    width: 200px;
    display: block;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    padding: 100px 0 80px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .lead {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image-wrapper {
    margin-top: 40px;
    transform: none;
    margin-left: 0;
  }

  .hero-img-breakout {
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
    right: auto;
    top: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .nav {
    height: 60px;
  }
  
  .logo-main {
    font-size: 15px;
    max-width: 160px;
    line-height: 1.1;
  }
  
  .logo-sub {
    font-size: 10px;
  }
  
  .nav-links {
    top: 60px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .lead {
    font-size: 16px;
  }
  
  .btn-primary {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .benefits,
  .process,
  .economics,
  .pricing,
  .reviews,
  .faq,
  .cta {
    padding: 60px 0;
  }
  
  .benefits h2,
  .process h2,
  .economics h2,
  .pricing h2,
  .reviews h2,
  .faq h2,
  .cta h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .benefit-card,
  .step,
  .metric,
  .pricing-card,
  .review-card {
    padding: 30px 20px;
  }
  
  .pricing-price {
    font-size: 30px;
  }
  
  .faq-question {
    padding: 20px 15px;
    font-size: 16px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-info p,
  .footer-contact p {
    text-align: center;
  }
  
  .cta-form {
    flex-direction: column;
  }
  
  .cta-form input,
  .cta-form button {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* Плавная прокрутка */
html {
  scroll-behavior: smooth;
}

/* Выделение текста */
::selection {
  background: var(--accent);
  color: var(--dark);
}

::-moz-selection {
  background: var(--accent);
  color: var(--dark);
}