/* ===================================
   SENSORY.CSS
   Стили для страницы «Сенсорная интеграция»
   =================================== */

/* ===================================
   HERO СЕКЦИЯ
   =================================== */
.service-hero.sensory-hero {
    position: relative;
    background: var(--color-bg-blue, #f0f8ff);
    padding: var(--space-12) 0 var(--space-10);
    overflow: hidden;
}

.service-hero.sensory-hero .service-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   ХЛЕБНЫЕ КРОШКИ
   =================================== */
.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 > .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-body), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    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);
    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-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}

.service-hero__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(48, 166, 218, .2);
    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); }
}


/* ===================================
   УНИКАЛЬНЫЙ ЭЛЕМЕНТ: ПУЗЫРЬКИ СУХОГО БАССЕЙНА
   =================================== */
.sensory-hero__bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.sensory-hero__bubbles span {
    position: absolute;
    bottom: -40px;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(48,166,218,.35));
    opacity: 0.5;
    animation: sensoryBubbleRise 10s ease-in infinite;
}

.sensory-hero__bubbles span:nth-child(1)  { left: 4%;  width: 22px; height: 22px; animation-delay: 0s; }
.sensory-hero__bubbles span:nth-child(2)  { left: 12%; width: 14px; height: 14px; animation-delay: 1.2s; }
.sensory-hero__bubbles span:nth-child(3)  { left: 20%; width: 30px; height: 30px; animation-delay: 2.4s; }
.sensory-hero__bubbles span:nth-child(4)  { left: 28%; width: 18px; height: 18px; animation-delay: 0.6s; }
.sensory-hero__bubbles span:nth-child(5)  { left: 36%; width: 26px; height: 26px; animation-delay: 3.1s; }
.sensory-hero__bubbles span:nth-child(6)  { left: 45%; width: 16px; height: 16px; animation-delay: 1.8s; }
.sensory-hero__bubbles span:nth-child(7)  { left: 54%; width: 24px; height: 24px; animation-delay: 4s; }
.sensory-hero__bubbles span:nth-child(8)  { left: 62%; width: 20px; height: 20px; animation-delay: 0.9s; }
.sensory-hero__bubbles span:nth-child(9)  { left: 70%; width: 28px; height: 28px; animation-delay: 2.7s; }
.sensory-hero__bubbles span:nth-child(10) { left: 78%; width: 15px; height: 15px; animation-delay: 1.5s; }
.sensory-hero__bubbles span:nth-child(11) { left: 85%; width: 22px; height: 22px; animation-delay: 3.6s; }
.sensory-hero__bubbles span:nth-child(12) { left: 92%; width: 18px; height: 18px; animation-delay: 0.3s; }
.sensory-hero__bubbles span:nth-child(13) { left: 58%; width: 12px; height: 12px; animation-delay: 4.5s; }
.sensory-hero__bubbles span:nth-child(14) { left: 8%;  width: 16px; height: 16px; animation-delay: 3.9s; }
.sensory-hero__bubbles span:nth-child(15) { left: 66%; width: 20px; height: 20px; animation-delay: 2.1s; }

@keyframes sensoryBubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.55;
    }
    50% {
        transform: translateY(-160px) translateX(10px) scale(1.05);
    }
    90% {
        opacity: 0.35;
    }
    100% {
        transform: translateY(-320px) translateX(-6px) scale(0.9);
        opacity: 0;
    }
}

/* ===================================
   ОБЩИЕ СТИЛИ СЕКЦИЙ
   =================================== */
.sensory-about,
.service-indications,
.service-results,
.service-faq {
    padding: var(--space-12) 0 var(--space-20);
}

.sensory-about {
    background: linear-gradient(180deg, var(--color-bg-blue) 0%, var(--color-bg) 400px);
}

.service-indications {
    background: var(--color-bg);
}

.service-results {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-blue) 100%);
}

.service-faq {
    background: var(--color-bg);
}

.lead-text {
    font-size: var(--fz-lg);
    line-height: var(--lh-loose);
    color: var(--color-text);
    margin: 0;
}

.sensory-about .section-subtitle {
    max-width: 680px;
    margin: 0 auto var(--space-8);
}

/* ===================================
   СЕНСОРНАЯ ИНТЕГРАЦИЯ: СУТЬ МЕТОДА
   =================================== */
.sensory-about__content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-10);
    align-items: start;
    margin-bottom: var(--space-14);
}

.sensory-about__main {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sensory-about__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Принцип работы (аналогично bak, переиспользуем ту же визуальную концепцию) */
.principle-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-5);
    padding: var(--space-6);
    background: linear-gradient(135deg, #E8F4FD 0%, #D6EEFF 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 4px 16px rgba(48, 166, 218, .1);
    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-primary);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(48, 166, 218, .2);
}

.principle-box__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.principle-box__content h3 {
    font-family: var(--font-heading);
    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);
}

