/* ============================================================
   ФОЦ «Эльмар» — промо-лендинг «Реабилитация + ЛФК»
   Палитра взята из брендовой бирюзы elmarmed.ru + тёплый
   конверсионный акцент. Mobile-first.
   ============================================================ */

:root {
  --ink:        #14302E;
  --ink-soft:   #4B635F;
  --teal:       #12807A;
  --teal-deep:  #0A5450;
  --teal-700:   #0E6862;
  --mint:       #DCEFEA;
  --mint-soft:  #EEF7F4;
  --cream:      #FBF8F2;
  --white:      #FFFFFF;
  --coral:      #F2683C;
  --coral-deep: #D9521F;
  --gold:       #E7A93A;
  --line:       rgba(20, 48, 46, .12);
  --shadow-sm:  0 2px 8px rgba(10, 84, 80, .08);
  --shadow-md:  0 14px 40px rgba(10, 84, 80, .14);
  --shadow-lg:  0 28px 70px rgba(10, 84, 80, .20);
  --radius:     18px;
  --radius-lg:  28px;
  --maxw:       1180px;

  --font-display: "Manrope", system-ui, -apple-system, sans-serif; 
  --font-body:    "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Типографика секций ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
}

.section { padding: clamp(56px, 8vw, 110px) 0; }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}
.section__head--left { margin-left: 0; text-align: left; }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 14px 0 14px;
}
.section__sub {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 19px);
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--accent {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242, 104, 60, .32);
}
.btn--accent:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(242, 104, 60, .4);
}
.btn--ghost {
  background: transparent;
  color: var(--teal-deep);
  box-shadow: inset 0 0 0 2px var(--teal);
}
.btn--ghost:hover { background: var(--mint); transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn--block { width: 100%; }

.link-btn {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: var(--coral-deep); }

/* ---------- Заглушки фигур ---------- */
.ph-figure {
  width: 56%;
  fill: none;
  stroke: var(--teal);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: .5;
}
.ph-figure circle { fill: var(--teal); stroke: none; opacity: .85; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand__text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--ink-soft);
  text-transform: none;
}

.header__nav {
  display: none;
  gap: 26px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}
.header__nav a { color: var(--ink-soft); transition: color .15s; }
.header__nav a:hover { color: var(--teal); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header__phone {
  display: none;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}
.header__phone:hover { color: var(--teal); }
.header__phone-ico { color: var(--teal); margin-right: 6px; }

@media (min-width: 860px) {
  .header__nav { display: flex; }
  .header__actions { margin-left: 0; }
  .header__phone { display: inline-flex; align-items: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(40px, 6vw, 78px) 0 clamp(56px, 7vw, 90px); }
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 78% 12%, var(--mint) 0%, transparent 60%),
    radial-gradient(50% 60% at 100% 100%, rgba(18,128,122,.10) 0%, transparent 55%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 34px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 16px 0 18px;
}
.hero__title em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}
@media (min-width: 480px) {
  .hero__title em { white-space: nowrap; }
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--gold);
  opacity: .35;
  border-radius: 6px;
  z-index: -1;
}
.hero__lead {
  font-size: clamp(16px, 1.8vw, 16px);
  color: var(--ink-soft);
  max-width: 540px;
}
.hero__usps {
  list-style: none;
  margin: 24px 0 28px;
  display: grid;
  gap: 11px;
}
/* .hero__usps li и .usp-ico → в icon system внизу */

/* Hero форма */
.hero__form {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 540px;
}
.hero__form-row { display: grid; gap: 12px; margin-bottom: 12px; }
@media (min-width: 520px) { .hero__form-row { grid-template-columns: 1fr 1fr; } }

