/* =====================================================
   style-pages.css — общие стили для страниц сайта
   (stvolovye-kletki.html, o-klinike.html)
   Использует переменные из style.css
   ===================================================== */

/* ── Шрифт Playfair для заголовков страниц ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

/* ===== BREADCRUMB ===== */
    .breadcrumb {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }

    .breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      flex-wrap: wrap;
    }

    .breadcrumb-list li {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-light);
    }

    .breadcrumb-list a {
      color: var(--text-light);
      transition: color 0.2s;
    }

    .breadcrumb-list a:hover { color: var(--coral); }

    .breadcrumb-list li:last-child { color: var(--text-dark); font-weight: 500; }

    .breadcrumb-sep { font-size: 11px; }
/* ── Page section helpers ── */
.page-section { padding: 72px 0; }
.page-section--bg { background: var(--bg-light); }
.page-section--white { background: #fff; }
.page-section--teal { background: var(--teal-light); }

.page-eyebrow-left {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}

.page-eyebrow {
  display: block;
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}

.page-title {
  font-size: 36px; font-weight: 800;
  line-height: 1.15; color: var(--text-dark);
  margin-bottom: 14px;
}

.page-title em { color: var(--coral); font-style: normal; }

.page-lead {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.75; max-width: 660px;
}

/* ── Кнопки для страниц ── */
.btn-lg {
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.btn-ghost-light {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  display: inline-flex; align-items: center;
  justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: 50px;
  font-family: var(--font); font-size: 13px;
  font-weight: 700; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.btn-ghost-light:hover { border-color: var(--coral); color: var(--coral); }

.btn-phone-card {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 18px; border-radius: 50px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; border: 1.5px solid var(--border);
  background: #fff; color: var(--text-dark);
  transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.btn-phone-card:hover { border-color: var(--teal); color: var(--teal); }
.btn-phone-card svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Trust bar ── */
.page-trust-bar {
  background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0;
}
.page-trust-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.page-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-mid); font-weight: 600;
}
.page-trust-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.page-trust-icon svg { width: 17px; height: 17px; }

/* ══════════════════════════════════════
   СТВОЛОВЫЕ КЛЕТКИ — специфичные стили
   ══════════════════════════════════════ */

/* Hero страницы */
.page-hero {
  background: linear-gradient(135deg, #FFF8F6 0%, #EEF6F6 100%);
  overflow: hidden; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(75,184,196,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(232,113,74,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(75,184,196,.12); border: 1px solid rgba(75,184,196,.25);
  color: var(--teal-dark); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.page-hero-eyebrow i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); display: inline-block; font-style: normal;
}
.page-hero h1 {
  font-size: 44px; font-weight: 800; line-height: 1.12;
  color: var(--text-dark); margin-bottom: 18px;
}
.page-hero h1 em { color: var(--coral); font-style: normal; }
.page-hero-lead {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 28px; max-width: 480px;
}
.page-hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.page-hero-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
}
.page-hero-check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.page-hero-check-icon svg { width: 10px; height: 10px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero-stats {
  display: flex; gap: 0; border-top: 1px solid var(--border);
  padding-top: 28px; margin-top: 28px;
}
.page-hstat { flex: 1; padding: 0 20px; border-right: 1px solid var(--border); }
.page-hstat:first-child { padding-left: 0; }
.page-hstat:last-child { border-right: none; }
.page-hstat strong {
  display: block; font-size: 24px; font-weight: 800;
  color: var(--coral); line-height: 1.1; margin-bottom: 3px;
}
.page-hstat span { font-size: 12px; color: var(--text-light); line-height: 1.3; }

/* Hero form card — переиспользует .hero-form-card из style.css но без position:absolute */
.page-hero-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: 0 12px 48px rgba(0,0,0,.12);
}
.page-hf-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E8F8F0; color: #2D7D5B;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 14px;
}
.page-hf-badge svg { width: 11px; height: 11px; }
.page-hf-title { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.page-hf-sub { font-size: 13px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.5; }
.page-hf-btn {
  width: 100%; padding: 13px; font-size: 14px;
  font-weight: 700; border-radius: 8px;
}
.page-hf-perks { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.page-hf-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-mid);
}
.page-hf-perk svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--green); }
.page-form-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-light); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 6px;
}

