/* Основная обертка */
.about-main-wrapper {
    width: 100%;
    height: 654px;
    position: relative;
    background: #3D4042;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

/* Декоративный SVG (Путь) */
.about-decor-svg {
    position: absolute;
    /* 
       Настройки позиционирования:
       left: -20px; - двигает влево/вправо (отрицательное значение - влево за край).
       top: 110px; - двигает вверх/вниз.
    */
    left: -20px; 
    top: 20px;
    z-index: 0;
    pointer-events: none;
}

/* Колонки */
.about-left-col {
    flex: 0 0 680px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.about-right-col {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Заголовок */
.about-label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

/* Теги */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.about-tag {
    height: 32px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 45px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Ссылка "Подробнее" */
.about-link-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2DD8E1;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: opacity 0.2s;
}

.about-link-detail:hover {
    opacity: 0.8;
    color: #2DD8E1;
}

/* Карточки преимуществ */
.about-features {
    display: flex;
    gap: 16px;
    margin-bottom: auto;
}

.feature-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Иконки (SVG) */
.feature-icon {
    /* Убрали фон, оставили только размеры */
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Чтобы SVG масштабировались внутри контейнера */
.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    color: #292A2A;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-desc {
    color: #878D91;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

/* Соцсети */
.about-socials {
    margin-top: 24px;
}

.social-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00B1BA;
    font-size: 20px;
    transition: transform 0.2s;
}

.social-icon-btn:hover {
    transform: scale(1.1);
    color: #00B1BA;
}

/* Видео */
.video-container {
    width: 100%;
    height: 100%;
    background: #000;
}

.video-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.video-play-btn {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: background 0.2s;
}

.video-play-btn i {
    color: #fff;
    font-size: 30px;
    margin-left: 8px;
}

.video-preview:hover .video-play-btn {
    background: rgba(255, 255, 255, 0.5);
}