/* Hero медиа */
.hero__media { position: relative; }
/* hero__photo → в блоке ЛОГОТИП/HERO внизу */
.hero__photo-tag {
  display: none; /* убрана заглушка */
  position: absolute;
  bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  background: rgba(255,255,255,.7);
  padding: 5px 12px;
  border-radius: 999px;
}
.badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 13px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge strong { font-family: var(--font-display); font-weight: 700; line-height: 1; }
.badge span { font-size: 12px; color: var(--ink-soft); }
.badge--license { top: 18px; left: -8px; }
.badge--license strong { color: var(--teal); font-size: 15px; }
.badge--stat { bottom: 22px; right: -6px; }
.badge--stat strong { color: var(--coral); font-size: 26px; }

@media (min-width: 920px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .badge--license { left: -22px; }
  .badge--stat { right: -22px; }
}

/* ---------- Поля форм ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--mint-soft);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .15s, background .15s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.consent input { margin-top: 3px; accent-color: var(--teal); flex: 0 0 auto; }
.consent a { color: var(--teal); text-decoration: underline; }

/* ============================================================
   АКЦИЯ — «−50% на первое занятие» (билет-купон)
   ============================================================ */
.promo-wrap { padding-top: clamp(4px, 1.5vw, 16px); }

.promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--teal) 0%, var(--teal-deep) 68%, #073B38 100%);
  box-shadow: var(--shadow-lg);
}

.promo__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 26px 22px 20px;
}

.promo__stamp {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  transform: rotate(-8deg);
}
.promo__stamp-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
}
.promo__stamp-label {
  margin-top: 4px;
  max-width: 80px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, .85);
}

.promo__copy { min-width: 0; }
.promo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
.promo__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: promo-pulse 1.8s ease-in-out infinite;
}
.promo__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.16;
  color: var(--white);
  margin: 10px 0 8px;
}
.promo__desc {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  max-width: 520px;
}

.promo__divider {
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, .38);
}
.promo__divider::before,
.promo__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  transform: translateY(-50%);
}
.promo__divider::before { left: -12px; }
.promo__divider::after { right: -12px; }

.promo__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 22px 22px;
  text-align: center;
}
.promo__deadline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.promo__deadline .icon { color: var(--gold); flex: 0 0 auto; }
.promo__deadline strong { font-weight: 800; }

.btn--onlight {
  background: var(--white);
  color: var(--coral-deep);
  box-shadow: 0 10px 24px rgba(20, 10, 5, .18);
}
.btn--onlight:hover { background: var(--cream); transform: translateY(-2px); }

.promo__fine {
  padding: 0 22px 20px;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, .7);
}

@keyframes promo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(1.35); }
}

@media (min-width: 700px) {
  .promo__top {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    padding: 32px 36px 26px;
  }
  .promo__stamp { width: 112px; height: 112px; }
  .promo__stamp-value { font-size: 30px; }
  .promo__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 24px 36px 28px;
  }
  .promo__fine { text-align: left; padding: 0 36px 24px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--teal-deep);
  color: var(--white);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  padding: 34px 20px;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1;
  color: var(--white);
}
.trust__item span {
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
@media (min-width: 760px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   КОМУ ПОМОГАЕМ
   ============================================================ */
.help__cols {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .help__cols { grid-template-columns: 1fr 1fr; } }

.help__col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.help__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.help__col-ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--mint);
  border-radius: 12px;
  color: var(--teal-deep);
}
.chip-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--mint-soft);
  border-radius: 12px;
  font-weight: 600;
  transition: background .15s, transform .15s;
}
.chip::before {
  content: "→";
  color: var(--coral);
  font-weight: 800;
  transition: transform .15s;
}
.chip:hover { background: var(--mint); transform: translateX(4px); }
.chip:hover::before { transform: translateX(2px); }
.help__note { text-align: center; margin-top: 26px; color: var(--ink-soft); }

/* ============================================================
   УСЛУГИ
   ============================================================ */
