.level-section {
    background: radial-gradient(
            900px 500px at 15% 10%,
            rgba(191, 134, 34, 0.1),
            transparent 55%
        ),
        radial-gradient(
            900px 500px at 85% 20%,
            rgba(33, 150, 243, 0.08),
            transparent 55%
        ),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-orange) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.level-intro {
    max-width: 980px;
    margin: 0 auto;
    color: #6b7280;
    line-height: 1.8;
    font-size: 14px;
}

.level-layout{
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 36px;
}

/* GRID KARTU 2x2 */
.level-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

/* KARTU */
.level-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
    position: relative;
}

.level-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.level-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.level-kicker {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 6px;
}

.level-title {
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    color: #111827;
    margin-bottom: 10px;
}

.level-quote {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    font-size: 12.5px;
    margin: 0 0 16px;
    line-height: 1.6;
}

.level-block {
    margin-top: 14px;
}

.level-block-title {
    font-weight: 800;
    font-size: 12px;
    color: #111827;
    margin-bottom: 8px;
}

.level-card ul {
    padding-left: 16px;
    margin: 0;
    color: #6b7280;
    font-size: 12.5px;
    line-height: 1.6;
}

.level-card p {
    margin: 0;
    color: #6b7280;
    font-size: 12.5px;
    line-height: 1.6;
}

/* CTA kanan */
.level-cta {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.level-cta h3 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 16px;
}

.level-cta p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 22px;
}

.btn-register {
    background: #c78a2a;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
}

/* ===== TAB BAR (TAMBAHAN) ===== */
.level-tabs{
    display:flex;
    justify-content:center;
    gap: 10px;
    margin-top: 26px;
}

.level-tab{
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-weight: 800;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.25s ease;
}

.level-tab:hover{
    transform: translateY(-1px);
}

.level-tab.active{
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== PANEL SWITCH (TAMBAHAN) ===== */
.level-panel{
    display:none;
}

.level-panel.active{
    display:block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .level-layout {
        grid-template-columns: 1fr;
    }
    .level-cta h3 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .level-grid {
        grid-template-columns: 1fr;
    }
    .level-tabs{
        flex-wrap: wrap;
    }
}
