:root {
    --color-primary: #237DC1;
    --color-darker: #00559F;
    --secondary-blue: #F6F7FC;
    --primary-yellow: #FFAF50;
    --primary-orange: #ED743F;
    --primary-green: #22c55e;
    --white-custom: #F6F7FC;
    --font-size-title: 28px;
    --font-size-subtitle: 16px;
    --font-size-desktop: 18px;
    --font-size-title-mobile: 22px;
    --font-size-subtitle-mobile: 14px;
    --badge-font-size: 12px;
    --badge-font-size-mobile: 10px;
    --general-font-mobile: 14px;
    --general-font-desktop: 16px;
    --font-mobile-size: 14px;
    --default-font: 'Poppins', sans-serif;
    --dark-black: black;
    --mobile-padding: 30px 30px;
    --desktop-padding: 30px 80px;
    --navbar-height: 80px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: white;
    color: #333;
}

section {
    scroll-margin-top: var(--navbar-height);
}


/* ================================
   CPNS NAVBAR BASE
================================ */
.cpns-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    width: 100%;
    font-family: var(--default-font);
}

.cpns-navbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 10px 80px;
}

.cpns-navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cpns-navbar__logo-img {
    max-height: 42px;
    width: auto;
    height: auto;
}

.cpns-navbar__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpns-navbar__item {
    position: relative;
}

.cpns-navbar__link {
    font-size: 15px;
    font-weight: 600;
    color: #1f2933;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.cpns-navbar__link:hover {
    color: var(--color-darker);
}

.cpns-navbar__cta {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cpns-navbar__cta:hover {
    background: var(--color-darker);
    transform: translateY(-1px);
}

.cpns-navbar__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #1f2933;
}

@media (max-width: 991px) {
    .cpns-navbar__toggle {
        display: block;
    }

    .cpns-navbar__menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid #e5e7eb;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .cpns-navbar__menu.is-open {
        max-height: 500px;
    }

    .cpns-navbar__item {
        border-bottom: 1px solid #f1f5f9;
    }

    .cpns-navbar__link {
        padding: 14px 16px;
        display: block;
        font-size: 16px;
    }

    .cpns-navbar__cta {
        width: calc(100% - 32px);
        margin: 12px 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cpns-navbar__content {
        padding: 10px 30px;
    }

    .cpns-navbar__logo-img {
        max-height: 36px;
    }

    .cpns-navbar__link {
        font-size: 15px;
    }
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-darker) 100%);
    color: #ffffff;
    padding: var(--desktop-padding);
}

.site-footer__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    padding-bottom: 40px;
}

.site-footer__logo {
    max-width: 180px;
    margin-bottom: 16px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.site-footer__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.site-footer__address {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

.site-footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.site-footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.site-footer__social-icon:hover {
    transform: scale(1.1);
}

.site-footer__call {
    text-align: center;
}

.site-footer__call-box {
    background: var(--primary-orange);
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
}

.site-footer__call-label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.site-footer__call-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-yellow);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    overflow: hidden;
    transition: 0.3s ease;
}

.site-footer__call-number svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.site-footer__call-number::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shine 2.5s infinite;
}

.site-footer__call-number:hover {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

@keyframes shine {
    0% {
        left: -120%;
    }

    60% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__list li {
    margin-bottom: 8px;
}

.site-footer__list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.site-footer__list a:hover {
    text-decoration: underline;
}

.site-footer__hot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__hot-item {
    background: #ffffff;
    color: #000000;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 16px 0;
    font-size: 13px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .site-footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: var(--mobile-padding);
    }

    .site-footer__content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .site-footer__title {
        text-align: left;
    }

    .site-footer__socials {
        justify-content: left;
    }
}

/* =========================
   Floating WhatsApp CTA
========================== */

.tp-fcta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background: var(--color-primary);
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tp-fcta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
}

.tp-fcta img {
    width: 100%;
    height: auto;
}

.tp-fcta-pop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
}

.tp-fcta-pop[aria-hidden="false"] {
    pointer-events: auto;
}

.tp-fcta-pop__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .2s ease;
}

.tp-fcta-pop[aria-hidden="false"] .tp-fcta-pop__overlay {
    opacity: 1;
}

.tp-fcta-pop__box {
    position: absolute;
    right: 20px;
    bottom: 90px;

    width: 320px;
    max-width: calc(100% - 40px);

    background: #fff;
    border-radius: 14px;
    overflow: hidden;

    transform: translateY(10px);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}

