/* ===================================
   NEUROLOGY.CSS
   Стили страницы «Детская неврология»
   Тема: точность диагностики, нейронные связи, доверие (teal-доминанта)
   =================================== */

/* ===================================
   ХЛЕБНЫЕ КРОШКИ
   =================================== */
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
}

.page-hero__breadcrumb a {
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.page-hero__breadcrumb a:hover {
    color: var(--color-primary-dark);
}

.page-hero__breadcrumb svg {
    color: var(--color-text-light);
    flex-shrink: 0;
}

/* ===================================
   HERO
   =================================== */
.service-hero.neuro-hero {
    position: relative;
    background: linear-gradient(180deg, #EAF6F7 0%, var(--color-bg-blue, #FAF6F4) 100%);
    padding: var(--space-12) 0 var(--space-10);
    overflow: hidden;
}

.neuro-hero .service-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 55% 45% at 85% 20%, rgba(37, 169, 184, .12) 0%, transparent 60%);
}

.neuro-hero .service-hero__bg::before {
    content: '';
    position: absolute;
    width: clamp(160px, 19vw, 280px);
    height: clamp(160px, 19vw, 280px);
    right: -6%;
    top: -10%;
    border-radius: 50%;
    border: 2px solid rgba(37, 169, 184, 0.2);
    background: radial-gradient(circle at 35% 30%, rgba(37, 169, 184, .07), transparent 70%);
}

.neuro-hero .service-hero__bg::after {
    content: '';
    position: absolute;
    width: clamp(90px, 11vw, 150px);
    height: clamp(90px, 11vw, 150px);
    left: 5%;
    bottom: -6%;
    border-radius: 26px;
    border: 3px dashed rgba(82, 204, 154, 0.22);
    background: transparent;
    transform: rotate(10deg);
}

/* Уникальный элемент: анимированная нейронная сеть */
.neuro-hero__network {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    color: var(--color-secondary);
    opacity: 0.22;
}

.neuro-hero__network svg {
    width: 100%;
    height: 100%;
}

.neuro-hero__links path {
    stroke-dasharray: 6 5;
    animation: neuroLinkFlow 12s linear infinite;
}

.neuro-hero__links path:nth-child(2n) {
    animation-duration: 16s;
    animation-direction: reverse;
}

@keyframes neuroLinkFlow {
    to { stroke-dashoffset: -220; }
}

.neuro-hero__nodes circle {
    animation: neuroNodePulse 3.6s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.neuro-hero__nodes circle:nth-child(odd) { animation-delay: 0.4s; }
.neuro-hero__nodes circle:nth-child(3n) { animation-delay: 1.1s; }

@keyframes neuroNodePulse {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50%      { transform: scale(1.35); opacity: 1; }
}

.service-hero > .container {
    position: relative;
    z-index: 2;
}

.service-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
    padding-top: var(--space-3);
}

.service-hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.service-hero__title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.1;
    margin: 0 0 var(--space-4) 0;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.service-hero__subtitle {
    font-size: var(--fz-md);
    color: var(--color-text-secondary);
    line-height: var(--lh-loose);
    margin: 0 0 var(--space-4) 0;
    max-width: 620px;
    opacity: 0;
    animation: heroTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.service-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    opacity: 0;
    animation: heroTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.service-tag {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-secondary);
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-xs);
    font-weight: var(--fw-medium);
    white-space: nowrap;
    transition: all var(--transition-base);
}

.service-tag:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(37, 169, 184, .08);
}

.service-hero__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 169, 184, .18);
    opacity: 0;
    animation: heroImageReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    border: 1px solid var(--color-border);
}

.service-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes heroTextReveal {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageReveal {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===================================
   ОБЩИЕ ЗАГОЛОВКИ
   =================================== */
.section-title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: var(--fw-black);
    color: var(--color-text);
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: var(--space-4);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--gradient-accent-line);
    border-radius: var(--radius-full);
}

.section-title--left {
    text-align: left;
    padding-bottom: var(--space-4);
}

.section-title--left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: var(--fz-md);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.lead-text {
    font-size: var(--fz-lg);
    line-height: var(--lh-loose);
    color: var(--color-text);
    margin: 0;
}

/* ===================================
   ОБЩИЙ ФОН СЕКЦИЙ
   =================================== */
.neuro-intro,
.neuro-problems,
.neuro-process,
.neuro-why,
.neuro-specialist,
.neuro-faq {
    padding: var(--space-12) 0 var(--space-16);
}

.neuro-intro {
    position: relative;
    background: linear-gradient(180deg, var(--color-bg-blue) 0%, var(--color-bg) 400px);
}

.neuro-problems {
    background: var(--color-bg);
}

.neuro-process {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-blue) 100%);
}

.neuro-why {
    background: var(--color-bg-blue);
}

.neuro-specialist {
    background: var(--color-bg);
}

