/* СБРОС СТИЛЕЙ И СИСТЕМА ПЕРЕМЕННЫХ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* СБРОС СТАНДАРТНЫХ СЕЛЕКТОРОВ OPENCART */
#content {
    min-height: auto;
    margin-bottom: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.row::before,
.row::after {
    display: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn,
.form-control {
    box-shadow: none !important;
    text-shadow: none !important;
    border-radius: 0;
}

/* ОБЩИЙ ВРАППЕР */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}


/* ШАПКА САЙТА */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header__top {
    background-color: #1a1a1a;
    color: #a0a0a0;
    font-size: 13px;
    padding: 6px 0;
}

.header__top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header__mail {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.header__mail:hover {
    color: #ffffff;
}

.header__main {
    padding: 12px 0;
    background: #ffffff;
}

.header__main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__menu a {
    font-weight: 600;
    font-size: 15px;
    color: #2c2c2c;
    transition: color 0.2s;
    position: relative;
}

.header__menu a:hover {
    color: #e31e24;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    white-space: nowrap;
    transition: color 0.2s;
}

.header__phone:hover {
    color: #e31e24;
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-btn--wa {
    background-color: #25D366;
}

.social-btn--tg {
    background-color: #2AABEE;
}

.social-btn--avito {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-btn--avito:hover {
    background-color: #ffffff;
    border-color: #00aaff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.25);
}

.header__burger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
}

.header__burger span,
.header__burger::before,
.header__burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.header__burger::before { top: 0; }
.header__burger span { top: 10px; }
.header__burger::after { bottom: 0; }

.header__burger.active span { opacity: 0; }
.header__burger.active::before { transform: rotate(45deg); top: 10px; }
.header__burger.active::after { transform: rotate(-45deg); bottom: 11px; }

.header__nav-socials {
    display: none; 
}

/* АДАПТИВ ШАПКИ */
@media (max-width: 992px) {
    .header__title {
        font-size: 12px;
    }

    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 69px;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header__menu a {
        font-size: 18px;
    }
	
	.header__nav-socials {
			display: flex;
			align-items: center;
			gap: 16px;
			margin-top: 30px;
			padding-top: 30px;
			border-top: 1px solid #eeeeee;
			width: 100%;
		}
    
    .header__nav-socials .social-btn {
        width: 44px; /* Делаем чуть крупнее для удобного тапа пальцем */
        height: 44px;
    }
    
    .header__nav-socials .social-btn svg {
        width: 22px;
        height: 22px;
    }	
	
}

@media (max-width: 640px) {
    .header__top {
        display: none;
    }
    
    .header__phone {
        font-size: 14px;
    }
    
.container {
padding: 0 5px;
}
}


@media (max-width: 430px) {
	.header__socials {
		display:none;
	}
	
	}
	

/* ХЕРО БЛОК */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 40px;
    overflow: hidden;
}

.hero__container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero__text-content {
    flex: 1;
    max-width: 650px;
    padding-bottom: 60px;
}

.hero__title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #e31e24;
    margin-bottom: 24px;
}

.hero__wysiwyg {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
}

.hero__wysiwyg p {
    margin-bottom: 16px;
}

.hero__wysiwyg p:last-child {
    margin-bottom: 0;
}

.hero__wysiwyg strong,
.hero__wysiwyg b {
    color: #1a1a1a;
    font-weight: 700;
}