.tp-fcta-pop[aria-hidden="false"] .tp-fcta-pop__box {
    transform: translateY(0);
    opacity: 1;
}

.tp-fcta-pop__header {
    background: var(--color-primary);
    color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    font-weight: 700;
}

.tp-fcta-pop__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* LIST */
.tp-fcta-pop__list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.tp-fcta-pop__list li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #111;
    transition: background .15s ease;
}

.tp-fcta-pop__list li a:hover {
    background: #f5f5f5;
}

.tp-fcta-pop__name {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.tp-fcta-pop__tel {
    display: block;
    font-size: 13px;
    opacity: .75;
}

@media (max-width: 767.98px) {

    .tp-fcta-pop__box {
        bottom: calc(90px + env(safe-area-inset-bottom));
        right: 16px;
    }
}

/* ================================
   HERO JUMBOTRON
================================ */

.hero-jumbotron {
    position: relative;
    overflow: hidden;
    font-family: var(--default-font);
}

.hero-jumbotron__slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--desktop-padding);
}

.hero-jumbotron__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-jumbotron__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* align-items: center; */
}


.hero-jumbotron__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-jumbotron__figure {
    max-width: 480px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

.hero-jumbotron__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-jumbotron__text {
    padding: 25px 0 0 0;
}

.hero-jumbotron__title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -.5px;
    color: black;
}

.hero-jumbotron__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #38bdf8;
    margin-bottom: 1.5rem;
}

.hero-jumbotron__description p {
    font-size: var(--general-font-desktop);
    line-height: 1.75;
    color: black;
}

.hero-jumbotron__subdesc {
    margin-top: .75rem;
    color: black;
}

.hero-jumbotron__cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-jumbotron__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.6rem;
    border-radius: .8rem;
    background: var(--primary-yellow);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.hero-jumbotron__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transition: .6s;
}

.hero-jumbotron__btn:hover::before {
    left: 100%;
}

.hero-jumbotron__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .45);
}

.hero-jumbotron__btn--outline {
    background: transparent;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    box-shadow: none;
}

.hero-jumbotron__btn--outline:hover {
    background: #38bdf8;
    color: #020617;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}


/* @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
} */

@media (max-width: 992px) {
    .hero-jumbotron__content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 20px;
    }

    .hero-jumbotron__text {
        order: 1;
    }

    .hero-jumbotron__media {
        order: 2;
    }
}


@media (max-width: 576px) {
    .hero-jumbotron__slide {
        padding: var(--mobile-padding);
        min-height: auto;
    }

    .hero-jumbotron__title {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .hero-jumbotron__description p {
        font-size: 14px;
        text-align: left;
    }

    .hero-jumbotron__text {
        padding: 0px 0 0 0;
    }
}

/* ================================
   BENEFIT
================================ */
.benefit-section {
    padding: var(--desktop-padding);
}

.benefit-container {
    margin: 0 auto;
}

.benefit-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefit-header h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.benefit-header p {
    font-size: 1rem;
    color: #555;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    width: 100%;
}

.benefit-card {
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.benefit-image {
    margin-bottom: 16px;
}

.benefit-image img {
    max-width: 96px;
    height: auto;
}

.benefit-title {
    font-size: var(--general-font-desktop);
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: .95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .benefit-section {
        padding: var(--mobile-padding);
    }

    .benefit-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-title {
        font-size: var(--general-font-mobile);
    }
}

/* ================================
   PROGRAM
================================ */
.program-section {
    position: relative;
    padding: 30px 80px;
    color: #fff;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-darker) 100%);
    overflow: hidden;
}

.program-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 1;
}

.program-container {
    position: relative;
    z-index: 9;
}

.program-header {
    text-align: center;
    margin-bottom: 32px;
}

.program-header.second {
    margin-top: 64px;
}

.program-header h2 {
    font-size: var(--font-size-title);
    font-weight: 700;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.program-card {
    background: #ffffff;
    color: #222;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding-top: 50px;
}

.program-card.horizontal {
    flex-direction: column;
    padding-top: 0;
}

.program-image-wrapper {
    position: relative;
    overflow: hidden;
}

.program-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.program-overlay {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.0) 100%);
    color: #fff;
}

.overlay-detail {
    margin-top: 50px;
}

