/* =============================================
   KROVELNYE-OTHODY PAGE STYLES
   ============================================= */
:root {
  --primary: #1b5e30;
  --primary-dark: #134523;
  --primary-light: #eaf5ec;
  --accent: #2ecc71;
  --white: #ffffff;
  --bg-warm: #f2f7f3;
  --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; }
.breadcrumbs a:hover { color: var(--primary-dark); }
.breadcrumbs span { color: var(--text-secondary); }

/* ========= ОБЩИЕ СЕКЦИИ ========= */
.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.5rem;
  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;
}

/* ========= ГЕРОЙ ========= */
.page-hero {
  background: linear-gradient(160deg, #edf7f0 0%, #d7ecdd 40%, #c4e3cf 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,94,48,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.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;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-hero-stats {
  flex: 1 1 300px;
  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;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1a6b33);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ========= ЧТО ПРИНИМАЕМ ========= */
.materials {
  background: linear-gradient(160deg, #f2faf5 0%, #eaf4ee 100%);
}
.materials .section-wrap {
  padding: 5rem 2rem;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}
.material-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);
}
.material-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}
.material-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.material-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}
.material-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========= КАК СДАТЬ ========= */
.how-to {
  background: linear-gradient(180deg, #f4faf6 0%, #edf5ef 50%);
}
.how-to .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);
  box-shadow: var(--shadow-sm);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}
.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;
}
.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;
}

/* ========= ЦЕНЫ ========= */
.pricing {
  background: linear-gradient(160deg, #f2faf5 0%, #eaf4ee 100%);
}
.pricing .section-wrap {
  padding: 5rem 2rem;
}
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th {
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
}
.price-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) { background: var(--bg-warm); }
.price-table tr:hover { background: var(--primary-light); }
.pricing-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* ========= ДОКУМЕНТЫ ========= */
.documents {
  background: linear-gradient(180deg, #f4faf6 0%, #edf5ef 50%);
}
.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: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.doc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.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 {
  padding: 3rem 2rem 6rem;
}
.cta-banner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1b5e30 0%, #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);
}
.cta-content { flex: 1 1 300px; }
.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;
}
.cta-title { font-size: 2.2rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.8rem; }
.cta-sub { opacity: 0.85; font-size: 0.95rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.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);
}
.btn-white:hover { background: #eaf5ec; transform: translateY(-2px); }
.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);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); }

/* ========= АДАПТИВ ========= */
@media (max-width: 1024px) {
  .page-hero-text h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 900px) {
  .page-hero-content { flex-direction: column; text-align: center; }
  .page-hero-text h1 { font-size: 2.2rem; }
  .page-hero-actions { justify-content: center; }
  .page-hero-stats { grid-template-columns: repeat(2, 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; }
}
@media (max-width: 600px) {
  .page-hero .section-wrap { padding: 3rem 1rem; }
  .page-hero-text h1 { font-size: 1.8rem; }
  .stat-card { padding: 1.2rem 0.8rem; }
  .stat-num { font-size: 1.4rem; }
  .section-title { font-size: 1.5rem; }
  .materials .section-wrap,
  .how-to .section-wrap,
  .pricing .section-wrap,
  .documents .section-wrap { padding: 3rem 1rem; }
  .price-table th, .price-table td { padding: 0.8rem 1rem; font-size: 0.8rem; }
  .cta-section { padding: 1.5rem 1rem 3rem; }
  .cta-banner { padding: 2rem 1.5rem; }
  .cta-title { font-size: 1.6rem; }
}