/* ===================================
   NEUROPSYCHOLOGY.CSS
   Стили страницы «Нейропсихолог»
   Тема: игра, развитие, мозаика функций мозга (mint-доминанта)
   =================================== */

/* ===================================
   ХЛЕБНЫЕ КРОШКИ
   =================================== */
.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.np-hero {
    position: relative;
    background: linear-gradient(180deg, #EAF9F0 0%, var(--color-bg-blue, #FAF6F4) 100%);
    padding: var(--space-12) 0 var(--space-10);
    overflow: hidden;
}

.np-hero .service-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 55% 45% at 18% 20%, rgba(82, 204, 154, .14) 0%, transparent 60%);
}

.np-hero .service-hero__bg::before {
    content: '';
    position: absolute;
    width: clamp(160px, 19vw, 280px);
    height: clamp(160px, 19vw, 280px);
    left: -6%;
    top: -10%;
    border-radius: 50%;
    border: 2px solid rgba(82, 204, 154, 0.22);
    background: radial-gradient(circle at 35% 30%, rgba(82, 204, 154, .08), transparent 70%);
}

.np-hero .service-hero__bg::after {
    content: '';
    position: absolute;
    width: clamp(90px, 11vw, 150px);
    height: clamp(90px, 11vw, 150px);
    right: 6%;
    bottom: -6%;
    border-radius: 24px;
    border: 3px dashed rgba(37, 169, 184, 0.22);
    background: transparent;
    transform: rotate(-12deg);
}

/* Уникальный декор: плавающие пазл-фрагменты (собираем функции мозга) */
.np-hero__puzzle {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.np-hero__puzzle span {
    position: absolute;
    display: block;
    border-radius: 10px;
    border: 2.5px solid;
    opacity: .28;
}

.np-hero__puzzle span:nth-child(1) {
    width: 54px; height: 54px;
    top: 14%; right: 22%;
    border-color: var(--color-tertiary);
    transform: rotate(8deg);
    animation: npPuzzleFloat 8s ease-in-out infinite;
}
.np-hero__puzzle span:nth-child(2) {
    width: 38px; height: 38px;
    top: 30%; right: 10%;
    border-color: var(--color-secondary);
    transform: rotate(-10deg);
    animation: npPuzzleFloat 10s ease-in-out infinite reverse;
}
.np-hero__puzzle span:nth-child(3) {
    width: 46px; height: 46px;
    bottom: 18%; left: 8%;
    border-color: var(--color-primary);
    transform: rotate(14deg);
    animation: npPuzzleFloatReverse 9s ease-in-out infinite;
}
.np-hero__puzzle span:nth-child(4) {
    width: 30px; height: 30px;
    bottom: 32%; left: 20%;
    border-color: var(--color-tertiary);
    transform: rotate(-6deg);
    animation: npPuzzleFloat 11s ease-in-out infinite;
}

@keyframes npPuzzleFloat {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50%      { transform: translateY(-14px) rotate(16deg); }
}

@keyframes npPuzzleFloatReverse {
    0%, 100% { transform: translateY(0) rotate(14deg); }
    50%      { transform: translateY(12px) rotate(6deg); }
}

.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-tertiary);
    color: var(--color-tertiary-dark);
    background: #E8F9F0;
}

.service-hero__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(82, 204, 154, .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-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;
}

/* ===================================
   ФОН СЕКЦИЙ
   =================================== */
.np-intro,
.np-problems,
.np-process,
.np-benefits,
.np-urgent-section,
.np-specialist,
.np-faq {
    padding: var(--space-12) 0 var(--space-16);
}

.np-intro {
    position: relative;
    background: linear-gradient(180deg, var(--color-bg-blue) 0%, var(--color-bg) 400px);
}

.np-problems {
    background: var(--color-bg);
}

.np-process {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-blue) 100%);
}

.np-benefits {
    background: var(--color-bg-blue);
}

.np-urgent-section {
    background: var(--color-bg);
}

.np-specialist {
    background: var(--color-bg-blue);
}

.np-faq {
    background: var(--color-bg);
    padding-bottom: var(--space-20);
}

/* ===================================
   ВВОДНАЯ СЕКЦИЯ
   =================================== */
.np-intro__content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.np-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, #E8F9F0 0%, #CDF0DF 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-tertiary);
    box-shadow: 0 4px 16px rgba(82, 204, 154, .14);
    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-tertiary-dark);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(82, 204, 154, .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);
}

.np-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);
}

/* ===================================
   ПРОБЛЕМЫ — 5 ГРУПП (карточки-мозаика)
   =================================== */
.np-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 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--wide {
    grid-column: span 1;
}

.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(82, 204, 154, .16);
    border-color: rgba(82, 204, 154, .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, #E8F9F0, #CDF0DF);
    color: var(--color-tertiary-dark);
    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-secondary);
}

/* ===================================
   ЭТАПЫ РАБОТЫ (np-steps)
   =================================== */
.np-steps {
    position: relative;
    max-width: 860px;
    margin: var(--space-10) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.np-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-tertiary), var(--color-secondary), var(--color-primary));
    border-radius: var(--radius-full);
    opacity: 0.32;
}

.np-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-6);
}

.np-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(82, 204, 154, .3), 0 0 0 6px var(--color-bg-blue);
    flex-shrink: 0;
}

.np-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;
}

