
/* ===== БАЗОВЫЕ СТИЛИ ===== */

/* Цветовые акценты */
.accent-primary {
    color: #874dbf; 
    font-style: italic;
}

.accent-secondary {
    color: #8fd400; 
    font-style: italic;
}

.text-bold {
    font-weight: bold;
}

/* Универсальные заголовки блоков */
.section-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    color: #202020;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-subtitle {
    margin: 0;
    font-size: 1.5rem;
    color: #202020;
    margin-bottom: 60px;
    text-align: left;
}

/* Универсальные отступы секций */
.section-padding {
    padding: 80px 0;
}

.section-bg-white {
    background: #fff;
}

.section-bg-gray {
    background: #f8f9fa;
}

/* Универсальная кнопка */
.btn-primary-lp {
    background: #874dbf;
    border-radius: 10px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-lp:after {
	content: '';
    background: url(/images/icons/arrow-up.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 8px;
}

.btn-primary-lp:hover {
    background: #6D3E9B;
	color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #874dbf;
    border-radius: 10px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}




/* ===== КОМПОНЕНТ: ГЕРОЙ БЛОК ===== */

.hero .section-title-main {
    position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.hero .section-title-main::after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 2px;
    background: #874dbf;
    border-radius: 1px;
    opacity: 0.2;
}

.section-title-hero{
	margin-bottom: 20px;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.subtitle-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    padding: 25px;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card--horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.feature-card--vertical {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    height: 100%;
    justify-content: center;
}

.feature-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card--horizontal .feature-card__icon {
    width: 40px;
    height: 40px;
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card__text {
    font-size: 1rem;
    line-height: 1.5;
    color: #202020;
    font-weight: 500;
}

.feature-card--vertical .feature-card__text {
    font-size: 1.0rem;
}

.content-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.on-mobile{
	display:none;
}

@media (max-width: 480px) {
	
	.on-mobile{
		display:block;
	}
    .content-image {
        order: 1;
    }
.status-statement__content{
        order: 2;
    }
}

/* ===== КОМПОНЕНТ: КАРТОЧКИ ===== */
.cards-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card__icon {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 7fr; 
	align-items: anchor-center;
}

.card__title {
	margin: 0;
	font-size: 1rem;
    color: #874dbf;
    font-weight: 600;
    line-height: 1.3;
}

.card__content {
	margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #202020;
    opacity: 0.9;
    flex-grow: 1;
}

.card--button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.card--button:hover {
    transform: none;
    box-shadow: none;
}

.fears .w-icon img {
    width: 40px!important;
    height: 40px!important;
}

@media (max-width: 480px) {
	.card__content {
		font-size: 0.9rem;
	}
	.card__icon {
		margin-bottom: 10px;
	}	
}



/* ===== КОМПОНЕНТ: СЕТКА ИЗОБРАЖЕНИЙ ===== */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-item__image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.grid-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.grid-item__image:hover img {
    transform: scale(1.05);
}

.grid-item__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #202020;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.grid-item__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 2px;
    background: #8fd400;
    border-radius: 1px;
}

.grid-item__description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #202020;
    opacity: 0.9;
}

@media (max-width: 480px) {
	.grid-item {
		gap: 10px;
	}
	.grid-item__title {
		font-size: 1.2rem;
	}	
	.grid-item__description {
		font-size: 0.9rem;
	}	
}



/* ===== КОМПОНЕНТ: СЛАЙДЕР ===== */
.slider-container {
    padding: 20px 10px 60px;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    align-items: stretch;
}

.slider-slide {
    height: auto;
    display: flex;
}

/* Карточка сотрудника */
.staff-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 600px;
    max-height: 700px;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-card__header {
    display: flex;
    gap: 20px;
    padding: 25px 25px 0;
    margin-bottom: 20px;
}

.staff-card__photo {
    flex: 0 0 30%;
    border-radius: 8px;
    overflow: hidden;
}

.staff-card__photo img {
    height: 200px;
    border-radius: 30px;
    object-fit: cover;
    display: block;
    width: 100%;
}

.staff-card__info {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staff-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 8px;
    line-height: 1.3;
}

.staff-card__position {
    font-size: 0.9rem;
    color: #874dbf;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.staff-card__stat {
    font-size: 1rem;
    font-weight: 700;
    color: #8fd400;
    padding-bottom: 8px;
    border-bottom: 2px solid #8fd400;
}

.staff-card__content {
    padding: 0 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}
.swiper-slide ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

.staff-card__features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.staff-card__features li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #202020;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.staff-card__features li::before {
    content: '•';
    color: #874dbf;
    position: absolute;
    left: 0;
}

.staff-card__quote {
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #202020;
    opacity: 0.9;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #8fd400;
    flex-shrink: 0;
}



@media (max-width: 468px) {
	
    .staff-card__features {
        display: none;
    }
	.staff-card__quote {
        margin-inline-start: 20px;
        margin-inline-end: 20px;
		font-size: .8rem;
    }
	.staff-card__position{
		font-size: .8rem;
	}	
	.staff-card__photo img {
		height: 120px; 
		width: 80px;
		object-fit: contain;
	}	
	
    .swiper-button-prev	{
		margin-left: -10px!important;;
	}
	
    .swiper-button-next{
		margin-right: -10px!important;;
	}	
}

/* CTA карточка */
.cta-card {
    background: #874dbf;
    color: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(135, 77, 191, 0.3);
    flex-grow: 1;
    min-height: 600px;
    max-height: 700px;
	overflow: hidden;
}

.cta-card__icon {
    margin-bottom: 0px;
}

.cta-card__icon img {
    max-width: 60%;
    border-radius: 20px;
}

.cta-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
    line-height: 1.3;
}