.program-title-overlay {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.program-badge {
    background: var(--primary-yellow);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 0 6px auto;
}

.program-tryout {
    background: var(--primary-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 0 8px auto;
}

.program-price-overlay {
    margin-top: auto;
    margin-left: auto;
    text-align: right;
    padding: 8px 12px;
    border-radius: 10px;
}

.program-price-overlay .price-before {
    display: block;
    font-size: .75rem;
    color: #ddd;
    text-decoration: line-through;
}

.program-price-overlay .price-now {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffb347;
}

.program-benefits {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex-grow: 1;
}

.program-benefits-statis {
    list-style: none;
    padding: 0px;
    margin: 0;
    flex-grow: 1;
}

.program-benefits li,
.program-benefits-statis li {
    display: flex;
    gap: 8px;
    font-size: var(--general-font-desktop);
    margin-bottom: 6px;
}

.check-icon {
    color: #16a34a;
}

.program-cta {
    display: inline-grid;
    text-align: center;
    padding: 20px;
}

.btn-program {
    display: inline-block;
    background: #ffb347;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.tryout-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-tryout {
    background: #ff7a18;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .9rem;
    text-align: center;
}

.btn-tryout p {
    font-size: 20px;
    font-weight: 800;
}

.program-card.horizontal .program-body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}

.program-title-top {
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    padding-top: 10px;
}

.program-card.horizontal .model-wrap {
    position: relative;
    flex: 0 0 45%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 80px 0 0px;
}

.program-card.horizontal .model-wrap img {
    position: relative;
    z-index: 2;
    max-height: 320px;
    width: auto;
    object-fit: contain;
    display: block;
    align-self: flex-end;
}

.program-card.horizontal .model-wrap::before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 20%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 1;
}

.program-card.horizontal .program-content {
    flex: 1;
    padding: 30px 30px 20px 10px;
    text-align: left;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
}

.program-card.horizontal .program-content .btn-program {
    margin-top: auto;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #16a34a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.check-icon::before {
    content: "✓";
}

@media (max-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 990px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-grid.two-col {
        grid-template-columns: 1fr;
    }

    .program-card.horizontal .model-wrap img {
        max-height: 200px;
    }

    .program-header h2,
    .program-title-top {
        font-size: 30px;
    }

    .program-title-overlay {
        font-size: 30px;
    }

    .overlay-detail {
        margin-top: 15px;
    }

    .program-badge,
    .program-tryout {
        font-size: var(--font-mobile-size);
        padding: 5px 15px;
    }

    .program-benefits li,
    .program-benefits-statis li {
        gap: 8px;
        font-size: var(--font-mobile-size);
    }

    .btn-program {
        font-size: var(--font-mobile-size);
    }
}


@media (max-width: 768px) {
    .program-section {
        padding: var(--mobile-padding);
    }

    .program-grid,
    .program-grid.two-col {
        grid-template-columns: 1fr;
    }

    .program-card.horizontal .model-wrap img {
        max-height: 160px;
    }

    .program-card.horizontal .model-wrap {
        padding: 0;
    }

    .program-card.horizontal .model-wrap::before {
        width: 230px;
        height: 230px;
    }

    .tryout-buttons {
        justify-content: center;
    }

    .program-header h2,
    .program-title-top {
        font-size: 25px;
    }

    .program-title-overlay {
        font-size: 25px;
    }

    .overlay-detail {
        margin-top: 15px;
    }

    .program-badge,
    .program-tryout {
        font-size: var(--font-mobile-size);
        padding: 5px 15px;
    }

    .program-benefits li,
    .program-benefits-statis li {
        gap: 8px;
        font-size: var(--font-mobile-size);
    }

    .btn-program {
        font-size: var(--font-mobile-size);
    }

    .program-card.horizontal .program-content {
        padding: 10px 10px 10px 5px;
    }
}

/* =========================
   Seleksi Section (SKD & SKB)
   ========================= */
.seleksi-wrapper {
    background: var(--white-custom);
    padding: var(--desktop-padding);
}

.seleksi-hero {
    margin: 0 auto 3.5rem;
    text-align: left;
}

.seleksi-hero h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: var(--color-darker);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.seleksi-hero p {
    font-size: var(--general-font-desktop);
    color: #475569;
    line-height: 1.8;
}

.seleksi-main-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.seleksi-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.seleksi-card .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.seleksi-card .section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.seleksi-card .section-header p {
    font-size: var(--general-font-desktop);
    color: #64748b;
    line-height: 1.6;
}

.seleksi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.seleksi-item-blue {
    color: black;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.seleksi-item-blue figure {
    margin: 0;
    flex-shrink: 0;
}

.seleksi-item-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    flex: 1 1 100%;
}

.seleksi-item-blue img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 0.4rem;
}