/* Why cells */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.why-img {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #e8f3f3 0%, #fff0eb 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; box-shadow: 0 12px 48px rgba(0,0,0,.12);
  position: relative;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(44,62,80,.82); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 12px 16px; color: #fff; font-size: 13px;
}
.why-img-badge strong {
  display: block; font-size: 22px; font-weight: 800; color: var(--coral);
}
.why-body {
  font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px;
}

/* Mechanism */
.mechanism-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.mechanism-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.mechanism-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mcard-num {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.mcard-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.mcard-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* How it works (dark bg section) */
.how-section {
  background: #2C3E50; position: relative; overflow: hidden;
}
.how-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(75,184,196,.14) 0%, transparent 70%);
  pointer-events: none;
}
.how-inner { position: relative; z-index: 1; }
.how-eyebrow { color: rgba(75,184,196,.9) !important; }
.how-title { color: #fff !important; }
.how-lead { color: rgba(255,255,255,.65) !important; }

.how-effects {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.effect-card {
  background: #F7F9FB; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 22px;
  transition: background .2s, border-color .2s;
}
.effect-card:hover { background: rgba(255,255,255,.10); border-color: rgba(75,184,196,.4); }
.effect-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(75,184,196,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.effect-icon svg { width: 20px; height: 20px; }
.effect-title { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.effect-text { font-size: 13px; line-height: 1.65; }

/* Cell types table */
.cells-table-wrap {
  margin-top: 40px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.cells-table { width: 100%; border-collapse: collapse; }
.cells-table thead { background: var(--text-dark); }
.cells-table th {
  padding: 15px 20px; text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.cells-table th:first-child { color: #fff; }
.cells-table td {
  padding: 17px 20px; font-size: 14px;
  border-top: 1px solid var(--border); vertical-align: top; line-height: 1.6;
}
.cells-table td:first-child { font-weight: 700; color: var(--text-dark); }
.cells-table td:not(:first-child) { color: var(--text-mid); }
.cells-table tr:hover td { background: var(--bg-light); }
.cell-badge {
  display: inline-block; background: var(--teal-light);
  color: var(--teal-dark); font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px; margin-top: 4px;
}

/* Process steps */
.sk-process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.sk-process-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; padding: 28px 0; position: relative;
}
.sk-process-step:not(:last-child)::after {
  content: ''; position: absolute; left: 31px; top: 80px; bottom: 0;
  width: 2px; background: var(--border);
}
.sk-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1; box-shadow: var(--shadow-card);
  transition: border-color .2s, background .2s;
}
.sk-process-step:hover .sk-step-num { border-color: var(--coral); background: var(--coral-pale); }
.sk-step-num svg { width: 24px; height: 24px; }
.sk-step-num-label {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--coral); color: #fff; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.sk-step-content { padding-top: 12px; }
.sk-step-title { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.sk-step-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.sk-step-note {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); border-radius: 8px;
  padding: 7px 12px; font-size: 13px; color: var(--teal-dark);
  font-weight: 600; margin-top: 12px;
}
.sk-step-note svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Results */
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.result-card {
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 20px; border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.result-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.result-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.result-icon svg { width: 19px; height: 19px; }
.result-title { font-size: 14px; font-weight: 800; margin-bottom: 5px; }
.result-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.results-timeline {
  display: flex; gap: 0; margin-top: 36px;
  background: var(--bg-light); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.timeline-item {
  flex: 1; padding: 22px 18px;
  border-right: 1px solid var(--border); text-align: center;
}
.timeline-item:last-child { border-right: none; }
.timeline-period {
  font-size: 13px; font-weight: 700; color: var(--coral);
  margin-bottom: 7px; display: block;
}
.timeline-text { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* Who fits */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.who-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 26px; border: 1px solid var(--border);
}
.who-card-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 800; margin-bottom: 18px;
}
.who-badge {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.who-badge-green { background: #E8F5EE; }
.who-badge-red   { background: #FEE8E8; }
.who-list { display: flex; flex-direction: column; gap: 11px; }
.who-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; color: var(--text-mid); line-height: 1.55;
}
.who-dot {
  width: 7px; height: 7px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.who-dot-green { background: var(--green); }
.who-dot-red   { background: var(--coral); }
.who-note { margin-top: 18px; font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* Combination */
.combo-intro { margin: 0 auto; font-size: 15px; color: var(--text-mid); line-height: 1.8; max-width: 700px; margin-bottom: 36px; }
.combo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.combo-card {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.combo-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.combo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--coral-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.combo-icon svg { width: 19px; height: 19px; }
.combo-title { font-size: 14px; font-weight: 800; margin-bottom: 5px; }
.combo-text { font-size: 12px; color: var(--text-mid); line-height: 1.55; }
.combo-note {
  margin-top: 26px; padding: 18px 22px;
  background: var(--teal-light); border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
  font-size: 14px; color: var(--teal-dark); font-weight: 500; line-height: 1.65;
}

/* Doctor card */
.doctor-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; display: grid; grid-template-columns: auto 1fr;
  gap: 28px; align-items: center; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.doctor-photo {
  width: 130px; height: 150px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #e8f3f3 0%, #fff0eb 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; flex-shrink: 0;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-role {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 7px;
}
.doctor-name { font-size: 21px; font-weight: 800; margin-bottom: 5px; }
.doctor-creds { font-size: 14px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.5; }
.doctor-quote {
  font-size: 14px; font-style: italic; color: var(--text-mid);
  border-left: 3px solid var(--coral); padding-left: 14px; line-height: 1.7;
}

/* FAQ для страниц */
.page-faq-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 52px; align-items: start;
}
.page-faq-item { border-bottom: 1px solid var(--border); }
.page-faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 17px 0; cursor: pointer; gap: 16px;
  font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.4;
  transition: color .2s;
}
.page-faq-q:hover { color: var(--coral); }
.page-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.page-faq-a-inner { padding: 0 0 17px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* Sticky sidebar CTA */
.page-cta-sticky {
  position: sticky; top: 80px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  overflow: hidden; border: 1px solid var(--border);
}
.page-cta-head {
  background: linear-gradient(135deg, var(--coral) 0%, #d46b50 100%);
  padding: 24px 24px 20px; color: #fff;
}
.page-cta-head h3 { font-size: 18px; font-weight: 800; margin-bottom: 5px; line-height: 1.3; }
.page-cta-head p { font-size: 13px; opacity: .85; line-height: 1.5; }
.page-cta-body { padding: 20px 24px 24px; }
.page-cta-body .btn {
  width: 100%; padding: 14px; font-size: 15px;
  font-weight: 700; border-radius: 8px; justify-content: center;
}
.page-cta-perks { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.page-cta-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-mid);
}
.page-cta-perk svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--green); }

/* Final CTA section */
.page-final-cta {
  background: var(--teal-light);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.page-final-cta-inner {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 60px; align-items: center;
}
.page-final-cta h2 {
  font-size: 34px; font-weight: 800; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 14px;
}
.page-final-cta h2 em { color: var(--coral); font-style: normal; }
.page-final-lead { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; }
.page-final-points { display: flex; flex-direction: column; gap: 9px; }
.page-final-point {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text-dark); font-weight: 500;
}
.page-final-point-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.page-final-point-dot svg { width: 9px; height: 9px; }
.page-final-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.page-final-form h3 { font-size: 19px; font-weight: 800; margin-bottom: 5px; }
.page-final-form > p { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.5; }
.page-final-form .btn {
  width: 100%; padding: 14px; font-size: 15px;
  font-weight: 700; border-radius: 8px; justify-content: center;
}

/* ══════════════════════════════════════
   О КЛИНИКЕ — специфичные стили
   ══════════════════════════════════════ */

/* Clinics grid */
.clinics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.clinic-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.clinic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.clinic-photo {
  height: 180px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--coral-pale) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.clinic-photo img { width: 100%; height: 100%; object-fit: cover; }
.clinic-flag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(44,62,80,.72); backdrop-filter: blur(6px);
  border-radius: 8px; padding: 5px 10px;
  font-size: 12px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 5px;
}
.clinic-body { padding: 20px 20px 22px; }
.clinic-city {
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 5px;
}
.clinic-name { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.clinic-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.clinic-detail {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--text-mid); line-height: 1.5;
}
.clinic-detail svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--text-light); }
.clinic-detail strong { color: var(--text-dark); }
.clinic-actions { display: flex; gap: 8px; }
.clinic-actions .btn-phone-card { flex: 1; justify-content: center; font-size: 13px; }
.clinic-actions .btn-teal { flex: 1; justify-content: center; font-size: 13px; padding: 11px 14px; }

/* Licenses carousel */
.carousel-wrap { position: relative; margin-top: 44px; }
.carousel-track-outer { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track {
  display: flex; gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide { flex: 0 0 calc((100% - 16px * 2) / 3); min-width: 0; }
.license-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; transition: border-color .2s, transform .2s;
  aspect-ratio: 3/4; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.license-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.license-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.license-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--bg-light) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--text-light); font-size: 13px;
  font-weight: 600; text-align: center; padding: 16px;
}
.license-placeholder svg { width: 30px; height: 30px; opacity: .4; }
.license-zoom {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(44,62,80,.6); backdrop-filter: blur(6px);
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.license-card:hover .license-zoom { opacity: 1; }
.license-zoom svg { width: 14px; height: 14px; color: #fff; }

.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 22px;
}
.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.carousel-btn:hover { border-color: var(--coral); color: var(--coral); }
.carousel-btn:disabled { opacity: .35; cursor: default; }
.carousel-btn svg { width: 15px; height: 15px; }
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all .2s;
}
.c-dot.active { background: var(--coral); width: 20px; border-radius: 4px; }

/* License verify buttons */
.license-verify { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.verify-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 50px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; border: 1.5px solid var(--border);
  background: var(--bg-light); color: var(--text-dark);
  text-decoration: none; transition: all .22s;
}
.verify-btn:hover { border-color: var(--teal); color: var(--teal); }
.verify-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.flag { font-size: 18px; line-height: 1; }

.license-number {
  margin-top: 22px; padding: 16px 20px;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: flex-start; gap: 12px;
}
.license-number-icon { flex-shrink: 0; margin-top: 2px; }
.license-number-icon svg { width: 18px; height: 18px; color: var(--teal); }
.license-number-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.license-number-text strong { color: var(--text-dark); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.88); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--radius-lg); object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.lightbox-placeholder {
  background: var(--bg-light); border-radius: var(--radius-lg);
  width: min(560px, 90vw); height: min(760px, 85vh);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; color: var(--text-mid);
  font-size: 14px; text-align: center; padding: 28px;
}
.lightbox-placeholder svg { width: 44px; height: 44px; opacity: .3; }
.lightbox-close {
  position: fixed; top: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s;
}
.lightbox-nav-btn:hover { background: rgba(255,255,255,.28); }
.lightbox-nav-btn.prev { left: 14px; }
.lightbox-nav-btn.next { right: 14px; }
.lightbox-counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.5); color: #fff; font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
}

/* о-клинике CTA section */
.ok-cta-section { background: var(--teal-light); border-top: 1px solid var(--border); padding: 72px 0; }
.ok-cta-inner { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
.ok-cta-content h2 {
  font-size: 32px; font-weight: 800; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 13px;
}
.ok-cta-content h2 em { color: var(--coral); font-style: normal; }
.ok-cta-lead { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; }
.ok-cta-points { display: flex; flex-direction: column; gap: 9px; }
.ok-cta-point {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text-dark); font-weight: 500;
}
.ok-cta-point-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.ok-cta-point-dot svg { width: 9px; height: 9px; }
.ok-cta-form {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
}
.ok-cta-form h3 { font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.ok-cta-form > p { font-size: 13px; color: var(--text-mid); margin-bottom: 18px; line-height: 1.5; }
.ok-cta-form .btn {
  width: 100%; padding: 14px; font-size: 15px;
  font-weight: 700; border-radius: 8px; justify-content: center;
}

/* Дисклеймер */
.page-disclaimer {
  background: var(--bg-light); padding: 14px 0;
  border-top: 1px solid var(--border);
}
.page-disclaimer p { font-size: 12px; color: var(--text-light); line-height: 1.6; font-style: italic; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
        .other-reviews-grid { grid-template-columns: 1fr 1fr; }
        .review-layout {
        grid-template-columns: 1fr;
      }
.review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero-form { max-width: 480px; }
  .page-hero-stats { flex-wrap: wrap; gap: 18px; }
  .page-hstat { border-right: none; padding: 0; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .how-effects { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .combo-grid { grid-template-columns: 1fr 1fr; }
  .doctor-card { grid-template-columns: 1fr; text-align: center; }
  .doctor-photo { margin: 0 auto; }
  .doctor-quote { text-align: left; }
  .page-faq-layout { grid-template-columns: 1fr; }
  .page-cta-sticky { position: static; }
  .page-final-cta-inner { grid-template-columns: 1fr; gap: 36px; }

  .clinics-grid { grid-template-columns: 1fr 1fr; }
  .carousel-slide { flex: 0 0 calc((100% - 16px) / 2); }
  .ok-cta-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .other-reviews-grid { grid-template-columns: 1fr!important; }
  .page-section { padding: 48px 0; }
  .page-hero h1 { font-size: 28px; }
  .page-title { font-size: 26px; }

  .page-trust-bar-inner { gap: 10px; }
  .page-trust-item { flex: 1; min-width: 130px; }

  .how-effects { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .results-timeline { flex-direction: column; }
  .timeline-item { border-right: none; border-bottom: 1px solid var(--border); }
  .timeline-item:last-child { border-bottom: none; }
  .who-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr 1fr; }

  .cells-table thead { display: none; }
  .cells-table, .cells-table tbody, .cells-table tr, .cells-table td { display: block; }
  .cells-table tr { border-top: 2px solid var(--teal); padding: 14px; }
  .cells-table td { border: none; padding: 3px 0; font-size: 13px; }
  .cells-table td:first-child { font-size: 15px; margin-bottom: 3px; }

  .clinics-grid { grid-template-columns: 1fr; }
  .carousel-slide { flex: 0 0 100%; }
  .license-verify { flex-direction: column; }
  .verify-btn { justify-content: center; }

  .page-hero-btns { flex-direction: column; }
  .page-hero-btns .btn { width: 100%; justify-content: center; }
  .clinic-actions { flex-direction: column; }
  .combo-grid { grid-template-columns: 1fr; }

  .lightbox-nav-btn.prev { left: 6px; }
  .lightbox-nav-btn.next { right: 6px; }
}

.review-nav-section {
      background: var(--bg);
      padding: 48px 0;
      border-top: 1px solid var(--border);
    }

    .review-nav-section h2 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 28px;
      color: var(--text-dark);
    }

    .other-reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .other-review-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
      display: block;
    }

    .other-review-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .other-review-thumb {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #fde8de 0%, #d4eef1 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      position: relative;
    }

    .other-review-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .play-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.25);
    }

    .play-icon svg { width: 40px; height: 40px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }

.review-btn-wrap{
  margin-top:10px;
}

    .other-review-body { padding: 16px; }

    .other-review-body strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .other-review-body span {
      font-size: 13px;
      color: var(--text-light);
    }

    .review-nav-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: 32px;
      transition: color 0.2s;
    }

    .review-nav-back:hover { color: var(--coral); }
    .review-nav-back svg { width: 16px; height: 16px; }

    .btn-center-wrap{
      margin-top: 25px;
  display:flex;
  justify-content:center;
}
/* ══════════════════════════════════════
   СТРАНИЦА ЦЕН — специфичные стили
   ══════════════════════════════════════ */

/* Герой страницы цен */
.price-hero {
  background: linear-gradient(135deg, #FFF8F6 0%, #EEF6F6 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.price-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(75,184,196,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(232,113,74,.07) 0%, transparent 60%);
  pointer-events: none;
}
.price-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.price-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(75,184,196,.12); border: 1px solid rgba(75,184,196,.25);
  color: var(--teal-dark); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 16px;
}
.price-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 44px; font-weight: 800; line-height: 1.12;
  color: var(--text-dark); margin-bottom: 18px;
}
.price-hero h1 em { color: var(--coral); font-style: normal; }
.price-hero-lead {
  font-size: 16px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 28px; max-width: 540px;
}
.price-hero-points {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px;
}
.price-hero-point {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
}
.price-hero-point-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.price-hero-point-dot svg { width: 12px; height: 12px; }
.price-hero-btns {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

/* Форма в герое */
.price-hf {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(44,62,80,.1);
  padding: 28px 24px;
}
.price-hf-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: #2D7D5B;
  background: #EAF7F0; border-radius: 8px;
  padding: 7px 12px; margin-bottom: 18px;
}
.price-hf-title {
  font-size: 17px; font-weight: 800; color: var(--text-dark);
  line-height: 1.3; margin-bottom: 6px;
}
.price-hf-sub {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 20px;
}
.price-hf-btn {
  width: 100%; margin-top: 4px; font-size: 14px; font-weight: 700;
}
.price-hf-perks {
  margin-top: 14px; display: flex; flex-direction: column; gap: 7px;
}
.price-hf-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-mid);
}
.price-hf-perk svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--green); }

