/* === VACANCY PAGE === */
#vacancy-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Video placeholder */
.vacancy-video-block {
    margin-bottom: 36px;
}
.vacancy-video-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 18px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vacancy-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.vacancy-video-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.vacancy-video-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
}
.vacancy-video-soon {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    position: relative;
}

/* Tabs */
.vacancy-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    background: #f0f0f0;
    border-radius: 14px;
    padding: 4px;
}
.vacancy-tab {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}
.vacancy-tab:hover {
    color: #333;
    background: rgba(255,255,255,0.5);
}
.vacancy-tab.active {
    background: #fff;
    color: #005fa1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Tab content */
.vacancy-tab-content {
    display: none;
}
.vacancy-tab-content.active {
    display: block;
}

/* Points section */
.points-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}
.points-intro h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 12px;
}
.points-intro p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.points-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}
.points-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.points-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.points-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 10px;
}
.points-card__desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.points-cta {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    border-radius: 14px;
    border-left: 4px solid #005fa1;
}
.points-cta p {
    font-size: 16px;
    color: #374151;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .vacancy-tabs {
        flex-direction: column;
        gap: 2px;
    }
    .vacancy-tab {
        font-size: 14px;
        padding: 12px 16px;
    }
    .points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vacancy-video-placeholder {
        padding: 50px 20px;
    }
    .vacancy-video-text {
        font-size: 18px;
    }
    .vacancy-video-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