.np-step:hover .np-step__content {
    box-shadow: 0 10px 30px rgba(82, 204, 154, .16);
    transform: translateX(4px);
}

.np-step__content h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    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;
}

.np-step__content h3 time {
    font-family: var(--font-body), sans-serif;
    font-size: var(--fz-xs);
    font-weight: var(--fw-medium);
    color: var(--color-tertiary-dark);
    background: #E8F9F0;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-style: normal;
}

.np-step__lead {
    margin: 0 0 var(--space-3) 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.np-step__content ul {
    margin: 0 0 var(--space-4) 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.np-step__content ul li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.np-step__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
}

.np-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;
}

.np-step__result svg {
    flex-shrink: 0;
    color: var(--color-tertiary-dark);
    margin-top: 1px;
}

.np-step__result span {
    font-size: var(--fz-sm);
    color: var(--color-tertiary-text);
    line-height: var(--lh-normal);
}

/* ===================================
   ЧТО ДАЮТ ЗАНЯТИЯ (np-benefits)
   =================================== */
.np-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.np-benefit-card {
    padding: var(--space-7);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}

.np-benefit-card:hover {
    transform: translateY(-6px);
}

.np-benefit-card--child {
    border-top: 4px solid var(--color-tertiary);
}
.np-benefit-card--child:hover {
    box-shadow: 0 16px 40px rgba(82, 204, 154, .18);
}

.np-benefit-card--parent {
    border-top: 4px solid var(--color-secondary);
}
.np-benefit-card--parent:hover {
    box-shadow: 0 16px 40px rgba(37, 169, 184, .18);
}

.np-benefit-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.np-benefit-card__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.np-benefit-card--child .np-benefit-card__icon {
    background: linear-gradient(135deg, #E8F9F0, #CDF0DF);
    color: var(--color-tertiary-dark);
}

.np-benefit-card--parent .np-benefit-card__icon {
    background: linear-gradient(135deg, #E5F5F7, #CBEBEF);
    color: var(--color-secondary);
}

.np-benefit-card__header h3 {
    font-family: var(--font-heading), sans-serif;
    font-size: var(--fz-lg);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin: 0;
}

.np-benefit-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.np-benefit-card li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.np-benefit-card--child li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-tertiary-dark);
    font-weight: var(--fw-bold);
}

.np-benefit-card--parent li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: var(--fw-bold);
}

.np-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(135deg, #FDEDE7, #FBD9CC);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin-inline: auto;
}

.np-note svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.np-note p {
    margin: 0;
    font-size: var(--fz-sm);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.np-note p strong {
    color: var(--color-text);
}

/* ===================================
   КОГДА ОБРАТИТЬСЯ (np-urgent-section)
   =================================== */
.np-urgent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.np-urgent-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: #FFF7ED;
    border: 1px solid rgba(245, 158, 11, .25);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.np-urgent-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, .15);
}

.np-urgent-item svg {
    color: var(--color-warning);
    flex-shrink: 0;
    margin-top: 1px;
}

.np-urgent-item span {
    font-size: var(--fz-sm);
    color: #78350F;
    line-height: var(--lh-normal);
}

.np-urgent-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--fz-base);
    color: var(--color-text-secondary);
    line-height: var(--lh-loose);
    font-style: italic;
}

/* ===================================
   СПЕЦИАЛИСТ
   =================================== */
.np-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-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 28px rgba(82, 204, 154, .12);
}

.np-specialist__photo-wrap {
    flex-shrink: 0;
}

.np-specialist__photo {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-bg-blue);
    box-shadow: 0 8px 24px rgba(82, 204, 154, .28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.np-specialist__photo:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(82, 204, 154, .38);
}

.np-specialist__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.np-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;
}

.np-specialist__lead {
    margin: 0 0 var(--space-4) 0;
    font-size: var(--fz-base);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.np-specialist__list {
    list-style: none;
    margin: 0 0 var(--space-5) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.np-specialist__list li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--fz-sm);
    color: var(--color-text);
    line-height: var(--lh-normal);
}

.np-specialist__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-tertiary-dark);
    font-weight: var(--fw-bold);
}

.np-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(82, 204, 154, .35);
    box-shadow: 0 4px 20px rgba(82, 204, 154, .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-tertiary-dark); }

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-tertiary-dark);
}

.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 {
    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(82, 204, 154, .16) 0%, rgba(37, 169, 184, .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) {
    .np-problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-group--wide {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .service-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .np-intro__content {
        grid-template-columns: 1fr;
    }

    .np-benefits__grid {
        grid-template-columns: 1fr;
    }

    .np-urgent-grid {
        grid-template-columns: 1fr;
    }

    .np-specialist__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .np-specialist__photo-wrap {
        margin: 0 auto;
    }

    .np-specialist__list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .np-problems__grid {
        grid-template-columns: 1fr;
    }
    .problem-group--wide {
        grid-column: span 1;
    }

    .principle-box {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .np-steps::before {
        left: 23px;
    }

    .np-step {
        grid-template-columns: 48px 1fr;
        gap: var(--space-4);
    }

    .np-step__marker {
        width: 48px;
        height: 48px;
        font-size: var(--fz-lg);
    }
}

@media (max-width: 480px) {
    .np-step {
        grid-template-columns: 1fr;
    }
    .np-step__marker {
        margin: 0 auto;
    }
    .np-steps::before {
        display: none;
    }
}