/* ============================================================
   КПТСР.РФ — style.css
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue:    #21C78A;
  --blue-h:  #128A61;
  --blue-bg: #EAFBF4;
  --cyan:    #2BB8DA;
  --dark:    #1f1f1f;
  --muted:   #5f6368;
  --light:   #9aa0a6;
  --soft:    #F8FAF9;
  --alt:     #f1f3f4;
  --border:  #E6ECE9;
  --yellow:  #f4b400;
  --white:   #fff;
  --green:   #34a853;
  --red:     #ea4335;

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 1px 6px rgba(60,64,67,.1), 0 4px 16px rgba(60,64,67,.07);
  --shadow-h:  0 2px 12px rgba(60,64,67,.16), 0 6px 24px rgba(60,64,67,.12);
  --container: 1160px;
}

body {
  font-family: 'Google Sans', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  padding: 8px 16px; background: var(--dark); color: white;
  border-radius: var(--radius-sm); font-size: 14px;
}
.skip-link:focus { left: 8px; }

/* ── LAYOUT ── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 80px 0; }

/* ── HEADINGS ── */
.s-head { margin-bottom: 44px; }
.s-head--c { text-align: center; }
.s-head h2 {
  font-size: 36px; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.15;
  margin-bottom: 8px;
}
.s-head p { font-size: 15px; color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background .15s, transform .12s;
  border: none; font-family: inherit;
}
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.btn--dark    { background: var(--dark); color: white; }
.btn--dark:hover    { background: #2d2d2d; transform: translateY(-1px); }
.btn--blue    { background: var(--blue); color: white; }
.btn--blue:hover    { background: var(--blue-h); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--dark); border: 1.5px solid #c8cace; }
.btn--outline:hover { background: var(--soft); transform: translateY(-1px); }
.btn--ghost   { background: var(--soft); color: var(--dark); }
.btn--ghost:hover   { background: var(--alt); }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 32px; height: 60px;
  display: flex; align-items: center; gap: 8px;
}
.header__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 700; flex-shrink: 0;
  margin-right: 16px;
  line-height: 1.1;
  max-width: 320px;
}
.header__logo-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.header__logo-main { line-height: 1.15; }
.header__logo-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}
.header__logo-badge {
  width: 32px; height: 32px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header__logo-badge svg { width: 16px; height: 16px; fill: white; }
.header__nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header__link {
  padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--dark); white-space: nowrap;
  transition: background .15s;
}
.header__link:hover, .header__link[aria-current="page"] { background: var(--soft); }
.header__link[aria-current="page"] { color: var(--blue); }
.header__contacts {
  margin-left: auto; display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.header__phone {
  font-size: 14px; font-weight: 500; color: var(--dark);
  white-space: nowrap;
}
.header__phone:hover { color: var(--blue); }
.header__cta { padding: 9px 18px; }

/* ── BURGER ── */
.header__burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: none; border: none; cursor: pointer;
  margin-left: 8px; padding: 0;
}
.header__burger span {
  display: block; width: 100%; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.mobile-menu nav a {
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  transition: background .15s;
}
.mobile-menu nav a:hover { background: var(--soft); }
.mobile-menu__contacts { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── HERO ── */
.hero { padding: 72px 32px 0; text-align: center; background: white; }
.hero__inner { max-width: var(--container); margin: 0 auto; }
.hero__eyebrow {
  display: inline-block; margin-bottom: 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue);
}
.hero__title {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 18px;
}
.hero__title em { color: var(--blue); font-style: normal; }
.hero__sub {
  font-size: 16px; color: var(--muted);
  max-width: 480px; margin: 0 auto 32px; line-height: 1.7;
}
.hero__btns {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 48px; flex-wrap: wrap;
}
.hero__photo {
  max-width: 860px; margin: 0 auto;
  border-radius: 16px 16px 0 0; overflow: hidden;
  background: linear-gradient(160deg, #d2e3fc 0%, #aecbfa 50%, #b8d3f8 100%);
  min-height: 380px; display: flex; align-items: center; justify-content: center;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 0; padding: 16px 0;
  font-size: 13px; color: var(--muted);
}
.hero__trust-item { display: flex; align-items: center; gap: 6px; }
.hero__trust-item svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── HERO V2 ── */
.hero-v2 { padding: 56px 0 36px; background: white; }
.hero-v2__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: stretch; }
.hero-v2__content h1 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px; }
.hero-v2__content p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.hero-v2__eyebrow {
  display: inline-block; margin-bottom: 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue-h);
}
.hero-v2__btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-v2__trust { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.hero-v2__trust span {
  background: var(--soft); border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 12px;
}
.hero-v2__media {
  position: relative; min-height: 360px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); background: #0f2a21;
}
.hero-v2__media .media-img {
  width: 100%; height: 100%; min-height: 360px; object-fit: cover;
  display: block; border-radius: var(--radius);
}
.hero-v2__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: none;
}
.hero-v2__media.is-ready .hero-v2__video { display: block; }
.hero-v2__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,22,.25), rgba(10,30,22,.65));
}
.hero-v2__fallback {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(145deg, #1b5f48 0%, #2a7f62 45%, #2BB8DA 100%);
  color: white;
}
.hero-v2__fallback strong { font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.hero-v2__fallback p { color: rgba(255,255,255,.92); margin: 0; }
.hero-v2__media.is-ready .hero-v2__fallback { display: none; }

/* ── AUDIENCES ── */
.audiences { background: var(--soft); }
.audiences__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.audience-card {
  background: white; border-radius: var(--radius);
  padding: 24px 22px; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .15s;
}
.audience-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.audience-card__icon {
  width: 40px; height: 40px; margin-bottom: 14px;
  background: var(--blue-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.audience-card__icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.audience-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.audience-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CONDITIONS ── */
.conditions { background: white; }
.conditions__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.cond-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--soft);
  font-size: 14px; font-weight: 500;
  transition: border-color .15s, background .15s;
  text-decoration: none; color: var(--dark);
}
.cond-tag:hover { border-color: var(--blue); background: var(--blue-bg); color: var(--blue); }
.cond-tag__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}

/* ── HOW IT WORKS / STEPS ── */
.steps { background: var(--soft); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps__card {
  background: white; border-radius: var(--radius);
  padding: 28px 24px 32px; border: 1px solid var(--border);
}
.steps__num {
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px;
}
.steps__card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.steps__card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── METHODS ── */
.methods { background: white; }
.methods__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.method-card {
  border-radius: var(--radius); padding: 24px 22px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.method-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.method-card__label {
  display: inline-block; margin-bottom: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-bg); padding: 4px 10px; border-radius: 100px;
}
.method-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.method-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.method-card__link { font-size: 13px; font-weight: 500; color: var(--blue); }
.method-card__link:hover { text-decoration: underline; }

.compare { background: white; border-top: 1px solid var(--border); }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.compare__card {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--soft); padding: 22px;
}
.compare__card h3 { margin-bottom: 10px; font-size: 20px; }
.compare__card ul { list-style: disc; margin-left: 20px; color: var(--muted); display: flex; flex-direction: column; gap: 8px; }
.compare__cta { margin-bottom: 12px; color: var(--muted); font-size: 15px; }

.seo-text { max-width: 980px; }
.seo-text p { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 14px; }
.seo-text a { color: var(--blue-h); text-decoration: underline; }

.video-section { background: white; }
.video-section__box {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: #122922;
}
.video-section__trigger {
  display: block; width: 100%; position: relative;
  border: 0; padding: 0; margin: 0; cursor: pointer; background: none;
}
.video-section__preview {
  width: 100%; display: block; aspect-ratio: 16 / 9;
  object-fit: cover; vertical-align: top;
}
.video-section__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .5));
  pointer-events: none;
}
.video-section__hint {
  color: white; font-size: 14px; font-weight: 500;
  background: rgba(0, 0, 0, .55); padding: 8px 16px; border-radius: 999px;
}
.video-section__trigger:hover .video-section__hint { background: rgba(0, 0, 0, .72); }