.seleksi-item-blue h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.15rem;
}

.seleksi-item-blue p {
    font-size: var(--general-font-desktop);
    line-height: 1.5;
    margin: 0;
}

.seleksi-content-skb {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    column-gap: 12px;
    width: 100%;
}

.seleksi-content-skb h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seleksi-content-skb p {
    margin: 0;
    font-size: var(--general-font-desktop);
    line-height: 1.45;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .seleksi-wrapper {
        padding: var(--mobile-padding);
    }

    .seleksi-hero {
        margin: 0 auto 1rem;
        text-align: left;
    }

    .seleksi-main-grid {
        grid-template-columns: 1fr;
    }

    .seleksi-hero h1 {
        font-size: 1.75rem;
    }

    .seleksi-hero h2 {
        font-size: var(--font-size-title-mobile);
    }

    .seleksi-card {
        padding: 20px;
    }

    .seleksi-hero p,
    .seleksi-card .section-header p,
    .seleksi-content-skb p,
    .seleksi-content p {
        font-size: var(--general-font-mobile);
    }

    .section-header h3 {
        padding-bottom: 5px;
    }

    .seleksi-content-skb {
        align-items: flex-start;
        column-gap: 0px;
    }
}

/* ================================
   PG
================================ */
.passing-grade-section {
    background: var(--white-custom);
    padding: var(--desktop-padding);
}

.passing-grade-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
}

.passing-grade-intro h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: var(--color-darker);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.passing-grade-intro p {
    font-size: var(--general-font-desktop);
    color: #475569;
    line-height: 1.8;
}

.passing-grade-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.passing-grade-card {
    background: #1d77c7;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.passing-grade-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.passing-grade-card h3 {
    font-size: var(--general-font-desktop);
    font-weight: 700;
    margin: 0.5rem 0 0.25rem;
}

.passing-grade-card p {
    font-size: var(--general-font-desktop);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .passing-grade-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .passing-grade-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .passing-grade-section {
        padding: var(--mobile-padding);
    }

    .passing-grade-intro h2 {
        font-size: var(--font-size-title-mobile);
    }

    .passing-grade-card h3,
    .passing-grade-card p {
        font-size: var(--general-font-mobile);
    }
}

/* ================================
   Peserta Berhasil
================================ */
.failure-section {
    padding: 50px 80px;
}

.failure-wave-top {
    width: 100%;
    line-height: 0;
    position: relative;
    top: 1px;
}

.failure-wave-top svg {
    display: block;
    width: 100%;
    height: 120px;
}

.failure-container {
    margin: 0 auto;
}

.failure-top {
    display: grid;
    grid-template-columns: 530px 1fr;
    gap: 3rem;
    align-items: center;
}

.failure-image img {
    width: 100%;
    height: auto;
    display: block;
}

.failure-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 1rem;
}

.failure-reasons li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.failure-icon {
    width: 32px;
    height: 32px;
}

.failure-ban-icon {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 150px;
    height: 150px;
}

.failure-content h2,
.failure-card h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.failure-reasons {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 1.25rem;
}

.failure-reasons li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.75rem;
    align-items: flex-start;
}

.failure-icon {
    color: #ef4444;
    font-size: 1.5rem;
    line-height: 1;
}

.failure-reasons strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.failure-reasons p {
    margin: 0;
    font-size: var(--general-font-desktop);
    line-height: 1.5;
    color: #1f2933;
}

.failure-cta-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: white;
    background-color: var(--color-primary);
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
}

.failure-bottom {
    background: var(--color-primary);
    border-radius: 1.25rem;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    color: #ffffff;
}

