.sta-hero {
    padding: 120px 20px 80px;
    position: relative;
}

.sta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    opacity: 0.3;
    background: url(../images/vectors/sm-gradient-bg.webp) center / cover no-repeat;
    z-index: -1;
    transition: all .3s ease;
}

.sta-hero h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.skills-section h2,
.benefits-section h2,
.engagement-section h2 {
    margin-bottom: 16px;
}

.sta-hero-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

.overview-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 50px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.overview-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.skills-section .sc-priority-card {
    min-height: unset;
    height: 100%;
}

.skills-section .sc-priority-card .sc-priority-card-header {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.skills-section .sc-priority-card h3 {
    margin-bottom: 0;
}

.skills-section .sc-priority-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skills-section .sc-priority-card ul li {
    color: var(--color-text-paragraph);
}

.skill-card ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.benefits-copy ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
    line-height: 2.1;
    margin-top: 32px;
}

.benefits-section .benefits-copy {
    padding: 50px;
    background: var(--color-bg-secondary);
    border-radius: 24px;
    height: 100%;
}

.benefits-section .benefits-copy ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefits-section .benefits-copy ul li {
    color: var(--color-text-paragraph);
}

.benefits-media {
    overflow: hidden;
    border-radius: 18px;
    min-height: 320px;
    box-shadow: var(--shadow);
}

.benefits-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.engagement-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 760px;
}

.engagement-tabs .pills {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #3D065F;
    padding: 12px 24px 12px 42px;
    border-radius: 999px;
    font-weight: 500;
    margin: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.engagement-tabs .pills::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 8px;
    height: 8px;
    background: #ffffff62;
    overflow: hidden;
    z-index: -1;
    transition: all .3s ease;
    border-radius: 50%;
    z-index: 1;
}

.sta-cta {
    position: relative;
    padding: 80px 20px;
}

.sta-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -02px;
    text-transform: uppercase;
}

.sta-cta p {
    margin-bottom: 24px;
}

.sta-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    opacity: 0.3;
    background: url(../images/vectors/sm-gradient-bg.webp) center / cover no-repeat;
    z-index: -1;
    transition: all .3s ease;
}

@media (max-width: 768px) {
    .sta-hero {
        padding: 80px 10px 60px;
    }

    .overview-card {
        padding: 30px;
    }

    .sta-hero-content {
        padding: 50px 0;
        background: transparent;
    }

    .sta-hero h1 {
        font-size: 28px;
    }

    .benefits-section .benefits-copy {
        padding: 40px 30px;
    }

    .benefits-media {
        min-height: unset;
    }

    .benefits-section .row>.col-lg-6 {
        margin-bottom: 30px;
    }

    .engagement-tabs .pills {
        padding: 10px 20px 10px 36px;
    }

    .engagement-tabs .pills::before {
        left: 16px;
    }

    .sta-cta {
        padding: 60px 20px;
    }

    .sta-cta h2 {
        font-size: 2rem;
    }
}