.video-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.video-modal.is-open { display: block; }
.video-modal__backdrop {
  position: absolute; inset: 0; background: rgba(13, 18, 16, .74);
}
.video-modal__dialog {
  position: relative; max-width: 900px; margin: 6vh auto; z-index: 1;
  background: white; border-radius: 14px; padding: 18px;
}
.video-modal__player { width: 100%; border-radius: 10px; background: #122922; }
.video-modal__fallback { display: none; margin-top: 10px; color: var(--muted); font-size: 14px; }
.video-modal__dialog.is-fallback .video-modal__fallback { display: block; }
.video-modal__close {
  position: absolute; right: 8px; top: 8px; width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 50%;
  background: white; cursor: pointer; font-size: 22px; line-height: 1;
}

.checklist { background: var(--soft); }
.checklist__box {
  border: 1px solid var(--border); background: white; border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.checklist__item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; color: var(--dark); font-size: 14px; }
.checklist__item input { margin-top: 3px; accent-color: var(--blue-h); }
.checklist__result { color: var(--muted); font-size: 14px; margin: 6px 0; }

.recording { background: white; border-top: 1px solid var(--border); }
.recording__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.recording__card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: var(--soft); }
.recording__card h3 { margin-bottom: 10px; }
.recording__card ol { margin-left: 18px; display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 14px; }