.services { background: var(--mint-soft); }
.services__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .services__grid { grid-template-columns: 1fr 1fr; } }

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.svc-card--accent {
  background: var(--teal-deep);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.svc-card--accent .tick-list li { color: rgba(255,255,255,.9); }
.svc-card--accent .tick-list li::before { background: var(--gold); color: var(--teal-deep); }
.svc-card--accent p { color: rgba(255,255,255,.82); }

.svc-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.svc-card__ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--mint);
  border-radius: 14px;
  color: var(--teal);
}
.svc-card--accent .svc-card__ico { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.svc-card__top h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
}
.svc-card > p {
    color: #999999;
    margin-bottom: 18px;
} 
.tick-list { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 500;
}
.tick-list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--mint);
  color: var(--teal-deep);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}
.svc-card .btn { margin-top: auto; }

/* ============================================================
   КАК ПРОХОДИТ — сигнатурная линия пути
   ============================================================ */
.path {
  position: relative;
  list-style: none;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.path__line {
  display: none;
  position: absolute;
  top: 27px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}
.path__line path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: .35;
  transition: stroke-dashoffset 1.6s ease;
}
.path.is-drawn .path__line path { stroke-dashoffset: 0; }

.path__step { position: relative; padding-left: 64px; }
.path__node {
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--white);
  color: var(--teal-deep);
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.path__step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 6px;
}
.path__step p { color: var(--ink-soft); font-size: 15.5px; }
.process__cta { text-align: center; margin-top: 44px; }

@media (min-width: 860px) {
  .path { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .path__line { display: block; }
  .path__step { padding-left: 0; padding-top: 70px; }
  .path__node { left: 0; }
}

/* ============================================================
   СПЕЦИАЛИСТЫ
   ============================================================ */
.team { background: var(--mint-soft); }
.team__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 820px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }

.member {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.member__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--mint);
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .45s ease;
}
.member:hover .member__photo img { transform: scale(1.04); }

.member__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.member h3 { font-size: 16px; font-weight: 700; line-height: 1.3; }
.member__role { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 4px; }

/* ============================================================
   ОТЗЫВЫ
   ============================================================ */
.reviews__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Шапка карточки: аватар + имя + бейдж платформы */
.review__header {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.review__name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review__source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--teal);
  background: var(--mint);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.review__stars { display: flex; gap: 3px; color: var(--gold); }
.review blockquote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}

/* Скриншот отзыва */
.review__screenshot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: auto;
}
.review__screenshot img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Кнопка «Все отзывы в 2ГИС» */
.reviews__cta { text-align: center; margin-top: 36px; }
.btn--2gis {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  background: #1DB954;
  background: linear-gradient(135deg, #1a8f3f 0%, #239248 100%);
  box-shadow: 0 10px 24px rgba(29, 185, 84, .28);
  transition: transform .15s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn--2gis:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(29, 185, 84, .38);
}

/* ============================================================
   ЦЕНЫ
   ============================================================ */
.prices { background: var(--mint-soft); }
.prices__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 26px;
}
@media (min-width: 740px) { .prices__grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.price-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.price-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
}
.price-card__meta { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }

.tax {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}
.tax__ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14);
  border-radius: 16px;
  font-size: 28px;
}
.tax__text strong { font-family: var(--font-display); font-size: 21px; display: block; margin-bottom: 4px; }
.tax__text p { color: rgba(255,255,255,.85); }
@media (min-width: 760px) {
  .tax { flex-direction: row; align-items: center; }
  .tax__text { flex: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .faq__inner { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .faq .section__head { margin-bottom: 0; }
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
  font-weight: 700;
  transition: transform .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; color: var(--ink-soft); }

/* ============================================================
   ФИНАЛЬНЫЙ CTA
   ============================================================ */
.final { background: var(--teal-deep); color: var(--white); }
.final__inner {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 880px) { .final__inner { grid-template-columns: 1fr 460px; align-items: center; } }

.final__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.final__lead { color: rgba(255,255,255,.85); max-width: 480px; }
.final__contacts {
  list-style: none;
  margin: 26px 0;
  display: grid;
  gap: 13px;
}
.final__contacts li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.final__contacts a:hover { color: var(--gold); }
.final__socials { display: flex; flex-wrap: wrap; gap: 12px; }
.social {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255,255,255,.12);
  transition: background .15s, transform .15s;
}
.social:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.social--tg  { background: rgba(41, 169, 235, .25); }
.social--max { background: rgba(91, 94, 166, .25); }

.final__section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  margin-top: 22px;
}
.final__section-label:first-child { margin-top: 0; }