/* Трастбар */
.price-trust-bar {
  background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0;
}
.price-trust-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.price-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-mid); font-weight: 600;
}
.price-trust-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-trust-icon svg { width: 17px; height: 17px; }

/* Блок "Почему нет прайса" */
.why-no-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.why-no-price-text h2 {
  font-size: 32px; font-weight: 800; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 16px;
}
.why-no-price-text h2 em { color: var(--coral); font-style: normal; }
.why-no-price-text p {
  font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px;
}
.why-no-price-factors {
  display: flex; flex-direction: column; gap: 12px; margin-top: 20px;
}
.wnp-factor {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.wnp-factor-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wnp-factor-icon svg { width: 18px; height: 18px; }
.wnp-factor-title {
  font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px;
}
.wnp-factor-text {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}
.why-no-price-visual {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--coral-pale) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.wnp-stat-card {
  background: #fff; border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.wnp-stat-num {
  font-size: 32px; font-weight: 800; color: var(--coral); line-height: 1;
  margin-bottom: 4px;
}
.wnp-stat-label {
  font-size: 13px; color: var(--text-mid); line-height: 1.5;
}
.wnp-cta-card {
  background: var(--coral); border-radius: var(--radius);
  padding: 20px; text-align: center;
}
.wnp-cta-card p {
  font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.4;
}
.wnp-cta-card .btn {
  background: #fff; color: var(--coral); font-size: 13px; font-weight: 800;
  padding: 10px 20px; border-radius: 50px; display: inline-block;
}
.wnp-cta-card .btn:hover { background: var(--coral-pale); }

/* Таблица из чего складывается стоимость */
.price-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-breakdown-table thead tr {
  background: var(--text-dark);
  color: #fff;
}
.price-breakdown-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-breakdown-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  vertical-align: top;
  line-height: 1.6;
}
.price-breakdown-table tr:last-child td { border-bottom: none; }
.price-breakdown-table tr:hover td { background: var(--bg-light); }
.price-breakdown-table .stage-name {
  font-weight: 700; color: var(--text-dark);
}
.price-breakdown-table .stage-detail {
  font-size: 12px; color: var(--text-mid); margin-top: 2px;
}
.price-breakdown-table .price-note {
  display: inline-block;
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}
.price-breakdown-table .price-free {
  display: inline-block;
  background: var(--green-light); color: #2D7D5B;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
}

