/* === PRIEM PAGE STYLES (КРАСИВОЕ ОФОРМЛЕНИЕ) === */
:root {
  --primary: #1b5e30;
  --primary-dark: #134523;
  --primary-light: #eaf5ec;
  --accent: #2ecc71;
  --white: #ffffff;
  --bg-warm: #f2f7f3;
  --bg-soft: #f7faf8;
  --text: #1a2a1c;
  --text-secondary: #4a5b4d;
  --border: #dcebe0;
  --shadow-sm: 0 4px 10px rgba(20, 70, 30, 0.06);
  --shadow-md: 0 12px 28px rgba(20, 70, 30, 0.1);
  --shadow-lg: 0 20px 40px rgba(20, 70, 30, 0.12);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: all 0.25s ease;
}

/* ========= ХЛЕБНЫЕ КРОШКИ ========= */
.breadcrumbs {
  background: linear-gradient(160deg, #f2faf5 0%, #eaf4ee 100%);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs .section-wrap {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary-dark);
}

.breadcrumbs span {
  color: var(--text-secondary);
}

/* ========= ГЕРОЙ СТРАНИЦЫ ========= */
.page-hero {
  background: linear-gradient(160deg, #edf7f0 0%, #d7ecdd 40%, #b8f5d8 100%);
  position: relative;
  overflow: hidden;
}

/* Декоративные круги */
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,204,113,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27,94,48,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .section-wrap {
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}

.page-hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.page-hero-text {
  flex: 1 1 400px;
}

.page-hero-text .section-label {
  display: inline-block;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(27,94,48,0.1);
}

.page-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.page-hero-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero-stats {
  flex: 1 1 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  padding: 1.6rem 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Unbounded', sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* ========= ОБЩИЕ СЕКЦИИ ========= */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2.8rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1.2rem;
}

/* Декоративная полоска под заголовком */
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}

/* ========= ЧТО ПРИНИМАЕМ ========= */
.what-we-accept {
  background: linear-gradient(160deg, #f2faf5 0%, #eaf4ee 100%);
  position: relative;
}

.what-we-accept .section-wrap {
  padding: 5rem 2rem;
}

.accept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.accept-card {
  background: linear-gradient(180deg, #f9fdfa 0%, #f2f7f3 100%);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Маленький декоративный уголок */
.accept-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.4;
  transition: var(--transition);
}

.accept-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.accept-card:hover::after {
  opacity: 0.7;
  transform: scale(1.2);
}

.accept-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.accept-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.accept-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========= КАК ЭТО РАБОТАЕТ ========= */
.how-it-works {
  background: linear-gradient(180deg, #f4faf6 0%, #edf5ef 50%, #f4faf6 100%);
  position: relative;
}

/* Разделительная волна сверху */
.how-it-works::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.how-it-works .section-wrap {
  padding: 5rem 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.step-card {
  background: white;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Соединительная линия между шагами (на десктопе) */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -20px;
  width: 20px;
  height: 2px;
  background: var(--border);
}

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #1a6b33);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 18px rgba(27,94,48,0.25);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ========= ЦЕНЫ ========= */
.prices {
  background: linear-gradient(160deg, #f2faf5 0%, #eaf4ee 100%);
  position: relative;
}

/* Разделительная волна сверху */
.prices::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.2;
}

.prices .section-wrap {
  padding: 5rem 2rem;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.price-card {
  background: var(--bg-warm);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.price-popular {
  background: white;
  border: 2.5px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.price-popular:hover {
  transform: scale(1.03) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #1a6b33);
  color: white;
  padding: 0.4rem 1.4rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(27,94,48,0.3);
  letter-spacing: 0.03em;
}

.price-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.price-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 0.2rem;
}

.price-card > p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.8rem;
  flex: 1;
}

.price-card ul li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 0.2rem;
}

.price-card .btn-primary {
  display: block;
  text-align: center;
  border-radius: 50px;
  background-color: #3ef905;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.price-card .btn-primary:hover {
  background: #3dc813;
  box-shadow: var(--shadow-lg);
}

/* ========= ДОКУМЕНТЫ ========= */
.documents {
  background: linear-gradient(180deg, #f4faf6 0%, #eaf4ed 50%, #f4faf6 100%);
  position: relative;
}

.documents::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.documents .section-wrap {
  padding: 5rem 2rem;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.doc-card {
  background: white;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.doc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.doc-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--primary-light);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.doc-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ========= CTA ========= */
.cta-section {
  background: transparent;
  padding: 3rem 2rem 6rem;
}

.cta-banner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1b5e30 0%, #1a6b33 50%, #236b38 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  flex: 1 1 300px;
  position: relative;
  z-index: 2;
}

.cta-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  opacity: 0.85;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.cta-sub {
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-white:hover {
  background: #eaf5ec;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-ghost-white {
  background: transparent;
  color: white;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
  transform: translateY(-3px);
}

/* ========= АДАПТИВ ========= */
@media (max-width: 1024px) {
  .page-hero-text h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .page-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .page-hero-text h1 {
    font-size: 2.2rem;
  }

  .page-hero-text p {
    max-width: 100%;
  }

  .page-hero-actions {
    justify-content: center;
  }

  .page-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .price-popular {
    transform: scale(1);
  }

  .price-popular:hover {
    transform: scale(1) translateY(-5px);
  }
}

@media (max-width: 600px) {
  .page-hero .section-wrap {
    padding: 3rem 1rem;
  }

  .page-hero-text h1 {
    font-size: 1.8rem;
  }

  .page-hero-text p {
    font-size: 0.95rem;
  }

  .page-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .stat-card {
    padding: 1.2rem 0.8rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .what-we-accept .section-wrap,
  .how-it-works .section-wrap,
  .prices .section-wrap,
  .documents .section-wrap {
    padding: 3rem 1rem;
  }

  .prices-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .cta-section {
    padding: 1.5rem 1rem 3rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }
}
/* === ВИЗУАЛЬНОЕ РАЗНООБРАЗИЕ СЕКЦИЙ === */
.what-we-accept {
  background: linear-gradient(160deg, #f2faf5 0%, #e8f5ed 60%, #f2faf5 100%) !important;
  position: relative;
}
.what-we-accept::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(46,204,113,0.07) 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(27,94,48,0.05) 0%, transparent 35%);
  pointer-events: none;
}

.how-it-works {
  background: linear-gradient(135deg, #dff0e8 0%, #cce6d6 30%, #d8ede0 60%, #e4f5eb 100%) !important;
}

.prices {
  background: linear-gradient(180deg, #edf7f1 0%, #e3f0e9 50%, #edf7f1 100%) !important;
  position: relative;
}
.prices::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46,204,113,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.documents {
  background: linear-gradient(160deg, #e8f5ed 0%, #dceee3 50%, #e8f5ed 100%) !important;
}

/* accept-card — добавляем полоску-акцент слева */
.accept-card {
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.accept-card:hover {
  border-left-color: var(--accent);
}

/* step-card в how-it-works — нумерованная полоска */
.step-card {
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(4px);
}

/* doc-card в documents */
.doc-card {
  background: rgba(255,255,255,0.65) !important;
  backdrop-filter: blur(4px);
}