/* Карточки преимуществ */
.sensory-about__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, #E8F4FD, #D6EEFF);
    border-color: rgba(48, 166, 218, .2);
}
.feature-card--primary:hover {
    box-shadow: 0 8px 24px rgba(48, 166, 218, .2);
}

.feature-card--secondary {
    background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
    border-color: rgba(139, 92, 246, .2);
}
.feature-card--secondary:hover {
    box-shadow: 0 8px 24px rgba(139, 92, 246, .2);
}

.feature-card--accent {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border-color: rgba(16, 185, 129, .2);
}
.feature-card--accent:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, .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-primary); }
.feature-card--secondary .feature-card__icon { color: #8B5CF6; }
.feature-card--accent .feature-card__icon { color: var(--color-success); }

.feature-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-card__content h4 {
    font-family: var(--font-heading);
    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);
}

/* ===================================
   УНИКАЛЬНЫЙ ЭЛЕМЕНТ: ОБОРУДОВАНИЕ СЕНСОРНОЙ КОМНАТЫ
   =================================== */
.sensory-equipment {
    margin-bottom: var(--space-16);
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(135deg, #F8FBFD 0%, #E8F4FD 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(48, 166, 218, .15);
}

.sensory-equipment__title {
    font-family: var(--font-heading);
    font-size: var(--fz-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    text-align: center;
    margin: 0 0 var(--space-2) 0;
}

.sensory-equipment__subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: var(--fz-base);
    margin: 0 0 var(--space-8) 0;
}

.sensory-equipment__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.equipment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(48, 166, 218, .15);
    box-shadow: 0 4px 14px rgba(48, 166, 218, .1);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(48, 166, 218, .22);
}

.equipment-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(48, 166, 218, .3);
}

.equipment-card h4 {
    font-family: var(--font-heading);
    font-size: var(--fz-base);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.equipment-card p {
    margin: 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

/* ===================================
   ПРИМЕЧАНИЕ (ПОЗИТИВНОЕ)
   =================================== */
.sensory-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-inline: auto;
}

.sensory-note--positive {
    background: #ECFDF5;
    border: 1px solid rgba(16, 185, 129, .25);
}

.sensory-note--positive svg {
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.sensory-note p {
    margin: 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.sensory-note p strong {
    color: var(--color-text);
}

/* ===================================
   ПОКАЗАНИЯ
   =================================== */
.indications-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-10);
    align-items: start;
    margin-bottom: var(--space-12);
}

.indications-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.indication-item {
    position: relative;
    padding: var(--space-4);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3);
    align-items: start;
    align-content: start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.02);
    overflow: hidden;
    isolation: isolate;
}

.indication-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(48, 166, 218, 0.3), rgba(5, 171, 242, 0.3), rgba(48, 166, 218, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.indication-item:hover::after {
    opacity: 1;
}

.indication-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.indication-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(48, 166, 218, .15), 0 4px 12px rgba(48, 166, 218, .1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fc 100%);
}

.indication-item:hover::before {
    transform: scaleY(1);
}

.indication-item__number {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--fz-lg);
    font-weight: var(--fw-black);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(48, 166, 218, .3), 0 2px 6px rgba(48, 166, 218, .2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.indication-item__number::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 50%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indication-item:hover .indication-item__number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(48, 166, 218, .45), 0 3px 10px rgba(48, 166, 218, .25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.indication-item:hover .indication-item__number::before {
    opacity: 1;
}

.indication-item__content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-1);
}

.indication-item__title {
    font-family: var(--font-heading);
    font-size: var(--fz-base);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.indication-item:hover .indication-item__title {
    color: var(--color-primary);
}

.indication-item__text {
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Визуальная панель вместо фото */
.indications-visual {
    position: sticky;
    top: var(--space-10);
}

.sensory-visual-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-10) var(--space-6);
    background: linear-gradient(160deg, #E8F4FD 0%, #D6EEFF 60%, #F3E8FF 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(48, 166, 218, .2);
    box-shadow: 0 12px 40px rgba(48, 166, 218, .15);
    text-align: center;
    overflow: hidden;
}

.sensory-visual-panel__icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(48, 166, 218, .25);
}

/* Разноцветные «шарики сухого бассейна» внутри панели */
.sensory-visual-panel__dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.sensory-visual-panel__dots span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
    animation: sensoryDotFloat 6s ease-in-out infinite;
}