.final__form { background: var(--white); color: var(--ink); }
.final__form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 18px;
}
.final__form .field { margin-bottom: 14px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.map {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: var(--mint);
  border-radius: var(--radius-lg);
  color: var(--teal-deep);
  font-weight: 600;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(18,128,122,.3);
}

.map-section { padding-top: 0; padding-bottom: clamp(40px, 6vw, 64px); }

.map-embed {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe,
.map-embed ymaps {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
@media (min-width: 640px)  { .map-embed { height: 380px; } }
@media (min-width: 960px)  { .map-embed { height: 440px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0B3331; color: rgba(255,255,255,.7); padding: 50px 0 24px; }
.footer__inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 760px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand .brand__text { color: var(--white); margin-bottom: 12px; }
.footer__brand p { font-size: 14px; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__col a:hover { color: var(--white); }
.footer__lic { color: rgba(255,255,255,.5); font-size: 13px; }
.footer__legal { padding-top: 22px; font-size: 13px; display: grid; gap: 8px; }
.footer__warn { color: var(--gold); font-weight: 600; }

/* ============================================================
   ПЛАВАЮЩИЙ МЕССЕНДЖЕР
   ============================================================ */
.fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}
.fab__btn {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .15s;
}
.fab__btn:hover { transform: scale(1.08); }
.fab__btn--tg { background: #29A9EB; }
.fab__btn--max { background: #5B5EA6; }
.fab__btn--main { background: var(--coral); font-size: 22px; }

@media (max-width: 499px) {
  .fab { display: none; }
}

/* ============================================================
   МОДАЛКА
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 51, 49, .55);
  backdrop-filter: blur(3px);
  animation: fade .2s ease;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  animation: pop .25s ease;
}
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
}
.modal__close:hover { color: var(--ink); }
.modal__title { font-family: var(--font-display); font-weight: 600; font-size: 23px; margin-bottom: 6px; }
.modal__sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 20px; }
.modal__dialog .field { margin-bottom: 14px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  animation: slideUp .3s ease;
}
.toast[hidden] { display: none; }
.toast__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--teal);
}
.toast__ico {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  display: grid; place-items: center;
  background: var(--mint);
  color: var(--teal-deep);
  border-radius: 50%;
  font-weight: 800;
}
.toast strong { display: block; }
.toast p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   АНИМАЦИИ + REVEAL
   ============================================================ */
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.96); } }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%, 20px); } }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .path__line path { stroke-dashoffset: 0; }
}

/* ============================================================
   SERVICES BANNER — фото во всю ширину под картами услуг
   ============================================================ */
.services__banner {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 21 / 7;
}
.services__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ============================================================
   ЛОГОТИП
   ============================================================ */
.brand__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   HERO PHOTO — реальное фото вместо заглушки
   ============================================================ */
.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 4.2;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   HELP COL PHOTO — фото над блоками «Детям» / «Взрослым»
   ============================================================ */
.help__col-photo {
  aspect-ratio: 16 / 9;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  margin: -28px -28px 20px -28px;
}
.help__col-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .5s ease;
}
.help__col:hover .help__col-photo img { transform: scale(1.03); }

/* Видимый фокус для доступности */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   ICON SYSTEM
   Единый стиль: stroke round, fill none, currentColor.
   Размер задаётся атрибутами width/height на элементе.
   ============================================================ */