.failure-bottom-left h3 {
    font-size: var(--font-size-title);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.failure-bottom-left p {
    font-size: var(--general-font-desktop);
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.failure-benefits {
    list-style: none;
    padding: 1.25rem;
    margin: 0;
    background: #ffffff;
    border-radius: 1rem;
    color: #0f172a;
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.failure-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.failure-benefits li::before {
    content: "✔";
    color: #ffffff;
    background-color: var(--primary-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .failure-top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .failure-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .failure-section {
        padding: 30px 30px;
    }

    .failure-top {
        display: block;
        margin-bottom: 20px;
    }

    .failure-image {
        display: none;
    }

    .failure-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .failure-content h2,
    .failure-card h2,
    .failure-bottom-left h3 {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .failure-reasons {
        display: grid;
        gap: 1rem;
    }

    .failure-reasons li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .failure-icon {
        width: 32px;
        height: 32px;
        background-color: var(--primary-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
    }

    .failure-reasons li img.failure-icon {
        width: 20px;
        height: 20px;
        margin: 5px 0;
    }

    .failure-cta-link {
        padding: 10px 20px;
        font-size: var(--general-font-mobile);
    }

    .failure-bottom {
        display: block;
        padding: 2rem 1rem;
        border-radius: 1rem;
    }

    .failure-benefits {
        padding: 1rem;
        font-size: var(--general-font-mobile);
        margin-top: 10px;
    }

    .failure-benefits li::before {
        content: "✔";
        color: #ffffff;
        background-color: var(--primary-green);
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    .failure-ban-icon {
        top: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
    }

    .failure-reasons strong,
    .failure-reasons p,
    .failure-bottom-left p {
        font-size: var(--general-font-mobile);
    }
}

/* ================================
  Lembaga
================================ */
.lembaga-section {
    padding: var(--desktop-padding);
    background-color: #ffffff;
    overflow: hidden;
}

.lembaga-container {
    margin: 0 auto;
}

.lembaga-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lembaga-header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: #0f172a;
}

.lembaga-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.lembaga-slider-track {
    display: flex;
    width: max-content;
    animation: lembaga-scroll 30s linear infinite;
}

.lembaga-slide {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lembaga-slide img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.lembaga-slide:hover img,
.lembaga-slide:focus-visible img {
    filter: grayscale(100%);
    opacity: 1;
    transform: scale(1.05);
}

.lembaga-slider-wrapper:hover .lembaga-slider-track {
    animation-play-state: paused;
}

@keyframes lembaga-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .lembaga-section {
        padding: 20px 0;
    }

    .lembaga-header h2 {
        font-size: 1.4rem;
    }

    .lembaga-slide {
        padding: 0 20px;
    }

    .lembaga-slide img {
        max-height: 50px;
    }

    .lembaga-slider-track {
        animation-duration: 20s;
    }
}

/* ================================
  Testimoni
================================ */
.testimoni-section {
    padding: 80px 80px 260px 80px;
    background-color: #ffffff;
    overflow: hidden;
}

.testimoni-container {
    margin: 0 auto;
    padding: 0 20px;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
}

.testimoni-content h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.testimoni-blue {
    color: var(--color-primary);
}

.testimoni-orange {
    color: var(--primary-yellow);
}

.testimoni-images {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 420px;
    margin: 0 auto;
}

.testimoni-group {
    position: absolute;
    max-width: 420px;
}

.testimoni-group img {
    width: 100%;
    height: auto;
    display: block;
}

.testimoni-group-1 {
    left: -210px;
    top: 120px;
    z-index: 1;
}

.testimoni-group-2 {
    left: 140px;
    top: -40px;
    z-index: 0;
}

@media (max-width: 991px) {
    .testimoni-section {
        padding: var(--desktop-padding);
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .testimoni-container {
        padding: 0 0px;
    }

    .testimoni-content h2 {
        font-size: 30px;
        text-align: left;
    }

    .testimoni-images {
        max-width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }

    .testimoni-group {
        position: static;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimoni-section {
        padding: var(--mobile-padding);
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .testimoni-content h2 {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .testimoni-images {
        position: relative;
        min-height: auto;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }

    .testimoni-group {
        position: static;
        max-width: 280px;
    }
}

/* ================================
  CTA Footer
================================ */
.section-cta-footer {
    position: relative;
    padding: 0 80px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-darker) 100%);
    overflow: hidden;
    overflow: hidden;
}

.section-cta-footer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 1;
}



.section-cta-footer__container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 9;
}

.section-cta-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
}

.section-cta-footer__title {
    font-size: 50px;
    font-weight: 900;
    width: 70%;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-cta-footer__subtitle {
    font-size: var(--general-font-desktop);
    line-height: 1.6;
    color: #e0f2fe;
    margin: 30px 0;
    width: 70%;
}

.section-cta-footer__button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: white;
    font-weight: 800;
    padding: 14px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.section-cta-footer__button:hover,
.section-cta-footer__button:focus-visible {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.section-cta-footer__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-cta-footer__image {
    width: 150%;
    height: auto;
    border-radius: 1rem;
    z-index: 2;
}

.section-cta-footer__image-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    z-index: 1;
    transform: translate(20px, -20px);
}

@media (max-width: 991px) {
    .section-cta-footer__title {
        font-size: 30px;
        width: 100%;
    }

    .section-cta-footer__subtitle {
        margin: 20px 0;
        width: 100%;
    }

    .section-cta-footer__container {
        padding: 0 0px;
    }
}

@media (max-width: 768px) {
    .section-cta-footer {
        padding: 30px 30px 0 30px;
        text-align: left;
    }

    .section-cta-footer__container {
        padding: 0;
    }

    .section-cta-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-cta-footer__title {
        font-size: var(--font-size-title-mobile);
    }

    .section-cta-footer__subtitle {
        font-size: var(--general-font-mobile);
        margin: 20px 0;
    }

    .section-cta-footer__image {
        width: 100%;
    }

    .section-cta-footer__image-wrapper::before {
        transform: translate(10px, -10px);
    }
}

/* ================================
  FAQ
================================ */
.section-faq {
    padding: var(--desktop-padding);
    background-color: white;
}

.section-faq__container {
    margin: 0 auto;
}

.section-faq__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-faq__title {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: var(--color-darker);
    margin-bottom: 0.5rem;
}

.section-faq__subtitle {
    font-size: var(--general-font-desktop);
    color: var(--color-darker);
    font-weight: 600;
}

.section-faq__list {
    display: grid;
    gap: 1rem;
}

.section-faq__item {
    background-color: var(--secondary-blue);
    border-radius: 12px;
    overflow: hidden;
}

.section-faq__question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--default-font);
}

.section-faq__question:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.section-faq__icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.section-faq__question-text {
    font-size: var(--general-font-desktop);
    font-weight: 700;
    color: var(--color-darker);
}

.section-faq__chevron {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-darker);
    transition: transform 0.25s ease;
}

.section-faq__answer {
    background-color: var(--white-custom);
    border-top: 1px solid var(--white-custom);
}

.section-faq__answer-inner {
    padding: 10px 35px 10px 70px;
    font-size: var(--general-font-desktop);
    line-height: 1.7;
    color: #1f2933;
    background-color: var(--white-custom);
}

.section-faq__answer-inner ul,
.section-faq__answer-inner ol {
    margin: 12px 0;
    padding-left: 20px;
}

.section-faq__answer-inner li {
    margin-bottom: 8px;
    padding-left: 0;
}

.section-faq__item.is-open .section-faq__chevron {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .section-faq {
        padding: var(--mobile-padding);
    }

    .section-faq__title {
        font-size: var(--font-size-title-mobile);
    }

    .section-faq__question-text {
        font-size: var(--general-font-mobile);
    }

    .section-faq__answer-inner {
        font-size: var(--general-font-mobile);
    }
}

/* ================================
  Media Massa
================================ */
.section-media-massa {
    padding: var(--desktop-padding);
    background-color: #ffffff;
}

.section-media-massa__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-media-massa__header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-media-massa__title {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: #0f172a;
}

.section-media-massa__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
}

.section-media-massa__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-media-massa__image {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    transition: all 0.25s ease;
}

.section-media-massa__image:hover,
.section-media-massa__image:focus-visible {
    filter: grayscale(100%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-media-massa {
        padding: var(--mobile-padding);
    }

    .section-media-massa__container {
        padding: 0 0px;
    }

    .section-media-massa__title {
        font-size: var(--font-size-title-mobile);
    }

    .section-media-massa__grid {
        gap: 10px 20px;
    }

    .section-media-massa__image {
        max-height: 30px;
    }
}

/* ===============================
   SECTION TIPS & MODUL PRODUK
================================ */

.section-tips-modul {
    padding: var(--desktop-padding);
    background: #f3f8fd;
}

.section-tips-modul__banner {
    margin: 0 auto 30px;
}

.section-tips-modul__banner-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.section-tips-modul__modul-header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.section-tips-modul__modul-header h2 {
    font-size: var(--font-size-title);
    font-weight: 700;
    color: #ffffff;
    background: var(--color-primary);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
}

.section-tips-modul__modul-title {
    font-size: var(--font-size-title);
}

.section-product-container {
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 20px;
}

.section-tips-modul__grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.section-tips-modul__card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.section-tips-modul__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.section-tips-modul__figure {
    padding: 16px;
}

.section-tips-modul__card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.section-tips-modul__card-body {
    padding: 16px 18px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.section-tips-modul__card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 10px;
    min-height: 40px;
}

.section-tips-modul__price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 4px;
}

.section-tips-modul__sold {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
}

.section-tips-modul__button {
    margin-top: auto;
    display: block;
    text-align: center;
    background: #ff6b00;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.section-tips-modul__button:hover {
    background: #e85d00;
    transform: translateY(-1px);
}

.section-tips-modul__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
}

@media (max-width: 991px) {
    .section-tips-modul__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-tips-modul {
        padding: var(--mobile-padding);
    }

    .section-tips-modul__card-image {
        height: 220px;
    }

    .section-tips-modul__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-tips-modul__modul-title {
        font-size: var(--font-size-title-mobile);
    }
}

/* ================================
   TRYOUT HERO SECTION
================================ */
.tryout-page-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
}