.sensory-visual-panel__dots span:nth-child(1)  { top: 10%; left: 8%;  width: 18px; height: 18px; background: #30A6DA; animation-delay: 0s; }
.sensory-visual-panel__dots span:nth-child(2)  { top: 20%; left: 80%; width: 14px; height: 14px; background: #8B5CF6; animation-delay: 0.5s; }
.sensory-visual-panel__dots span:nth-child(3)  { top: 65%; left: 12%; width: 22px; height: 22px; background: #10B981; animation-delay: 1s; }
.sensory-visual-panel__dots span:nth-child(4)  { top: 75%; left: 85%; width: 16px; height: 16px; background: #F97316; animation-delay: 1.5s; }
.sensory-visual-panel__dots span:nth-child(5)  { top: 5%;  left: 45%; width: 12px; height: 12px; background: #05ABF2; animation-delay: 2s; }
.sensory-visual-panel__dots span:nth-child(6)  { top: 50%; left: 90%; width: 20px; height: 20px; background: #A7F3D0; animation-delay: 2.5s; }
.sensory-visual-panel__dots span:nth-child(7)  { top: 85%; left: 50%; width: 15px; height: 15px; background: #E9D5FF; animation-delay: 3s; }
.sensory-visual-panel__dots span:nth-child(8)  { top: 35%; left: 5%;  width: 17px; height: 17px; background: #30A6DA; animation-delay: 3.5s; }
.sensory-visual-panel__dots span:nth-child(9)  { top: 15%; left: 65%; width: 13px; height: 13px; background: #8B5CF6; animation-delay: 4s; }
.sensory-visual-panel__dots span:nth-child(10) { top: 60%; left: 35%; width: 19px; height: 19px; background: #10B981; animation-delay: 4.5s; }
.sensory-visual-panel__dots span:nth-child(11) { top: 90%; left: 20%; width: 14px; height: 14px; background: #F97316; animation-delay: 1.2s; }
.sensory-visual-panel__dots span:nth-child(12) { top: 45%; left: 60%; width: 21px; height: 21px; background: #05ABF2; animation-delay: 2.2s; }
.sensory-visual-panel__dots span:nth-child(13) { top: 25%; left: 25%; width: 16px; height: 16px; background: #A7F3D0; animation-delay: 3.2s; }
.sensory-visual-panel__dots span:nth-child(14) { top: 70%; left: 65%; width: 18px; height: 18px; background: #E9D5FF; animation-delay: 0.8s; }
.sensory-visual-panel__dots span:nth-child(15) { top: 5%;  left: 90%; width: 15px; height: 15px; background: #30A6DA; animation-delay: 1.8s; }

@keyframes sensoryDotFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-14px) scale(1.15); }
}

.sensory-visual-panel__caption {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--font-heading);
    font-size: var(--fz-base);
    font-weight: var(--fw-medium);
    color: var(--color-text);
    max-width: 240px;
    line-height: 1.4;
}

/* Противопоказания — позитивный блок (заменяет предупреждение) */
.indications-contraindications {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-lg);
}

.indications-contraindications--positive {
    background: #ECFDF5;
    border: 1px solid rgba(16, 185, 129, .25);
    text-align: center;
}

.contraindications-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--fz-lg);
    font-weight: var(--fw-bold);
    margin: 0 0 var(--space-4) 0;
}

.contraindications-title--positive {
    color: var(--color-success);
}

.contraindications-title svg {
    flex-shrink: 0;
}

.contraindications-note--positive {
    margin: 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
    max-width: 640px;
    margin-inline: auto;
}

/* ===================================
   РЕЗУЛЬТАТЫ
   =================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.result-item {
    position: relative;
    padding: var(--space-4) var(--space-5);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    overflow: hidden;
    isolation: isolate;
    min-height: 120px;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M66.6667 20L30 56.6667L13.3333 40' stroke='%2310B981' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-item:hover::before {
    opacity: 0.15;
    transform: translateY(-50%) scale(1.1) rotate(5deg);
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, .15);
    border-color: rgba(16, 185, 129, .3);
}

.result-item__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: var(--fz-base);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.result-item:hover .result-item__title {
    color: var(--color-success);
}

.result-item__text {
    position: relative;
    z-index: 1;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
    margin: 0;
}

.results-note {
    margin-top: var(--space-8);
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border-left: 4px solid var(--color-success);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, .15);
}

.results-note svg {
    flex-shrink: 0;
    color: var(--color-success);
    margin-top: 2px;
}

.results-note p {
    margin: 0;
    color: #065f46;
    line-height: var(--lh-normal);
    font-size: var(--fz-sm);
}

/* ===================================
   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(48, 166, 218, .3);
    box-shadow: 0 4px 20px rgba(48, 166, 218, .1);
}

.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);
    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-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-primary);
}

.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(48, 166, 218, .14) 0%, rgba(5, 171, 242, .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-body);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    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: 992px) {
    .service-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .sensory-about__content {
        grid-template-columns: 1fr;
    }

    .sensory-equipment__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .indications-layout {
        grid-template-columns: 1fr;
    }

    .indications-visual {
        position: static;
        order: -1;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@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;
    }

    .sensory-equipment__grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .principle-box {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .indication-item {
        grid-template-columns: auto 1fr;
    }
}

@media (max-width: 480px) {
    .sensory-hero__bubbles span {
        transform: scale(0.8);
    }

    .faq-question {
        padding: var(--space-4) var(--space-5);
        font-size: var(--fz-sm);
    }

    .faq-answer {
        padding: 0 var(--space-5) var(--space-4);
    }
}