.neuro-faq {
    background: var(--color-bg);
    padding-bottom: var(--space-20);
}

/* ===================================
   ВВОДНАЯ СЕКЦИЯ
   =================================== */
.neuro-intro__content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.neuro-intro__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.principle-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-5);
    padding: var(--space-6);
    background: linear-gradient(135deg, #E5F5F7 0%, #CBEBEF 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 4px 16px rgba(37, 169, 184, .12);
    align-items: start;
}

.principle-box__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    color: var(--color-secondary);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 169, 184, .2);
}

.principle-box__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.principle-box__content h3 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.principle-box__content p {
    margin: 0;
    line-height: var(--lh-loose);
    color: var(--color-text-secondary);
    font-size: var(--fz-base);
}

.neuro-intro__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.feature-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-4);
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateX(6px);
}

.feature-card--primary {
    background: linear-gradient(135deg, #E5F5F7, #CBEBEF);
    border-color: rgba(37, 169, 184, .22);
}
.feature-card--primary:hover {
    box-shadow: 0 8px 24px rgba(37, 169, 184, .2);
}

.feature-card--secondary {
    background: linear-gradient(135deg, #FDEDE7, #FBD9CC);
    border-color: rgba(238, 122, 93, .22);
}
.feature-card--secondary:hover {
    box-shadow: 0 8px 24px rgba(238, 122, 93, .2);
}

.feature-card--accent {
    background: linear-gradient(135deg, #E8F9F0, #CDF0DF);
    border-color: rgba(82, 204, 154, .22);
}
.feature-card--accent:hover {
    box-shadow: 0 8px 24px rgba(82, 204, 154, .2);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.feature-card--primary .feature-card__icon { color: var(--color-secondary); }
.feature-card--secondary .feature-card__icon { color: var(--color-primary); }
.feature-card--accent .feature-card__icon { color: var(--color-tertiary-dark); }

.feature-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-card__content h4 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-lg);
    font-weight: var(--fw-bold);
    margin: 0;
    color: var(--color-text);
    line-height: 1.3;
}

.feature-card__content p {
    margin: 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

/* ===================================
   ПРОБЛЕМЫ — 4 ГРУППЫ (карточки-досье)
   =================================== */
.neuro-problems__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.problem-group {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.problem-group::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-accent-line);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.problem-group:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37, 169, 184, .16);
    border-color: rgba(37, 169, 184, .3);
}

.problem-group:hover::before {
    transform: scaleX(1);
}

.problem-group__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.problem-group__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #E5F5F7, #CBEBEF);
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.problem-group:hover .problem-group__icon {
    transform: scale(1.08) rotate(-4deg);
}

.problem-group__header h3 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-base);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.problem-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.problem-group__list li {
    position: relative;
    padding-left: var(--space-5);
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.problem-group__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-tertiary);
}

/* ===================================
   ЭТАПЫ ПРИЁМА (neuro-steps)
   =================================== */
.neuro-steps {
    position: relative;
    max-width: 860px;
    margin: var(--space-10) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.neuro-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-secondary), var(--color-tertiary), var(--color-primary));
    border-radius: var(--radius-full);
    opacity: 0.32;
}

.neuro-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-6);
}

.neuro-step__marker {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent-line);
    color: var(--color-white);
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-xl);
    font-weight: var(--fw-black);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 169, 184, .3), 0 0 0 6px var(--color-bg-blue);
    flex-shrink: 0;
}

.neuro-step__content {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.neuro-step:hover .neuro-step__content {
    box-shadow: 0 10px 30px rgba(37, 169, 184, .14);
    transform: translateX(4px);
}

.neuro-step__content h3 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-lg);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0 0 var(--space-3) 0;
}

.neuro-step__content p {
    margin: 0 0 var(--space-4) 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-loose);
}

.neuro-step__result {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: #E8F9F0;
    border-radius: var(--radius-md);
    margin: 0;
}

.neuro-step__result svg {
    flex-shrink: 0;
    color: var(--color-tertiary-dark);
    margin-top: 1px;
}

.neuro-step__result span {
    font-size: var(--fz-sm);
    color: var(--color-tertiary-text);
    line-height: var(--lh-normal);
}

/* ===================================
   ПОЧЕМУ ВЫБИРАЮТ + КОГДА СРОЧНО (neuro-why)
   =================================== */
.neuro-why__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.neuro-why__list {
    list-style: none;
    margin: var(--space-6) 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.neuro-why__list li {
    position: relative;
    padding: var(--space-4) var(--space-5) var(--space-4) 44px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: all 0.3s ease;
}

.neuro-why__list li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    background: var(--color-tertiary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}

.neuro-why__list li:hover {
    border-color: rgba(37, 169, 184, .3);
    box-shadow: 0 6px 18px rgba(37, 169, 184, .12);
    transform: translateX(4px);
}

.neuro-why__list strong {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-base);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    line-height: 1.35;
}