.icon {
  display: inline-block;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Заполненная звезда для рейтинга */
.icon--star {
  fill: currentColor;
  stroke: none;
}

/* Иконка телефона в шапке */
.header__phone-ico { color: var(--teal); margin-right: 5px; display: inline-flex; }

/* Иконки-галочки в hero usps */
.usp-ico {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--mint);
  color: var(--teal-deep);
  border-radius: 50%;
}
.hero__usps li { display: flex; align-items: center; gap: 11px; font-weight: 600; }

/* Иконки разделов «кому помогаем» */
.help__col-ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--mint);
  border-radius: 12px;
  color: var(--teal-deep);
}

/* Иконки услуг в карточках */
.svc-card__ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--mint);
  border-radius: 14px;
  color: var(--teal);
}
.svc-card--accent .svc-card__ico { background: rgba(255,255,255,.14); color: rgba(255,255,255,.92); }

/* Звёзды в отзывах */
.review__stars { display: flex; gap: 4px; color: var(--gold); }

/* Иконки в блоке налогового вычета */
.tax__ico .icon { color: rgba(255,255,255,.9); }

/* Иконки контактов */
.contact-ico { color: var(--gold); flex-shrink: 0; }
.final__contacts li { display: flex; align-items: center; gap: 12px; }

/* Иконки соцсетей в финальном блоке */
.social { display: inline-flex; align-items: center; gap: 8px; }

/* Предупреждение в футере */
.footer__warn { display: flex; align-items: center; gap: 7px; }
.footer__warn .icon { color: var(--gold); flex-shrink: 0; }

/* FAB — убираем font-size, теперь размер задаётся иконкой */
.fab__btn--main { font-size: 0; }

/* Карта — горизонтальный центр с иконкой */
.map { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.map .icon { color: var(--teal); opacity: .6; }

/* ============================================================
   ГАЛЕРЕЯ — scroll-snap слайдер
   ============================================================ */
.gallery { padding-bottom: 0; }
.gallery .section__head { margin-bottom: 32px; }

.gallery__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery__viewport {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  /* боковые отступы чтобы первый/последний слайд были по центру */
  padding: 0 60px;
}
.gallery__viewport::-webkit-scrollbar { display: none; }

.gallery__track {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery__slide {
  scroll-snap-align: start;
  flex: 0 0 80%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 600px) {
  .gallery__slide { flex: 0 0 calc(50% - 8px); }
  .gallery__viewport { padding: 0 80px; }
}
@media (min-width: 960px) {
  .gallery__slide { flex: 0 0 calc(33.333% - 11px); }
  .gallery__viewport { padding: 0 100px; }
}

.gallery__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
  display: block;
}
.gallery__slide:hover img { transform: scale(1.04); }

/* Стрелки */
.gallery__arrow {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .15s, transform .15s, opacity .15s;
  z-index: 2;
}
.gallery__arrow:hover { background: var(--teal); color: var(--white); transform: scale(1.07); }
.gallery__arrow:disabled { opacity: .3; pointer-events: none; }

/* Точки */
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 40px;
}
.gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s, width .2s;
}
.gallery__dot.is-active {
  background: var(--teal);
  width: 24px;
  border-radius: 999px;
}

/* ============================================================
   LIVECHAT WIDGET
   ============================================================ */
.lc {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
}

/* Кнопка-аватар */
.lc__toggle {
  position: relative;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  transition: transform .2s ease;
  flex-shrink: 0;
  background: none;
}
.lc__toggle:hover { transform: scale(1.07); }
.lc__toggle-img {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Зелёная точка онлайн */
.lc__online-dot {
  position: absolute;
  bottom: 3px; right: 3px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2.5px solid #fff;
  animation: lc-pulse 2s infinite;
}
@keyframes lc-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Счётчик-бейдж */
.lc__badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
  opacity: 0;
  transform: scale(0);
  transition: opacity .25s, transform .25s;
}
.lc__badge.is-visible { opacity: 1; transform: scale(1); }