.tryout-page-bg {
    width: 100%;
    height: auto;
    display: block;
}

.tryout-page-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.55); */
    z-index: 1;
}

.tryout-page-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    margin: 0 auto;
    padding: var(--desktop-padding);
    z-index: 2;
}

.tryout-page-content {
    max-width: 700px;
}

.tryout-page-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tryout-page-subtitle {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffb400;
}

.tryout-page-description,
.tryout-page-desc {
    font-size: var(--general-font-desktop);
    line-height: 1.7;
    margin-bottom: 30px;
}

.tryout-page-subdesc {
    margin-top: 10px;
    opacity: 0.9;
}

.tryout-page-btn-primary {
    background: #ff9800;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    display: inline-block;
    transition: 0.3s ease;
}

.tryout-page-btn-primary:hover {
    background: #e68900;
}

.tryout-page-btn-secondary {
    background: #fff;
    color: #1c6bb2;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.tryout-page-btn-secondary:hover {
    background: #f1f1f1;
}

.tryout-page-form-wrapper,
.tryout-page-form {
    background: #ffffff;
    color: #222;
    padding: 35px;
    border-radius: 18px;
    width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tryout-page-form-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1c6bb2;
}

.tryout-page-input,
.tryout-page-form input,
.tryout-page-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: var(--default-font);
}