.neuro-why__list span {
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

/* Блок "когда срочно" — предупреждающий амбер */
.neuro-urgent {
    background: #FFF7ED;
    border: 1px solid rgba(245, 158, 11, .3);
    border-radius: var(--radius-lg);
    padding: var(--space-7);
    position: sticky;
    top: var(--space-8);
}

.neuro-urgent__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.neuro-urgent__header svg {
    color: var(--color-warning);
    flex-shrink: 0;
}

.neuro-urgent__header h3 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-lg);
    font-weight: var(--fw-bold);
    color: #92400E;
    margin: 0;
}

.neuro-urgent__list {
    list-style: none;
    margin: 0 0 var(--space-5) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.neuro-urgent__list li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--fz-sm);
    color: #78350F;
    line-height: var(--lh-normal);
}

.neuro-urgent__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-warning);
}

.neuro-urgent__note {
    margin: 0;
    font-size: var(--fz-sm);
    color: #92400E;
    line-height: var(--lh-normal);
    font-style: italic;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(245, 158, 11, .2);
}

/* ===================================
   СПЕЦИАЛИСТ
   =================================== */
.neuro-specialist__card {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-8);
    background: var(--color-bg-blue);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 28px rgba(37, 169, 184, .1);
}

.neuro-specialist__photo-wrap {
    flex-shrink: 0;
}

.neuro-specialist__photo {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 24px rgba(37, 169, 184, .25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neuro-specialist__photo:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 169, 184, .35);
}

.neuro-specialist__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.neuro-specialist__content h2 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0 0 var(--space-3) 0;
}

.neuro-specialist__lead {
    margin: 0 0 var(--space-4) 0;
    font-size: var(--fz-base);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.neuro-specialist__list {
    list-style: none;
    margin: 0 0 var(--space-5) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.neuro-specialist__list li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--fz-sm);
    color: var(--color-text);
    line-height: var(--lh-normal);
}

.neuro-specialist__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-tertiary-dark);
    font-weight: var(--fw-bold);
}

.neuro-specialist__btn {
    display: inline-flex;
}

/* ===================================
   FAQ (общий стиль аккордеона)
   =================================== */
.faq-accordion {
    max-width: 900px;
    margin: var(--space-10) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.faq-item[open] {
    border-color: rgba(37, 169, 184, .35);
    box-shadow: 0 4px 20px rgba(37, 169, 184, .12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    user-select: none;
    list-style: none;
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-base);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    transition: color var(--transition-base);
    gap: var(--space-4);
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--color-secondary); }

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-secondary);
}

.faq-item[open] .faq-icon { transform: rotate(180deg); }

.faq-answer {
    padding: 0 var(--space-6) var(--space-5);
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-loose);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================================
   CTA (наследует .doctors-cta)
   =================================== */
.doctors-cta {
    position: relative;
    background: var(--color-bg-blue);
    padding: var(--space-16) 0;
    overflow: hidden;
}

.doctors-cta__bg-blob {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(37, 169, 184, .14) 0%, rgba(82, 204, 154, .06) 50%, transparent 70%);
    filter: blur(60px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50%      { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.doctors-cta > .container {
    position: relative;
    z-index: 1;
}

.doctors-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.doctors-cta__text {
    flex: 1;
    min-width: 280px;
}

.doctors-cta__title {
    font-family: var(--font-heading), sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.doctors-cta__subtitle {
    font-size: var(--fz-md);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
    max-width: 520px;
}

.doctors-cta__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .doctors-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    .doctors-cta__subtitle { margin-inline: auto; }
    .doctors-cta__actions { justify-content: center; }
}

@media (max-width: 768px) {
    .doctors-cta { padding: var(--space-10) 0; }
    .doctors-cta__actions {
        flex-direction: column;
        width: 100%;
    }
    .doctors-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   АДАПТИВНОСТЬ
   =================================== */
@media (max-width: 1100px) {
    .neuro-problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .neuro-intro__content {
        grid-template-columns: 1fr;
    }

    .neuro-why__grid {
        grid-template-columns: 1fr;
    }

    .neuro-urgent {
        position: static;
    }

    .neuro-specialist__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .neuro-specialist__photo-wrap {
        margin: 0 auto;
    }

    .neuro-specialist__list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .neuro-problems__grid {
        grid-template-columns: 1fr;
    }

    .principle-box {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .neuro-steps::before {
        left: 23px;
    }

    .neuro-step {
        grid-template-columns: 48px 1fr;
        gap: var(--space-4);
    }

    .neuro-step__marker {
        width: 48px;
        height: 48px;
        font-size: var(--fz-lg);
    }
}

@media (max-width: 480px) {
    .neuro-step {
        grid-template-columns: 1fr;
    }
    .neuro-step__marker {
        margin: 0 auto;
    }
    .neuro-steps::before {
        display: none;
    }
}