/* Приветственный пузырь */
.lc__greeting {
  background: #fff;
  border-radius: 16px 16px 4px 16px;
  padding: 13px 36px 13px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  max-width: 230px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  opacity: 0;
  transform: translateY(8px) scale(.95);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.lc__greeting.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.lc__greeting-close {
  position: absolute; top: 7px; right: 10px;
  font-size: 17px; line-height: 1;
  color: var(--ink-soft);
  cursor: pointer; border: none; background: none; padding: 0;
}

/* Панель */
.lc__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 310px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 520px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.97);
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  pointer-events: none;
}
.lc__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
@media (max-width: 380px) { .lc__panel { width: calc(100vw - 24px); right: 0; } }

/* Шапка */
.lc__head {
  background: var(--teal);
  color: #fff;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.lc__head-info { display: flex; align-items: center; gap: 10px; }
.lc__head-ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 2px solid rgba(255,255,255,.3);
  flex-shrink: 0;
}
.lc__head-name { font-weight: 700; font-size: 15px; }
.lc__head-status {
  font-size: 12px; opacity: .85;
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.lc__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: #4ade80; flex-shrink: 0;
}
.lc__close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  color: #fff; transition: background .15s;
}
.lc__close:hover { background: rgba(255,255,255,.28); }

/* Сообщения */
.lc__messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
  min-height: 120px;
}

/* Пузыри сообщений */
.lc-msg { display: flex; gap: 7px; align-items: flex-end; }
.lc-msg--op  { align-self: flex-start; }
.lc-msg--user { align-self: flex-end; flex-direction: row-reverse; }
.lc-msg__ava {
  width: 26px; height: 26px;
  border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
}
.lc-msg__bubble {
  max-width: 200px;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 13.5px; line-height: 1.5;
}
.lc-msg--op  .lc-msg__bubble { background: #f0f0f0; color: var(--ink); border-bottom-left-radius: 3px; }
.lc-msg--user .lc-msg__bubble { background: var(--teal); color: #fff; border-bottom-right-radius: 3px; }

/* Индикатор печатает */
.lc-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 13px;
  background: #f0f0f0;
  border-radius: 14px 14px 14px 3px;
}
.lc-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #aaa;
  animation: lc-dots 1.2s infinite;
}
.lc-typing span:nth-child(2) { animation-delay: .2s; }
.lc-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes lc-dots {
  0%,60%,100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Инпут и кнопка */
.lc__footer {
  border-top: 1px solid var(--line);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.lc__name, .lc__phone, .lc__input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: inherit; font-size: 14px;
  color: var(--ink);
  background: #fafafa;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.lc__name:focus, .lc__phone:focus, .lc__input:focus { border-color: var(--teal); background: #fff; }
.lc__send-row { display: flex; gap: 8px; }
.lc__input { flex: 1; }
.lc__send {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  color: #fff;
  transition: background .15s, transform .15s;
}
.lc__send:hover { background: var(--teal-deep); transform: scale(1.06); }
.lc__note {
  font-size: 11px; color: var(--ink-soft); text-align: center; line-height: 1.4;
}
.lc__note a { color: var(--ink-soft); }

/* ── Форма в блоке услуги ── */
.services__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}
@media (min-width: 760px) {
  .services__cta { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.services__form {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services__cta-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services__cta-label {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
.services__cta-desc {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.services__cta-or {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 6px;
}
.services__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.01em;
  transition: color .15s;
}
.services__cta-phone:hover { color: var(--teal-deep); }
.services__cta-hours {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   WHY / HOW HELP (neuro page)
   ============================================================ */
.why-warn {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.6;
}
.why-warn__ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.why-result-label {
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 20px 0 10px;
}

/* ============================================================
   VIDEOS (neuro page)
   ============================================================ */
.videos__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 760px) { .videos__grid { grid-template-columns: repeat(2, 1fr); } }

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  aspect-ratio: 9 / 16;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   TEAM SINGLE (neuro page — one specialist + text)
   ============================================================ */
.team__single {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 760px) { .team__single { grid-template-columns: 240px 1fr; } }

.member__about {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.member__about-label {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 2px;
}
.member__about-note {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: -8px;
}