/* Что влияет на стоимость */
.price-factors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-factor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.price-factor-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.price-factor-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 8px;
}
.price-factor-title {
  font-size: 15px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 8px;
  line-height: 1.3;
}
.price-factor-text {
  font-size: 13px; color: var(--text-mid); line-height: 1.65;
}

/* Этапы получения стоимости */
.price-steps {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  max-width: 760px; margin: 0 auto;
}
.price-steps::before {
  content: '';
  position: absolute;
  left: 22px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--teal));
}
.price-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
.price-step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--coral); color: #fff;
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(232,113,74,.3);
}
.price-step:last-child .price-step-num { background: var(--teal); }
.price-step-content { padding-top: 10px; }
.price-step-title {
  font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 5px;
}
.price-step-text {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
}
.price-step-note {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #2D7D5B;
  background: var(--green-light); border-radius: 6px;
  padding: 5px 10px; margin-top: 8px;
}

/* FAQ страницы цен */
.price-faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Финальная полоса доверия */
.price-bottom-trust {
  background: var(--text-dark);
  padding: 48px 0;
}
.price-bottom-trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.pbt-item {
  text-align: center;
}
.pbt-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.pbt-icon svg { width: 26px; height: 26px; }
.pbt-title {
  font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px;
}
.pbt-text { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* Адаптив страницы цен */
@media (max-width: 1024px) {
  .price-hero-inner { grid-template-columns: 1fr; }
  .price-hero h1 { font-size: 34px; }
  .why-no-price-grid { grid-template-columns: 1fr; }
  .price-factors-grid { grid-template-columns: 1fr 1fr; }
  .price-faq-layout { grid-template-columns: 1fr; }
  .price-bottom-trust-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .price-hero h1 { font-size: 26px; }
  .price-hero-btns { flex-direction: column; }
  .price-hero-btns .btn { width: 100%; justify-content: center; }
  .price-factors-grid { grid-template-columns: 1fr; }
  .price-bottom-trust-inner { grid-template-columns: 1fr; gap: 20px; }
  .price-breakdown-table thead { display: none; }
  .price-breakdown-table, .price-breakdown-table tbody,
  .price-breakdown-table tr, .price-breakdown-table td { display: block; }
  .price-breakdown-table tr { border-top: 2px solid var(--teal); padding: 14px; }
  .price-breakdown-table td { border: none; padding: 4px 0; }
}

/* ══════════════════════════════════════
   СТРАНИЦА 404
   ══════════════════════════════════════ */

.error-section {
  min-height: calc(100vh - 64px - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFF8F6 0%, #EEF6F6 100%);
  padding: 80px 0;
}

.error-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  justify-content: center;
}

.error-code-wrap {
  position: relative;
  flex-shrink: 0;
}

.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
  opacity: 0.07;
  user-select: none;
  letter-spacing: -8px;
}