.seo-bottom { background: white; border-top: 1px solid var(--border); }
.audience-card--link { display: block; }

/* ── SPECIALISTS ── */
.specialists { background: var(--soft); }
.specialists__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; }
.spec-card {
  background: white; border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  display: flex; gap: 20px;
  transition: box-shadow .2s;
}
.spec-card:hover { box-shadow: var(--shadow-h); }
.spec-card__photo {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-bg), #c9daf8);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.spec-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.spec-card__photo svg { width: 32px; height: 32px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.spec-card__name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.spec-card__role { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.spec-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.spec-card__tag {
  font-size: 12px; padding: 3px 10px;
  background: var(--blue-bg); color: var(--blue);
  border-radius: 100px; font-weight: 500;
}
.spec-card__focus { font-size: 13px; color: var(--muted); line-height: 1.55; }
.spec-card__photo .media-img,
.spec-card__photo img {
  object-position: center center;
}
.spec-card__reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
}
.spec-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
  color: var(--dark);
  background: var(--soft);
  transition: border-color .2s, box-shadow .2s;
}
.spec-review:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.spec-review__rating { font-weight: 700; white-space: nowrap; }
.spec-review__star { color: #ffb400; }
.spec-review__label { color: var(--muted); }
.spec-card__creds {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.spec-card__creds li + li { margin-top: 2px; }

/* ── TESTS ── */
.tests { background: white; }
.tests__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.test-card {
  border-radius: var(--radius); padding: 24px 22px;
  background: var(--soft); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.test-card h3 { font-size: 16px; font-weight: 600; }
.test-card p  { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.test-card__disclaimer { font-size: 12px; color: var(--light); font-style: italic; }

/* ── FAQ ── */
.faq { background: white; }
.faq__list { max-width: 780px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 18px 0; cursor: pointer;
  font-size: 16px; font-weight: 500; user-select: none;
  transition: color .15s;
}
.faq__q:hover { color: var(--blue); }
.faq__ch { flex-shrink: 0; transition: transform .25s; }
.faq__ch svg { width: 18px; height: 18px; stroke: var(--light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.faq__item.open .faq__ch { transform: rotate(180deg); }
.faq__a {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq__item.open .faq__a { max-height: 320px; padding-bottom: 18px; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--soft); text-align: center;
  border-top: 1px solid var(--border);
}
.cta-final h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-final p  { font-size: 16px; color: var(--muted); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.cta-final__btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-final .lead-form { max-width: 640px; margin: 0 auto; text-align: left; }
.cta-contact {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 500;
  background: white; transition: border-color .15s, background .15s;
}
.cta-contact:hover { border-color: var(--blue); background: var(--blue-bg); color: var(--blue); }
.cta-contact svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ── LEAD FORM ── */
.form-section { background: var(--soft); }
.form-wrap { max-width: 640px; }
.lead-form { display: flex; flex-direction: column; gap: 0; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.lead-form__field { display: flex; flex-direction: column; gap: 6px; }
.lead-form__field--wide { grid-column: 1 / -1; }
.lead-form__field label { font-size: 13px; font-weight: 500; color: var(--dark); }
.req { color: var(--red); }
.lead-form__field input:not([type="checkbox"]),
.lead-form__field select,
.lead-form__field textarea {
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-size: 14px;
  font-family: inherit; background: white; color: var(--dark);
  transition: border-color .15s;
  width: 100%;
}
.lead-form__field input:focus,
.lead-form__field select:focus,
.lead-form__field textarea:focus {
  outline: none; border-color: var(--blue);
}
.lead-form__field textarea { resize: vertical; }
.lead-form__checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; font-weight: 400; color: var(--muted); line-height: 1.5; }
.lead-form__checkbox input { width: auto; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); }
.lead-form__checkbox a { color: var(--blue); text-decoration: underline; }
.cta-final .lead-form__field:has(.lead-form__checkbox) { align-items: center; }
.cta-final .lead-form__checkbox { justify-content: center; max-width: 520px; text-align: left; }
.lead-form__success { color: var(--green); font-size: 14px; margin-top: 12px; font-weight: 500; }

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 16px 0 0; }
.breadcrumbs__list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; }
.breadcrumbs__item { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); }
.breadcrumbs__item a { color: var(--muted); transition: color .15s; }
.breadcrumbs__item a:hover { color: var(--blue); }
.breadcrumbs__item--active { color: var(--dark); }
.breadcrumbs__sep { color: var(--light); }

/* ── SEO PAGE HERO ── */
.page-hero { padding: 48px 0 40px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.page-hero__sub { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; margin-bottom: 24px; }
.page-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SYMPTOMS GRID ── */
.symptoms { background: var(--soft); }
.symptoms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.symptom-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; background: white; border-radius: var(--radius-sm);
  border: 1px solid var(--border); font-size: 14px; line-height: 1.5;
}
.symptom-item::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 7px;
}

/* ── INFO SECTIONS ── */
.info-section { background: white; }
.info-section + .info-section { border-top: 1px solid var(--border); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-grid--wide { grid-template-columns: 5fr 4fr; }
.info-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.info-text p:last-child { margin-bottom: 0; }
.info-text h3 { font-size: 20px; font-weight: 600; margin-bottom: 14px; }

/* ── ATTENTION BOX ── */
.attention-box {
  border-radius: var(--radius); padding: 24px 22px;
  background: var(--blue-bg); border-left: 3px solid var(--blue);
  font-size: 14px; line-height: 1.7; color: var(--dark);
}
.attention-box strong { display: block; margin-bottom: 6px; color: var(--blue); font-size: 15px; }

/* ── INTERNAL LINKS ── */
.related { background: var(--soft); }
.related__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.related__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 100px;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 500;
  background: white; transition: border-color .15s, color .15s;
}
.related__link:hover { border-color: var(--blue); color: var(--blue); }
.related__link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── SCHEDULE ── */
.schedule { background: white; }
.schedule__days { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.schedule__day {
  border-radius: var(--radius); padding: 24px;
  border: 1.5px solid var(--border); background: var(--soft);
}
.schedule__day h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.schedule__day-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.schedule__slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-btn {
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: white;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  font-family: inherit;
}
.slot-btn:hover, .slot-btn.selected {
  border-color: var(--blue); background: var(--blue-bg); color: var(--blue);
}
.schedule__selected {
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--blue-bg); font-size: 14px; margin-bottom: 20px;
  display: none;
}
.schedule__selected.visible { display: block; }
.schedule__pay-btn { margin-bottom: 8px; }
.schedule__pay-btn:disabled { opacity: .45; cursor: not-allowed; }
.schedule__pay-btn.is-ready:not(:disabled) { opacity: 1; cursor: pointer; }
.schedule__pay-form { display: inline-block; }
.lead-form__error {
  margin-top: 12px; padding: 12px 14px; border-radius: var(--radius-sm);
  background: #fff0f0; color: #a33; font-size: 14px; line-height: 1.5;
}
.lead-form__success { margin-top: 12px; font-size: 14px; color: var(--blue-h); }
.schedule__note { font-size: 13px; color: var(--muted); }
.schedule__note--pay { font-size: 14px; line-height: 1.6; }
.schedule__lock-hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
.schedule__days.is-locked { opacity: .45; pointer-events: none; user-select: none; }

/* ── BOOKING: выбор специалиста ── */
.book-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-bottom: 8px;
}
.book-spec {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px 16px; border-radius: var(--radius);
  border: 2px solid var(--border); background: white;
  cursor: pointer; font-family: inherit; width: 100%;
  transition: border-color .15s, background .15s, box-shadow .15s;
  min-height: 44px;
}
.book-spec:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.book-spec.selected {
  border-color: var(--blue); background: var(--blue-bg);
  box-shadow: 0 0 0 1px var(--blue);
}
.book-spec__photo {
  position: relative; width: 96px; height: 96px; margin-bottom: 12px; flex-shrink: 0;
}
.book-spec__photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 2px solid var(--border);
}
.book-spec.selected .book-spec__photo img { border-color: var(--blue); }
.book-spec__check {
  display: none; position: absolute; right: 0; bottom: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue); color: white;
  font-size: 13px; font-weight: 700; line-height: 26px; text-align: center;
  border: 2px solid white;
}
.book-spec.selected .book-spec__check { display: block; }
.book-spec__name { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.book-spec__focus {
  font-size: 12px; color: var(--muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 520px) {
  .book-specs { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .book-spec { padding: 16px; }
}

/* ── ARTICLES ── */
.articles { background: white; }
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card {
  border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s;
}
.article-card:hover { box-shadow: var(--shadow); }
.article-card__cat {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--blue);
}
.article-card h3 { font-size: 16px; font-weight: 600; line-height: 1.4; }
.article-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.article-card__read { font-size: 13px; font-weight: 500; color: var(--blue); }

/* ── CONTACTS PAGE ── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-block { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-item__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item__icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item__label { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.contact-item__val { font-size: 15px; font-weight: 600; }
.contact-item__val a { color: var(--blue); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; }
.footer__logo-badge {
  width: 28px; height: 28px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer__logo-badge svg { width: 14px; height: 14px; fill: white; }
.footer__tagline { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer__messengers { display: flex; flex-direction: column; gap: 8px; }
.footer__msg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; width: fit-content;
  background: var(--blue); color: white;
  transition: background .15s;
}
.footer__msg-btn:hover { background: var(--blue-h); }
.footer__msg-btn svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; }
.footer__col h4 { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.footer__col a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; transition: color .15s; }
.footer__col a:hover { color: var(--dark); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 20px 32px;
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: var(--light); }
.footer__disclaimer { font-size: 12px; color: var(--light); max-width: 640px; line-height: 1.6; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 22px; font-weight: 600; margin: 32px 0 12px; }
.legal-content h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.legal-content p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 12px 20px; list-style: disc; }
.legal-content ul li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.legal-content ol { margin: 8px 0 12px 24px; list-style: decimal; }
.legal-content ol li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.legal-content__cta { margin: 40px 0 32px; padding: 28px; background: var(--soft); border-radius: var(--radius); border: 1px solid var(--border); }
.legal-content__cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.article-img { margin: 32px 0; }
.article-img img { width: 100%; height: auto; border-radius: 8px; display: block; }

/* ── SPECIALIST PAGE ── */
.spec-page { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.spec-page__sidebar { position: sticky; top: 80px; align-self: start; }
.spec-page__photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-bg), #c9daf8);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 20px;
}
.spec-page__photo img { width: 100%; height: 100%; object-fit: cover; }
.spec-page__photo svg { width: 64px; height: 64px; stroke: var(--blue); fill: none; stroke-width: 1.2; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .header__logo-sub { display: none; }
  .header__nav { display: none; }
  .header__contacts .header__phone { display: none; }
  .header__contacts .header__cta { display: none; }
  .header__burger { display: flex; }
  .mobile-menu {
    position: fixed; left: 0; right: 0; top: 60px;
    height: calc(100dvh - 60px); max-height: calc(100dvh - 60px);
    z-index: 99; overflow-y: auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .methods__grid { grid-template-columns: 1fr 1fr; }
  .specialists__grid { grid-template-columns: 1fr; max-width: 100%; }
  .hero-v2__grid { grid-template-columns: 1fr; }
  .compare__grid { grid-template-columns: 1fr; }
  .recording__grid { grid-template-columns: 1fr; }
  .articles__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  section { padding: 56px 0; }
  .s-head h2 { font-size: 26px; }
  .hero { padding: 48px 20px 0; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { text-align: center; justify-content: center; }
  .hero__photo { min-height: 260px; }
  .hero-v2__btns { flex-direction: column; }
  .hero-v2__btns .btn { justify-content: center; }
  .hero-v2__media { min-height: 280px; }
  .video-modal__dialog { margin: 8vh 16px; }
  .audiences__grid { grid-template-columns: 1fr; }
  .conditions__grid { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .methods__grid { grid-template-columns: 1fr; }
  .tests__grid { grid-template-columns: 1fr; }
  .schedule__days { grid-template-columns: 1fr; }
  .articles__grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .cta-final__btns { flex-direction: column; align-items: stretch; }
  .cta-contact { justify-content: center; }
  .spec-page { grid-template-columns: 1fr; }
  .spec-page__sidebar { position: static; }
}

@media (max-width: 480px) {
  .conditions__grid { grid-template-columns: 1fr; }
  .symptoms__grid { grid-template-columns: 1fr; }
  .lead-form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── PR1 v1.3: cinema hero + split sections ── */
.home-cinema #main { padding-top: 0; }

.header--cinema {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(15, 42, 33, .72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header--cinema.is-scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--border);
}
.header--cinema .header__link,
.header--cinema .header__phone,
.header--cinema .header__logo-main { color: #fff; }
.header--cinema .header__logo-sub { color: rgba(255,255,255,.75); }
.header--cinema .header__link:hover,
.header--cinema .header__link[aria-current="page"] { background: rgba(255,255,255,.12); color: #fff; }
.header--cinema .header__burger span { background: #fff; }
.header--cinema.is-scrolled .header__link,
.header--cinema.is-scrolled .header__phone,
.header--cinema.is-scrolled .header__logo-main { color: var(--dark); }
.header--cinema.is-scrolled .header__logo-sub { color: var(--muted); }
.header--cinema.is-scrolled .header__link:hover,
.header--cinema.is-scrolled .header__link[aria-current="page"] { background: var(--soft); color: var(--blue); }
.header--cinema.is-scrolled .header__burger span { background: var(--dark); }
.header--cinema .header__logo-badge { background: var(--blue); }
.header__logo-letter {
  font-size: 14px; font-weight: 700; color: #fff; line-height: 1;
}
.confidentiality-bar {
  padding: 8px 32px 10px;
  font-size: 12px; line-height: 1.4;
  color: rgba(255,255,255,.85);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.header--cinema.is-scrolled .confidentiality-bar {
  color: var(--muted);
  border-top-color: var(--border);
}

.hero-cinema {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 48px;
  color: #fff;
  overflow: hidden;
}
.hero-cinema__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #0f2a21 0%, #128A61 45%, #2BB8DA 100%);
}
.hero-cinema__video,
.hero-cinema__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-cinema__video { display: none; }
.hero-cinema__bg.is-ready .hero-cinema__video { display: block; }
.hero-cinema__bg.is-ready .hero-cinema__poster { display: none; }
.hero-cinema__bg.is-poster .hero-cinema__poster { display: block; }
.hero-cinema__bg.is-poster .hero-cinema__video { display: none; }
.hero-cinema__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,24,18,.35) 0%, rgba(8,24,18,.55) 45%, rgba(8,24,18,.88) 100%);
}
.hero-cinema__gradient { display: none; }
.hero-cinema__brand {
  position: absolute; top: 100px; left: 32px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
}
.hero-cinema__badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.hero-cinema__brand strong { display: block; font-size: 18px; }
.hero-cinema__brand small { display: block; font-size: 12px; opacity: .85; max-width: 220px; }
.hero-cinema__content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-cinema__content h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px;
}
.hero-cinema__content p {
  font-size: 16px; line-height: 1.75; opacity: .92; margin-bottom: 22px;
}
.hero-cinema__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hero-cinema__btn-outline {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff;
}
.hero-cinema__btn-outline:hover { background: rgba(255,255,255,.2); }
.hero-cinema__btn-ghost { background: rgba(0,0,0,.2); color: #fff; }
.hero-cinema__trust {
  display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px;
}
.hero-cinema__trust span {
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
}
.hero-cinema__play {
  position: absolute; left: 50%; top: 48%;
  transform: translate(-50%, -50%); z-index: 3;
  width: 72px; height: 72px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 32px rgba(33,199,138,.45);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; transition: transform .2s;
  animation: hero-play-pulse 2.5s ease-in-out infinite;
}
.hero-cinema__play:hover { transform: translate(-50%, -50%) scale(1.06); }
.hero-cinema__play-icon {
  width: 0; height: 0;
  border-style: solid; border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.hero-cinema__play-label { font-size: 10px; font-weight: 600; letter-spacing: .04em; }
@keyframes hero-play-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(33,199,138,.4); }
  50% { box-shadow: 0 8px 40px rgba(33,199,138,.65); }
}

.split-section {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start;
}
.split-section__media { min-height: 280px; border-radius: var(--radius); overflow: hidden; }
.split-section__img,
.split-section__media .media-img {
  width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block;
}
.media-placeholder {
  width: 100%; min-height: 280px;
  background: linear-gradient(145deg, var(--blue-bg), #c5ebe0);
  display: flex; align-items: center; justify-content: center;
}
.media-placeholder__initials {
  font-size: 42px; font-weight: 700; color: var(--blue-h); opacity: .5;
}
.spec-card__photo .media-placeholder { min-height: 120px; aspect-ratio: 1; border-radius: var(--radius); }
.spec-card__photo .media-placeholder__initials { font-size: 28px; }
.spec-card__photo .media-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.article-card__thumb {
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 12px;
  aspect-ratio: 16/10; background: var(--soft);
}
.article-card__thumb .media-img,
.article-card__thumb .media-placeholder { width: 100%; height: 100%; min-height: 0; object-fit: cover; }

@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .hero-cinema__brand { top: 88px; left: 20px; }
  .hero-cinema__play { width: 60px; height: 60px; }
}
@media (max-width: 768px) {
  .hero-cinema { padding: 100px 0 40px; min-height: 92svh; }
  .hero-cinema__brand { display: none; }
  .hero-cinema__btns { flex-direction: column; }
  .hero-cinema__btns .btn { justify-content: center; }
  .confidentiality-bar { padding: 8px 20px; font-size: 11px; }
}

.media-img--rounded { border-radius: 16px; width: 100%; height: auto; display: block; }
.media-img--full { width: 100%; height: clamp(220px, 32vw, 420px); object-fit: cover; display: block; }

/* --- Sticky CTA (только мобайл) --- */
.sticky-cta { display: none; }
@media (max-width: 768px) {
  .sticky-cta {
    display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
    background: var(--blue, #2f9e7e); color: #fff; text-align: center;
    padding: 15px; border-radius: 14px; font-weight: 600; text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
  }
  body { padding-bottom: 80px; }
}

/* --- Hero на мобиле: текст выше фото, кнопки компактнее --- */
@media (max-width: 768px) {
  .hero-v2__grid { display: flex; flex-direction: column; }
  .hero-v2__content { order: 1; }
  .hero-v2__media { order: 2; margin-top: 16px; }
  .hero-v2__media .media-img { max-height: 260px; object-fit: cover; border-radius: 16px; }
  .hero-v2__btns .btn--ghost { display: none; }
}

/* --- Карточка специалиста в колонку --- */
@media (max-width: 768px) {
  .spec-card { flex-direction: column; text-align: center; }
  .spec-card__photo { margin: 0 auto; }
  .spec-card div[style*="display:flex"] { justify-content: center; }
}

/* --- Тап-таргеты чек-листа --- */
.checklist__item { min-height: 44px; padding: 8px 4px; display: flex; align-items: center; gap: 10px; }
.checklist__check { width: 22px; height: 22px; flex-shrink: 0; }

/* --- Сворачивание длинных текстов на мобиле --- */
@media (max-width: 768px) {
  details.seo-fold > summary {
    list-style: none; cursor: pointer; color: var(--blue, #2f9e7e); font-weight: 600; padding: 8px 0;
  }
  details.seo-fold > summary::-webkit-details-marker { display: none; }
  details.seo-fold[open] > summary { margin-bottom: 8px; }
}
@media (min-width: 769px) {
  details.seo-fold > summary { display: none; }
  details.seo-fold .seo-text { display: block; }
}

/* --- Cookie banner --- */
.cookie-banner{
  position:fixed;left:12px;right:12px;bottom:12px;z-index:9999;
  background:#fff;border:1px solid #e0e0e0;border-radius:14px;
  box-shadow:0 6px 28px rgba(0,0,0,.16);
  padding:16px 20px;display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  max-width:920px;margin:0 auto
}
.cookie-banner__text{flex:1;min-width:240px;font-size:14px;line-height:1.5;color:var(--dark,#222)}
.cookie-banner__text a{color:var(--blue,#2f9e7e);text-decoration:underline}
.cookie-banner__btn{
  background:var(--blue,#2f9e7e);color:#fff;border:none;border-radius:10px;
  padding:12px 28px;font-size:15px;font-weight:600;cursor:pointer;white-space:nowrap
}
.cookie-banner__btn:hover{opacity:.9}
@media (max-width:768px){
  .cookie-banner{flex-direction:column;align-items:stretch;text-align:center;bottom:84px}
  .cookie-banner__btn{width:100%}
}
