/* Делаем навигацию "липкой", чтобы кнопки всегда были видны при скролле */
.c-tab__nav {
    display: flex;
    border-bottom: 1px solid #dadada;
    align-items: flex-end;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    padding-top: 10px;
    flex-wrap: wrap;
}

.c-tab__link {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    display: block;
    margin-right: 10px;
    padding: 0 16px 10px;
    transition: all .3s;
    cursor: pointer;
    background: none;
    border: none;
}

/* Линия под активной кнопкой */
.c-tab__link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: #f39c12; /* Цвет активной вкладки */
    transition: transform .3s;
    transform: scaleX(0);
    opacity: 0;
}

.c-tab__link--active:before {
    transform: scaleX(1);
    opacity: 1;
}

.c-tab__link--active {
    color: #f39c12;
}

/* Контентные блоки */
.c-tab__content {
    display: block !important; /* Всегда видны */
    padding: 40px 0; /* Отступы между секциями */
    border-bottom: 1px solid #eee;
}

.c-tab__content:last-child {
    border-bottom: none;
}

/* Адаптивность для видео */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .c-tab__nav { justify-content: center; }
    .c-tab__link { font-size: 14px; margin-bottom: 10px; }
}