.error-pulse {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-pulse::before {
  content: '404';
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-content {
  max-width: 480px;
}

.error-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.error-lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.error-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.error-phone-note {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.error-phone {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.2s;
}

.error-phone:hover {
  color: var(--coral);
}

.error-hours {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .error-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .error-code { font-size: 100px; }
  .error-pulse::before { font-size: 64px; }
  .error-title { font-size: 26px; }
  .error-links { justify-content: center; }
  .error-links .btn { flex: 1; min-width: 140px; justify-content: center; }
}
/* ══════════════════════════════════════
   ЧТО ТАКОЕ АУТИЗМ — специфичные стили
   ══════════════════════════════════════ */

/* TOC — оглавление */
.autism-toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 680px;
}
.autism-toc-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 14px;
}
.autism-toc-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.autism-toc-list li {
  counter-increment: toc;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.autism-toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
  color: var(--teal);
  min-width: 22px;
}
.autism-toc-list a {
  color: var(--text-dark);
  transition: color .2s;
}
.autism-toc-list a:hover { color: var(--coral); }

/* Warning / Info boxes */
.autism-warning-box,
.autism-info-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
}
.autism-warning-box {
  background: #FFF5F2;
  border: 1px solid rgba(232,113,74,.2);
}
.autism-info-box {
  background: var(--teal-light);
  border: 1px solid rgba(75,184,196,.2);
}
.autism-warning-icon,
.autism-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.autism-warning-box strong,
.autism-info-box strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.autism-warning-box p,
.autism-info-box p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Inline CTA strip */
.autism-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--teal-light);
  border: 1px solid rgba(75,184,196,.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.autism-cta-inline strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.autism-cta-inline p {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}

@media (max-width: 768px) {
  .autism-toc { padding: 18px 20px; }
  .autism-cta-inline { flex-direction: column; align-items: flex-start; }
  .autism-cta-inline .btn { width: 100%; justify-content: center; }
  .autism-warning-box,
  .autism-info-box { flex-direction: column; gap: 10px; }
}