.tryout-page-btn-submit,
.tryout-page-form button {
    width: 100%;
    background: #ff9800;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--default-font);
}

.tryout-page-btn-submit:hover,
.tryout-page-form button:hover {
    background: #e68900;
}

@media (max-width: 992px) {

    .tryout-page-hero {
        padding: var(--desktop-padding);
        background: var(--color-primary);
    }

    .tryout-page-bg {
        display: none;
    }

    .tryout-page-overlay {
        display: none;
    }

    .tryout-page-container {
        position: relative;
        inset: unset;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 40px;
        padding: 0;
    }

    .tryout-page-content {
        max-width: 100%;
    }

    .tryout-page-title {
        font-size: 32px;
    }

    .tryout-page-subtitle {
        font-size: 20px;
    }

    .tryout-page-description,
    .tryout-page-desc {
        font-size: 15px;
    }

    .tryout-page-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .tryout-page-btn-primary,
    .tryout-page-btn-secondary {
        width: 100%;
        margin-right: 0;
    }

    .tryout-page-form-wrapper,
    .tryout-page-form {
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }
}

@media (max-width: 768px) {

    .tryout-page-hero {
        padding: var(--mobile-padding);
    }

    .tryout-page-title {
        font-size: var(--font-size-title-mobile);
        text-align: left;
    }

    .tryout-page-subtitle {
        font-size: var(--general-font-mobile);
        text-align: left;
    }

    .tryout-page-description,
    .tryout-page-desc {
        font-size: var(--general-font-mobile);
        text-align: left;
    }
}

/* ===================================
   SECTION ANOTHER PROGRAM
=================================== */
.section-another-program {
    padding: var(--desktop-padding);
}

.section-another-program__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-another-program__header h2 {
    font-size: var(--font-size-title);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-another-program__header p {
    font-size: var(--general-font-desktop);
    color: #3c5a7a;
}

.section-another-program__grid {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.section-another-program__card {
    position: relative;
    border-radius: 24px;
    padding: 70px 40px 45px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-darker), var(--color-primary));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    overflow: visible;
    transition: transform .3s ease, box-shadow .3s ease;
}