.hero__image-wrap {
    flex-shrink: 0;
    width: 440px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero__image-wrap img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero__cta-bar {
    background: linear-gradient(90deg, #d32f2f 0%, #e31e24 100%);
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(227, 30, 36, 0.15);
}

.hero__cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero__cta-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.btn--cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #e31e24;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--cta:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn--cta svg {
    transition: transform 0.25s ease;
}

.btn--cta:hover svg {
    transform: translateX(4px);
}

/* АДАПТИВ ХЕРО БЛОКА */
@media (max-width: 992px) {
    .hero {
        padding-top: 30px;
    }

    .hero__container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero__text-content {
        max-width: 100%;
        padding-bottom: 0;
        text-align: center;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .hero__image-wrap {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }

    .hero__cta-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .hero__cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 26px;
    }

    .hero__wysiwyg {
        font-size: 14px;
    }

    .btn--cta {
        width: 100%;
        justify-content: center;
    }
}


/* ОБЩИЕ СТИЛИ ДЛЯ ЗАГОЛОВКОВ СЕКЦИЙ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* БЛОК ВРЕМЯ И МЕСТО */
.location {
    padding: 80px 0;
    background-color: #ffffff;
}

.location__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.location__card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.location__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
    background: #ffffff;
}

.location__card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.location__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
}

.location__card-icon--red {
    background-color: #fde8e8;
    color: #e31e24;
}

.location__card-icon--dark {
    background-color: #eef2ff;
    color: #3b82f6;
}

.location__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.location__card-title span {
    color: #e31e24;
}