.cta-card__text {
    font-size: 1.0rem;
    margin-bottom: 10px;
    opacity: 1.0;
}

.cta-card__list {
    text-align: left;
    margin-bottom: 20px!important;
}

.cta-card__list li {
	font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.cta-card__list li::before {
    content: '✓';
    color: #fff;
    position: absolute;
    left: 0;
    font-weight: bold;
}


.doctorsSwiper {
    padding: 20px 10px 60px;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    align-items: stretch; /* Растягивает слайды по высоте */
	max-height: 750px;
}

.swiper-slide {
    height: auto; /* Автоматическая высота */
    display: flex; /* Flex для растягивания */
}


@media (max-width: 468px) {
	.cta-card__title {
		font-size: 1.0rem;
	}
}

/* Навигация слайдера */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: #874dbf;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(135, 77, 191, 0.3);
    top: 45%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #7a45a8;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.25rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #874dbf;
}



/* ===== КОМПОНЕНТ: ТАБЫ ===== */
.tabs-container {
    margin-bottom: 40px;
}

.tab-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #202020;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: #874dbf;
}

.tab-btn.active {
    color: #874dbf;  
    border-bottom-color: #874dbf;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card__description {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #202020;
    opacity: 0.9;
    margin-bottom: 25px;
}

.service-card__features {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #202020;
    opacity: 0.9;
    margin-bottom: 25px;
}

.service-card__features li {
    padding: 10px 0;
}

@media (max-width: 468px) {
	
	.tabs-nav {
		margin-bottom: 20px;
	}

	
	.service-card__title {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}
	.service-card__features {
		font-size: 0.9rem;
		margin-bottom: 15px;
	}	
	.service-card__description {
		font-size: 0.9rem;
		margin-bottom: 15px;
	}	
}





/* ===== КОМПОНЕНТ: ВИДЕО ===== */
.video-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-main-lp {
    width: 100%;
}

.video-player-lp {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-player-lp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	max-width: 100%;
    height: 100%;
    border: none;
}

.video-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-thumbnail-lp {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail-lp:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.video-thumbnail__preview {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.video-thumbnail__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumbnail__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #874dbf;
}

.video-thumbnail__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-thumbnail__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #202020;
    margin-bottom: 5px;
    line-height: 1.3;
}

.video-thumbnail__desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}




/* Модальное окно */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.video-modal__close:hover {
    background: rgba(255,255,255,0.3);
}

.video-modal__player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-modal__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	max-width: 100%!important;
    height: 100%;
    border: none;
}

.video-main-lp h4.video-thumbnail__title {
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 0;
	display: none;
}

.video-main-lp h4.video-thumbnail__title.doph4 {
    margin-bottom: 10px;
	display: none;
}



/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .tab-layout {
        gap: 40px;
    }
    
    .cards-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
    
    .hero-grid,
    .grid-2col,
    .tab-layout,
    .video-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid-2col {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cards-grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tabs-nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-btn {
        text-align: left;
        padding: 10px;
    }
    
    .feature-card--horizontal,
    .feature-card--vertical {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .feature-card__icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .staff-card__header {
        flex-direction: column;
        gap: 15px;
        padding: 20px 20px 0;
    }
    
    .staff-card__photo {
        flex: 0 0 auto;
        height: 200px;
        margin: 0 auto;
    }
    
    .staff-card__info {
        flex: 0 0 auto;
        text-align: center;
    }
    
    .video-thumbnail-lp {
        flex-direction: column;
        text-align: center;
    }
    
    .video-thumbnail__preview {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 480px) {
	
.video-main-lp h4.video-thumbnail__title {
	display:block;
    font-size: 1rem;
    margin-top: 10px;
}	

.video-main-lp h4.video-thumbnail__title.doph4 {
	display:block;
}

	
	.video-sidebar {
    padding: 10px;
}
	
    .tabs-nav {
        flex-direction: row;
    }
	
	.tab-btn {
    font-size: 0.8rem;
	padding: 6px;
	text-align: center;
	}
	
    .staff-card__photo {
        height: 120px;
		border-radius: 30px;
    }
	
	.cta-card__icon img {
    max-width: 100%;
	}	
	
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 20px;
    }

	.btn-primary-lp, .btn-secondary{
		font-size: 14px;
		padding: 10px 10px;
	}	
		
}



/* ===== стили с сайта   ===== */



.w-icon {
    position: relative;
    display: flex;
    width: 41px;
    height: 41px;
    z-index: 9;
    margin: 10px;
}
.w-icon:before {
    content: '';
    background: linear-gradient(180deg, #863acf 0%, #bd7ef9 100%);
    border-radius: 20px;
    width: 41px;
    height: 41px;
    display: block;
    position: absolute;
    z-index: -1;
    top: -10px;
    left: -10px;
}
.w-icon span {
    width: 41px;
    height: 41px;
    box-shadow: 0px -30px 40px rgb(172 119 222 / 10%), inset 0px 5px 4px rgb(172 119 222 / 15%);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 0px;
    background: rgba(255, 255, 255, .7);
    display: flex
;
    align-items: center;
    justify-content: center;
}
.w-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mobile-only {
    display: none;
}


.mobile-fears-slider {
    padding: 20px 0 60px;
    position: relative;
}

.mobile-fears-slider .swiper-slide {
    height: auto;
}

.mobile-fears-slider .card {
    height: 100%;
    margin: 0 10px;
}

    .mobile-fears-slider .swiper-button-next,
    .mobile-fears-slider .swiper-button-prev {
        display: none;
    }

/* Адаптивность */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}