.section-another-program__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.section-another-program__image-wrapper {
    width: 130px;
    height: 130px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -110px auto 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-another-program__image {
    max-width: 80px;
    height: auto;
}

.section-another-program__title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-another-program__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.section-another-program__benefits li {
    margin-bottom: 14px;
    font-size: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
}

.section-another-program__benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    background-color: var(--primary-green);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-another-program__price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.section-another-program__button {
    display: block;
    text-align: center;
    background: var(--primary-orange);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.section-another-program__button:hover {
    background: var(--primary-yellow);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .section-another-program__grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .section-another-program__header h2 {
        font-size: 32px;
    }

    .section-another-program__card {
        padding: 60px 30px 40px;
    }
}

@media (max-width: 768px) {
    .section-another-program {
        padding: var(--mobile-padding);
    }

    .section-another-program__header h2 {
        font-size: var(--font-size-title-mobile);
    }

    .section-another-program__header p {
        font-size: var(--general-font-mobile);
        color: #3c5a7a;
    }
}

/* ===================================
   PAKET HEMAT PROMO
=================================== */
.section-banner-cta {
    padding: var(--desktop-padding);
    background: #ffffff;
    text-align: center;
}

.section-banner-cta__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1b4f9c;
}

.section-banner-cta__link {
    display: block;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.section-banner-cta__link:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.section-banner-cta__image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .section-banner-cta {
        padding: var(--mobile-padding);
    }
}

/* ===================================
   JANGKAUAN KOTA
=================================== */
.section-jangkauan {
    padding: var(--desktop-padding);
    background: #ffffff;
}

.section-jangkauan__title {
    text-align: center;
    font-size: var(--font-size-title);
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-darker);
}

.section-jangkauan__wrapper {
    background: #f4f8ff;
    border: 1px solid #dbe7ff;
    border-radius: 16px;
    padding: 40px;
}

.section-jangkauan__list {
    columns: 4;
    column-gap: 40px;
    padding-left: 20px;
}

.section-jangkauan__item {
    margin-bottom: 10px;
    break-inside: avoid;
}

.section-jangkauan__item a {
    text-decoration: none;
    color: var(--color-primary);
    font-size: var(--general-font-desktop);
    transition: .2s ease;
}

.section-jangkauan__item a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .section-jangkauan__list {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .section-jangkauan {
        padding: var(--mobile-padding);
    }

    .section-jangkauan__wrapper {
        padding: 25px;
    }

    .section-jangkauan__title {
        font-size: var(--font-size-title-mobile);
        margin-bottom: 20px;
    }

    .section-jangkauan__item a {
        font-size: var(--general-font-mobile);
    }
}

/* ================================
   Program Materi
================================ */
.programs-materi-wrapper {
    padding: var(--desktop-padding);
}

.programs-materi-container {
    position: relative;
    margin: auto;
}

.programs-materi-top {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 16px;
}

.programs-materi-card {
    background: var(--color-primary);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.programs-materi-card h2 {
    font-size: var(--font-size-title);
    margin-bottom: 10px;
}

.programs-materi-card p {
    font-size: var(--general-font-desktop);
    line-height: 1.6;
}

.programs-materi-btn {
    display: inline-block;
    margin-top: 12px;
    background: var(--primary-yellow);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.programs-materi-orange {
    background: var(--primary-yellow);
    border-radius: 16px;
    min-height: 220px;
}

.programs-materi-bottom {
    background: var(--color-primary);
    margin-top: 16px;
    padding: 24px;
    border-radius: 16px;
    color: #fff;
}

.programs-materi-bottom h3 {
    margin-bottom: 16px;
    font-size: var(--font-size-title);
}

.programs-materi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}

.programs-materi-item {
    position: relative;
    padding-left: 18px;
    font-size: var(--general-font-desktop);
}

.programs-materi-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

.programs-materi-model {
    position: absolute;
    right: 6%;
    top: 58px;
    z-index: 3;
}

.programs-materi-model img {
    width: 350px;
    height: auto;
}

.programs-materi-footer {
    margin-top: 16px;
}

.programs-materi-btn-full {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-yellow);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: var(--general-font-desktop);
    transition: 0.2s ease;
}

.programs-materi-btn-full:hover {
    background: #e6952f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .programs-materi-wrapper {
        padding: var(--mobile-padding);
    }

    .programs-materi-orange {
        display: none;
    }

    .programs-materi-top {
        grid-template-columns: 1fr;
    }

    .programs-materi-model {
        display: none;
    }

    .programs-materi-grid {
        grid-template-columns: 1fr;
    }

    .programs-materi-card h2 {
        font-size: var(--font-size-title-mobile);
        margin-bottom: 10px;
    }

    .programs-materi-card p {
        font-size: var(--general-font-mobile);
        line-height: 1.6;
    }

    .programs-materi-bottom h3 {
        margin-bottom: 16px;
        font-size: var(--font-size-title-mobile);
    }

    .programs-materi-item {
        position: relative;
        padding-left: 18px;
        font-size: var(--general-font-mobile);
    }
}