.location__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location__list li {
    font-size: 15px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location__check {
    color: #e31e24;
    font-weight: 700;
}

/* СТАНЦИИ МЕТРО */
.metro-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.metro-dot--purple { background-color: #8e44ad; }
.metro-dot--green { background-color: #27ae60; }
.metro-dot--blue { background-color: #2980b9; }
.metro-dot--orange { background-color: #f39c12; }
.metro-dot--gray { background-color: #7f8c8d; }

/* ДРУГИЕ ЛОКАЦИИ БЕЙДЖ */
.location__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: fit-content;
    margin: 0 auto 30px auto;
    padding: 10px 20px;
    background-color: #f3f4f6;
    border-radius: 50px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

.location__badge svg {
    color: #6b7280;
}

/* БАННЕР ВРЕМЕНИ */
.location__time-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location__time-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e31e24;
    flex-shrink: 0;
}

.location__time-info {
    display: flex;
    flex-direction: column;
}

.location__time-label {
    font-size: 13px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.location__time-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* АДАПТИВ БЛОКА ЛОКАЦИЙ */
@media (max-width: 992px) {
    .location {
        padding: 50px 0;
    }

    .location__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location__card {
        padding: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .location__time-banner {
        padding: 20px;
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .location__time-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .location__time-value {
        font-size: 17px;
    }
}	


/* БЛОК УЧЕБНЫЕ АВТОМОБИЛИ */
.cars {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cars__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.cars__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cars__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.cars__image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.cars__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cars__card:hover .cars__img {
    transform: scale(1.05);
}

.cars__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.cars__badge--auto {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cars__badge--manual {
    background: linear-gradient(135deg, #e31e24 0%, #b91c1c 100%);
}

.cars__content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cars__name {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cars__desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cars__features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.cars__features li {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cars__check {
    color: #10b981;
    font-weight: 800;
}

/* ДОПОЛНИТЕЛЬНАЯ ГАЛЕРЕЯ */
.cars__gallery {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}



.cars__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cars__gallery-item {
  display: flex;
  flex-direction: column;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

.cars__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cars__gallery-item:hover img {
    transform: scale(1.06);
}

.cars__gallery-title {
    display: block;
	margin-top: 8px;
	font-size: 14px;
	text-align: center;
	color: #333;
}



/* АДАПТИВ БЛОКА АВТОМОБИЛЕЙ */
@media (max-width: 992px) {
    .cars {
        padding: 50px 0;
    }

    .cars__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .cars__image-wrap {
        height: 220px;
    }

    .cars__gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

}

@media (max-width: 640px) {
    .cars__gallery {
        padding: 20px 16px;
    }

    .cars__gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}


/* БЛОК ОТЗЫВЫ */
.reviews {
    padding: 80px 0;
    background-color: #ffffff;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.reviews__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.reviews__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.reviews__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.reviews__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #93c5fd;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews__avatar--e { background-color: #10b981; }
.reviews__avatar--m { background-color: #f59e0b; }
.reviews__avatar--n { background-color: #6366f1; }
.reviews__avatar--a { background-color: #ec4899; }
.reviews__avatar--t { background-color: #8b5cf6; }

.reviews__meta {
    display: flex;
    flex-direction: column;
}

.reviews__author {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.reviews__date {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.reviews__badge-avito {
    margin-left: auto;
    color: #96CEB4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0fdf4;
    padding: 6px;
    border-radius: 50%;
}

.reviews__stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.reviews__deal {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
}

.reviews__text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    flex-grow: 1;
}

.reviews__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--reviews-site {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--reviews-site:hover {
    background-color: #e31e24;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(227, 30, 36, 0.3);
}

.btn--reviews-site svg {
    transition: transform 0.25s ease;
}

.btn--reviews-site:hover svg {
    transform: translateX(4px);
}

.btn--avito-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #00aaff;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 170, 255, 0.2);
}

.btn--avito-large:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 170, 255, 0.35);
}

/* АДАПТИВ ОТЗЫВОВ */
@media (max-width: 992px) {
    .reviews {
        padding: 50px 0;
    }

    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }

	.reviews__actions {
			flex-direction: column;
			width: 100%;
		}

    .btn--reviews-site,
    .btn--avito-large {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }
}


/* БЛОК О ПРИГЛАШЕНИИ */
.about-lead {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-lead__card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.about-lead__content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.about-lead__quote-icon {
    color: #fca5a5;
    opacity: 0.4;
    margin-bottom: 16px;
}

.about-lead__wysiwyg {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
}

.about-lead__wysiwyg p {
    margin-bottom: 14px;
}

.about-lead__wysiwyg p:last-child {
    margin-bottom: 0;
}

.about-lead__footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-lead__author {
    display: flex;
    flex-direction: column;
}

.about-lead__author strong {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-lead__author span {
    font-size: 13px;
    color: #e31e24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn--about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e31e24;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 30, 36, 0.25);
}

.btn--about-cta:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn--about-cta svg {
    transition: transform 0.25s ease;
}

.btn--about-cta:hover svg {
    transform: translateX(4px);
}

.about-lead__image {
    width: 45%;
    max-width: 500px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.about-lead__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center;
    transition: transform 0.5s ease;
}

.about-lead__card:hover .about-lead__image img {
    transform: scale(1.03);
}

/* БЛОК О ПРИГЛАШЕНИИ */
.about-lead {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-lead__card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.about-lead__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-lead__quote-icon {
    color: #fca5a5;
    opacity: 0.4;
    margin-bottom: 16px;
}

.about-lead__wysiwyg {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
}

.about-lead__wysiwyg p {
    margin-bottom: 14px;
}

.about-lead__wysiwyg p:last-child {
    margin-bottom: 0;
}

.about-lead__footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-lead__author {
    display: flex;
    flex-direction: column;
}

.about-lead__author strong {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-lead__author span {
    font-size: 13px;
    color: #e31e24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn--about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e31e24;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 30, 36, 0.25);
}

.btn--about-cta:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn--about-cta svg {
    transition: transform 0.25s ease;
}

.btn--about-cta:hover svg {
    transform: translateX(4px);
}

.about-lead__image {
    width: 460px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-lead__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.about-lead__card:hover .about-lead__image img {
    transform: scale(1.03);
}

/* АДАПТИВ БЛОКА ПРИГЛАШЕНИЯ */
@media (max-width: 992px) {
    .about-lead {
        padding: 50px 0;
    }

    .about-lead__card {
        flex-direction: column-reverse;
        padding: 24px;
        gap: 24px;
    }

    .about-lead__image {
        width: 100%;
    }

    .about-lead__content {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .about-lead__wysiwyg {
        font-size: 14px;
    }

    .about-lead__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn--about-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ДОПОЛНИТЕЛЬНЫЕ КАРТОЧКИ В БЛОКЕ О ПРИГЛАШЕНИИ */
.about-lead__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.about-lead__feature-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-lead__feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.about-lead__feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.about-lead__feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-lead__feature-card:hover .about-lead__feature-image img {
    transform: scale(1.05);
}

.about-lead__feature-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.about-lead__feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.about-lead__feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    text-align: center;
}

/* АДАПТИВ КАРТОЧЕК */
@media (max-width: 992px) {
    .about-lead__features {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .about-lead__feature-image {
        height: 140px;
    }

    .about-lead__feature-body {
        padding: 16px;
    }

    .about-lead__feature-title {
        font-size: 16px;
    }

    .about-lead__feature-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-lead__features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-lead__feature-image {
        height: 200px;
    }

    .about-lead__feature-body {
        padding: 20px;
    }
}

/* БЛОК ДЛЯ КОГО ПОДОЙДЕТ */
.target {
    padding: 80px 0;
    background-color: #ffffff;
}

.target__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.target__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.target__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.target__image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.target__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.target__card:hover .target__image-wrap img {
    transform: scale(1.06);
}

.target__number {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.target__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.target__title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.target__text {
    font-size: 14px;
    line-height: 1.65;
    color: #4b5563;
}

/* АДАПТИВ БЛОКА */
@media (max-width: 992px) {
    .target {
        padding: 50px 0;
    }

    .target__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .target__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .target__image-wrap {
        height: 180px;
    }

    .target__body {
        padding: 20px;
    }

    .target__title {
        font-size: 17px;
    }
}

/* ПРОМО БЛОК БОНУС */
.bonus {
    padding: 60px 0;
    background-color: #ffffff;
}

.bonus__card {
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #374151;
}

.bonus__bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.25) 0%, rgba(227, 30, 36, 0) 70%);
    pointer-events: none;
}

.bonus__header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bonus__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.3);
    color: #f87171;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus__title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bonus__desc {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto 32px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
}

.bonus__action {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.btn--bonus-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e31e24;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.btn--bonus-cta:hover {
    background-color: #ffffff;
    color: #e31e24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn--bonus-cta svg {
    transition: transform 0.25s ease;
}

.btn--bonus-cta:hover svg {
    transform: translateX(4px);
}

/* АДАПТИВ БЛОКА БОНУС */
@media (max-width: 992px) {
    .bonus {
        padding: 40px 0;
    }

    .bonus__card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .bonus__title {
        font-size: 26px;
    }

    .bonus__desc {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .btn--bonus-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ПОДВАЛ САЙТА */
.footer {
    background-color: #111827;
    color: #9ca3af;
    font-size: 14px;
    margin-top: auto;
}

.footer__main {
    padding: 64px 0 48px 0;
    border-bottom: 1px solid #1f2937;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
}

.footer__slogan {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #d1d5db;
}

.footer__developer {
    font-size: 13px;
    color: #6b7280;
}

.footer__developer a {
    color: #e31e24;
    font-weight: 600;
    transition: color 0.2s;
}

.footer__developer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer__title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: #ffffff;
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.footer__phone {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.2s;
}

.footer__phone:hover {
    color: #e31e24;
}

.footer__email {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer__email:hover {
    color: #ffffff;
}

.footer__sublabel {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__social-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn--max {
    background: linear-gradient(135deg, #0055FF 0%, #8A00E5 100%);
}

.social-btn-footer--max {
    background-color: #ffffff;
    padding: 2px;
} 

.social-btn--max:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 0, 229, 0.4);
}

.footer__video-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer__video-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #1f2937;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #374151;
}

.video-btn:hover {
    transform: translateX(4px);
}

.video-btn--yt:hover { background-color: #ff0000; border-color: #ff0000; }
.video-btn--rt:hover { background-color: #005bff; border-color: #005bff; }
.video-btn--vk:hover { background-color: #0077ff; border-color: #0077ff; }

.footer__bottom {
    padding: 20px 0;
    font-size: 13px;
    color: #6b7280;
}

.footer__bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__cookies {
    max-width: 600px;
    text-align: right;
    font-size: 12px;
}

.footer__cookies a {
    color: #9ca3af;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer__cookies a:hover {
    color: #ffffff;
}

.footer__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 6px;
    background-color: #ffffff;
    padding: 4px 8px;
}

/* АДАПТИВ ПОДВАЛА */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer__bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer__cookies {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* БЛОК УВЕДОМЛЕНИЯ О COOKIE */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 1240px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #d1d5db;
}

.cookie-notice__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0;
}

.cookie-notice__text {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.cookie-notice__text a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-notice__text a:hover {
    color: #e31e24;
}

.btn--cookie {
    flex-shrink: 0;
    background-color: #e31e24;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.btn--cookie:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

/* АДАПТИВ COOKIE */
@media (max-width: 768px) {
    .cookie-notice {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px;
    }

    .cookie-notice__container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-notice__text {
        font-size: 12px;
    }

    .btn--cookie {
        width: 100%;
        text-align: center;
    }
}


/* ==========================================================================
   СТРАНИЦА ОТЗЫВОВ (REVIEWS PAGE)
   ========================================================================== */

.reviews-page {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
}

.reviews-page__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px auto;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 24px;
}

.reviews-page__top-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* КАРТОЧКА С ОТВЕТОМ ИНСТРУКТОРА */
.reviews__card--with-reply {
    border-color: #fca5a5;
}

.reviews__reply {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e5e7eb;
    background-color: #f9fafb;
    padding: 14px;
    border-radius: 10px;
}

.reviews__reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 6px;
}

.reviews__reply-header strong {
    color: #e31e24;
}

.reviews__reply-header span {
    color: #9ca3af;
    font-size: 11px;
}

.reviews__reply-text {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   ПАГИНАЦИЯ (OPENCART STYLE)
   -------------------------------------------------------------------------- */

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 16px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination li a:hover {
    border-color: #e31e24;
    color: #e31e24;
}

.pagination li.active span {
    background-color: #e31e24;
    border-color: #e31e24;
    color: #ffffff;
}

.pagination-results {
    font-size: 14px;
    color: #6b7280;
}

/* --------------------------------------------------------------------------
   ФОРМА ДОБАВЛЕНИЯ ОТЗЫВА
   -------------------------------------------------------------------------- */

.review-form-block {
    margin-top: 60px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.review-form-block__title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.form-review {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.form-review__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group label.required::after {
    content: " *";
    color: #e31e24;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #e31e24;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1) !important;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ВЫБОР РЕЙТИНГА ЗВЕЗДОЧКАМИ */
.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    height: 44px;
    align-items: center;
}

.rating-select input {
    display: none;
}

.rating-select label {
    font-size: 28px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s ease;
    line-height: 1;
}

.rating-select input:checked ~ label,
.rating-select label:hover,
.rating-select label:hover ~ label {
    color: #ffc107;
}

/* КАПЧА */
.captcha-group {
    max-width: 320px;
}

.captcha-group label span {
    font-weight: 700;
    color: #e31e24;
}

/* КНОПКА ОТПРАВКИ */
.btn--submit-review {
    align-self: flex-start;
    background-color: #e31e24;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 30, 36, 0.25);
    margin-top: 8px;
}

.btn--submit-review:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* АДАПТИВ СТРАНИЦЫ ОТЗЫВОВ */
@media (max-width: 768px) {
    .reviews-page {
        padding: 40px 0 60px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .form-review__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-form-block {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .btn--submit-review {
        width: 100%;
        text-align: center;
    }

    .pagination-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ХЛЕБНЫЕ КРОШКИ */
.breadcrumbs {
    padding: 16px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs__list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumbs__list li a {
    color: #6b7280;
    transition: color 0.2s;
}

.breadcrumbs__list li a:hover {
    color: #e31e24;
}

.breadcrumbs__list li + li::before {
    content: "/";
    margin-right: 8px;
    color: #9ca3af;
}

.breadcrumbs__list li span {
    color: #1a1a1a;
    font-weight: 600;
}



/* ==========================================================================
   СТРАНИЦА КОНТАКТОВ (CONTACTS PAGE)
   ========================================================================== */

.contacts-page {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
}

.contacts-page__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px auto;
}

.contacts-page__grid {
    display: grid;
    /* grid-template-columns: 460px 1fr; */
    gap: 32px;
    align-items: start;
}

/* ЛЕВАЯ КАРТОЧКА */
.contacts-info-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contacts-info__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.contacts-info__group:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contacts-info__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #fef2f2;
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacts-item__text {
    display: flex;
    flex-direction: column;
}

.contacts-item__text span {
    font-size: 12px;
    color: #9ca3af;
}

.contacts-link {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.2s;
}

.contacts-link:hover {
    color: #e31e24;
}

.contacts-messengers {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ГРАФИК */
.contacts-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
}

.contacts-schedule__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contacts-schedule__row strong {
    color: #4b5563;
    font-weight: 600;
}

.badge-time {
    color: #10b981;
    font-weight: 700;
}

.badge-cat {
    color: #e31e24;
    font-weight: 700;
}

/* АДРЕС И МЕТРО */
.contacts-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
}

.contacts-address svg {
    color: #e31e24;
    flex-shrink: 0;
}

.contacts-metro-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.contacts-metro-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.metro-dot--pink {
    background-color: #d946ef;
}

.metro-name {
    flex-grow: 1;
}

.metro-time {
    font-size: 12px;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* ПРАВАЯ КАРТОЧКА С КАРТОЙ */
.contacts-map-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: 100%;
    min-height: 550px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 550px;
}

.map-wrapper ymaps {
    border-radius: 24px;
}

/* АДАПТИВ СТРАНИЦЫ КОНТАКТОВ */
@media (max-width: 992px) {
    .contacts-page__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contacts-map-card,
    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .contacts-page {
        padding: 40px 0 60px 0;
    }

    .contacts-info-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .contacts-schedule__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .contacts-map-card,
    .map-wrapper {
        min-height: 320px;
        border-radius: 16px;
    }
}

/* ==========================================================================
   СТРАНИЦА О СЕБЕ (ABOUT PAGE)
   ========================================================================== */

.about-page {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
}

.about-page__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px auto;
}

/* ГЛАВНАЯ КАРТОЧКА БИО */
.about-bio-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px;
    margin-bottom: 60px;
}

.about-bio__image {
    width: 340px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-bio__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-bio__content {
    flex: 1;
}

.about-bio__name {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.about-bio__badge {
    display: inline-block;
    background-color: #fef2f2;
    color: #e31e24;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.about-bio__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-bio__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #f3f4f6;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-bio__info strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.about-bio__info p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.about-bio__location {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e31e24;
}

/* ГАЛЕРЕЯ ПРАКТИКИ И YOUTUBE */
.about-gallery-section {
    margin-bottom: 60px;
}

.about-gallery-section .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.about-gallery__card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.about-gallery__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.about-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-gallery__card:hover .about-gallery__image img {
    transform: scale(1.04);
}

.about-gallery__caption {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-gallery__caption strong {
    font-size: 17px;
    color: #1a1a1a;
}

.about-gallery__caption p {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

/* СЕКЦИЯ АВТОСПОРТА */
.about-sport-section {
    margin-bottom: 60px;
}

.about-sport-section .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.about-sport__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-sport__card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.about-sport__image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.about-sport__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sport__title {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    background-color: #ffffff;
}

/* CTA БАННЕР */
.about-page__cta {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-page__cta-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.about-page__cta-content p {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
}

/* АДАПТИВ СТРАНИЦЫ О СЕБЕ */
@media (max-width: 992px) {
    .about-bio-card {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .about-bio__image {
        width: 100%;
        max-width: 320px;
    }

/*     .about-gallery__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    } */

    .about-sport__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-page__cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }
}

@media (max-width: 768px) {
    .about-gallery__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 40px 0 60px 0;
    }

    .about-bio__name {
        font-size: 24px;
    }

    .about-sport__image {
        height: 220px;
    }

    .about-page__cta .btn--cta {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   СТРАНИЦА ЦЕН (PRICE PAGE)
   ========================================================================== */

.prices-page {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
}

.prices-page__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px auto;
}

/* СЕТКА ТАРИФОВ АВТОМОБИЛЕЙ (АКПП / МКПП) */
.prices-cars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.price-car-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-car-card__header {
    padding: 32px;
    color: #ffffff;
    position: relative;
}

.price-car-card__header--akpp {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.price-car-card__header--mkpp {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.price-car-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: #e31e24;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.price-car-card__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.price-car-card__subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.price-car-card__rates {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.price-rate-item--popular {
    background-color: #fef2f2;
    border-color: #fca5a5;
}

.price-rate-item__time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.price-rate-item__time svg {
    color: #6b7280;
}

.popular-tag {
    font-size: 11px;
    font-weight: 700;
    color: #e31e24;
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    border: 1px solid #fca5a5;
}

.price-rate-item__value {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

/* СЕТКА ДЕТАЛЕЙ (ЧТО ВХОДИТ И ИНДИВИДУАЛЬНЫЕ УСЛОВИЯ) */
.prices-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.price-details-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.price-details-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.price-details-card__title svg {
    color: #e31e24;
    flex-shrink: 0;
}

.price-details-card__subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.price-check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #d1fae5;
    color: #059669;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-check-list--bullets li::before {
    content: "•";
    color: #e31e24;
    font-size: 20px;
    line-height: 1;
}

.price-payment-notice {
    margin-top: 24px;
    padding: 16px;
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #991b1b;
    font-size: 14px;
    font-weight: 700;
}

.price-payment-notice svg {
    color: #e31e24;
    flex-shrink: 0;
}

/* СТИЛИ ДЛЯ РЕДАКТОРА WYSIWYG OPENCART (НА БУДУЩЕЕ ДЛЯ СТАТЕЙ) */
.prices-page__wysiwyg {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.prices-page__wysiwyg table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.prices-page__wysiwyg table td,
.prices-page__wysiwyg table th {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.prices-page__wysiwyg table th {
    background-color: #f9fafb;
    font-weight: 700;
    color: #1a1a1a;
}

.prices-page__wysiwyg ul,
.prices-page__wysiwyg ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.prices-page__wysiwyg p {
    margin-bottom: 16px;
}

/* АДАПТИВ СТРАНИЦЫ ЦЕН */
@media (max-width: 992px) {
    .prices-cars-grid,
    .prices-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .price-car-card__header {
        padding: 24px;
    }

    .price-car-card__rates {
        padding: 20px;
    }

    .price-details-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .prices-page {
        padding: 40px 0 60px 0;
    }

    .price-rate-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .price-rate-item__value {
        font-size: 18px;
        color: #e31e24;
    }
}

/* ==========================================================================
   УНИВЕРСАЛЬНАЯ ТЕКСТОВАЯ СТРАНИЦА (TEXT PAGE / INFORMATION)
   ========================================================================== */

.text-page {
    padding: 60px 0 80px 0;
    background-color: #f8f9fa;
}

.text-page__card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.text-page__header {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.text-page__header .page-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.text-page__meta {
    font-size: 13px;
    color: #9ca3af;
}

/* ==========================================================================
   СТИЛИ ДЛЯ КОНТЕНТА ИЗ WYSIWYG РЕДАКТОРА (OPENCART / SUMMERNOTE)
   ========================================================================== */

.wysiwyg-content {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.wysiwyg-content .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 28px;
}

.wysiwyg-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 36px 0 16px 0;
    letter-spacing: -0.01em;
}

.wysiwyg-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 12px 0;
}

.wysiwyg-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 8px 0;
}

.wysiwyg-content p {
    margin-bottom: 18px;
}

.wysiwyg-content a {
    color: #e31e24;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.wysiwyg-content a:hover {
    color: #1a1a1a;
}

/* СПИСКИ */
.wysiwyg-content ul,
.wysiwyg-content ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.wysiwyg-content ul li,
.wysiwyg-content ol li {
    margin-bottom: 8px;
}

.wysiwyg-content ul li::marker {
    color: #e31e24;
}

/* ЦИТАТЫ */
.wysiwyg-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background-color: #fef2f2;
    border-left: 4px solid #e31e24;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #991b1b;
}

.wysiwyg-content blockquote p:last-child {
    margin-bottom: 0;
}

/* КАРТИНКИ В ТЕКСТЕ */
.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

/* ТАБЛИЦЫ В ТЕКСТЕ */
.wysiwyg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.wysiwyg-content table th,
.wysiwyg-content table td {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.wysiwyg-content table th {
    background-color: #f9fafb;
    font-weight: 700;
    color: #1a1a1a;
}

/* CTA БАННЕР ВНИЗУ ТЕКСТОВОЙ СТРАНИЦЫ */
.text-page__footer-cta {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.text-page__cta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.text-page__cta-info strong {
    font-size: 17px;
    color: #1a1a1a;
}

.text-page__cta-info span {
    font-size: 14px;
    color: #6b7280;
}

/* АДАПТИВ ТЕКСТОВОЙ СТРАНИЦЫ */
@media (max-width: 768px) {
    .text-page {
        padding: 40px 0 60px 0;
    }

    .text-page__card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .text-page__header .page-title {
        font-size: 24px;
    }

    .wysiwyg-content {
        font-size: 15px;
    }

    .wysiwyg-content h2 {
        font-size: 19px;
    }

    .text-page__footer-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .text-page__footer-cta .btn--cta {
        width: 100%;
        justify-content: center;
    }
}


/* ИЗОЛИРОВАННАЯ СЕКЦИЯ ВИДЕОУРОКОВ */
.video-section {
    margin-bottom: 40px;
}

.video-section .video-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.video-section .video-card__info {
    max-width: 800px;
    margin-bottom: 24px;
}

.video-section .video-card__badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.video-section .video-card__title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.video-section .video-card__desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.video-section .video-card__links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* КНОПКИ НОВОЙ СЕКЦИИ */
.video-section-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 160px;
}

.video-section-btn--yt {
    background: #ff0000;
    color: #ffffff;
}
.video-section-btn--yt:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

.video-section-btn--rt {
    background: #0d141e;
    color: #ffffff;
}
.video-section-btn--rt:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 20, 30, 0.25);
}

.video-section-btn--vk {
    background: #0077ff;
    color: #ffffff;
}
.video-section-btn--vk:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 119, 255, 0.25);
}

/* МОБИЛЬНАЯ ВЕРСТКА */
@media (max-width: 768px) {
    .video-section .video-card {
        padding: 24px;
    }
    .video-section .video-card__links {
        flex-direction: column;
        align-items: stretch;
    }
    .video-section-btn {
        width: 100%;
    }
}

/* МЕТРО ДОТЫ И ЦВЕТА ВЕТОК */
.metro-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* Бирюзовая ветка (БКЛ / Каховская) */
.metro-dot--turquoise {
	background-color: #00AFAF;
}

/* Серая ветка (Серпуховско-Тимирязевская / Чертановская) */
.metro-dot--grey {
	background-color: #999999;
}

/* Фиолетовая ветка (Таганско-Краснопресненская / Щукинская, Октябрьское поле) */
.metro-dot--purple {
	background-color: #8E44AD;
}


	