.site-header {
    position: relative;
    color: var(--color-white);
    background: var(--color-black);
}

.main-nav {
    position: fixed;
    top: 36px;
    left: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    width: min(664px, calc(100% - 48px));
    height: 65px;
    padding: 0 15px;
    color: var(--color-white);
    background: rgba(70, 70, 70, 0.94);
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
}

.brand-logo {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--color-white);
    border-radius: 8px;
}

.brand-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 26px;
    margin: 0 0 0 76px;
    padding: 0;
    list-style: none;
}

.nav-menu a,
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 39px;
    padding: 0 15px;
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    font-family: inherit;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle.is-active {
    background: var(--color-green);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 11px);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 221px;
    gap: 0;
    margin: 0;
    padding: 12px 17px;
    list-style: none;
    color: var(--color-black);
    background: var(--color-white);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dropdown-menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 43px;
    padding: 0 10px;
    color: var(--color-black);
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border-radius: 6px;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.is-active {
    color: var(--color-white);
    background: var(--color-green);
}

.facility-dropdown-menu {
    min-width: 221px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-menu .join-link {
    display: inline-flex;
    align-items: center;
    min-height: 39px;
    padding: 0 18px;
    background: var(--color-green);
    border-radius: 9px;
    transition: background 180ms ease, color 180ms ease;
}

.nav-menu .join-link:hover,
.nav-menu .join-link:focus-visible {
    background: #3e824d;
}

.nav-toggle {
    display: none;
}

.mobile-nav-footer {
    display: none;
}

.mobile-menu-brand {
    display: none;
}

.mobile-brand-copy {
    display: none;
}

@media (min-width: 769px) {
    .mobile-menu-list {
        display: flex;
        flex: 1;
    }

    .mobile-menu-list > ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        gap: 26px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
}

.hero-section {
    position: relative;
    min-height: 967px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.82) 70%, var(--color-black) 100%), url("../../assets/images/landing-page-back.webp") center 80% / cover no-repeat;
    border-top: 21px solid var(--color-black);
    border-left: 21px solid var(--color-black);
    border-right: 21px solid var(--color-black);
    border-top-left-radius: 39px;
    border-top-right-radius: 39px;
}

.hero-content {
    position: absolute;
    left: 75px;
    bottom: 27%;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 39px;
    padding: 8px 16px;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 700;
    background: var(--color-white);
    border-radius: 9px;
}

.hero-content h1 {
    margin: 0 0 25px;
    color: var(--color-white);
    font-size: 66px;
    font-weight: 800;
    line-height: 1.06;
}

.hero-description {
    margin: 0;
    max-width: 690px;
    color: var(--color-white);
    font-size: 27px;
    line-height: 1.02;
}

.clipped-white,
.clipped-green,
.clipped-black {
    position: relative;
}

.about-section {
    margin-top: calc(var(--section-cut-height) * -1);
    padding: calc(50px + var(--section-cut-height)) 0 147px;
    background: var(--color-white);
    clip-path: polygon(0 0, var(--section-cut-edge) 0, var(--section-cut-width) var(--section-cut-height), 100% var(--section-cut-height), 100% 100%, 0 100%);
}

.about-section h2,
.campus-section h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    line-height: 0.98;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    margin-top: 112px;
}

.stat-item {
    padding-left: 23px;
    border-left: 3px solid #909090;
}

.stat-item strong {
    display: block;
    margin-bottom: 11px;
    font-size: 64px;
    font-weight: 800;
    line-height: 0.9;
}

.stat-item p {
    margin: 0;
    color: #858585;
    font-size: 19px;
    line-height: 1.17;
}

.reasons-section {
    margin-top: calc(var(--section-cut-height) * -1);
    padding: calc(50px + var(--section-cut-height)) 0 50px;
    color: var(--color-white);
    background: var(--color-green);
    clip-path: polygon(0 0, var(--section-cut-edge) 0, var(--section-cut-width) var(--section-cut-height), 100% var(--section-cut-height), 100% 100%, 0 100%);
}

.reasons-section h2,
.program-section h2 {
    margin: 0;
    font-size: 37px;
    font-weight: 800;
    line-height: 0.98;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 33px;
    margin-top: 79px;
}

.reason-card {
    min-width: 0;
}

.reason-number {
    display: block;
    margin-bottom: 26px;
    font-size: 66px;
    font-weight: 800;
    line-height: 1;
}

.reason-card img {
    width: 100%;
    aspect-ratio: 305 / 323;
    object-fit: cover;
    border-radius: 3px;
}

.reason-card h3 {
    margin: 32px 0 19px;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
}

.reason-card p {
    min-height: 70px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 1.65;
}

.program-section {
    position: relative;
    --program-primary: #35cfd0;
    --program-secondary: #ffd154;
    padding: calc(122px + var(--section-cut-flat-height)) 0 158px;
    color: var(--color-white);
    background: var(--color-black);
}

.program-section[data-active-theme="sd"] {
    --program-primary: #ffd154;
    --program-secondary: #ffe596;
}

.program-section[data-active-theme="smp"] {
    --program-primary: #4aa35e;
    --program-secondary: #8dd69a;
}

.program-section[data-active-theme="sma"] {
    --program-primary: #e84f4f;
    --program-secondary: #ff9a9a;
}

.program-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(var(--section-band-height) + 2px);
    background: var(--color-green);
    clip-path: polygon(0 0, 100% 0, 100% var(--section-band-height), var(--section-cut-width) var(--section-band-height), var(--section-cut-edge) var(--section-cut-flat-height), 0 var(--section-cut-flat-height));
    pointer-events: none;
}

.program-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.program-controls {
    display: none;
    gap: 12px;
}

.program-control {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--program-primary);
    font-size: 24px;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--program-primary) 82%, transparent);
    border-radius: 999px;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.program-control:hover,
.program-control:focus-visible {
    color: var(--color-white);
    border-color: var(--color-white);
}

.program-control:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.program-slide-timeline {
    display: grid;
    grid-template-columns: 48px minmax(180px, 1fr);
    grid-template-rows: 56px 18px;
    align-items: end;
    column-gap: 28px;
    margin: 84px 68px 110px 8px;
}

.timeline-icon {
    display: inline-flex;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--program-primary);
    font-size: 48px;
    line-height: 1;
    transition: color 180ms ease;
}

.timeline-icon:first-child {
    grid-column: 1;
}

.timeline-bar {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    height: 4px;
    margin: 0;
    overflow: visible;
    border-radius: 999px;
    background: transparent;
}

.timeline-line {
    position: absolute;
    display: block;
    border-radius: inherit;
}

.timeline-line-track {
    display: none;
}

.timeline-line-progress::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    background: var(--color-black);
    border: 4px solid currentColor;
    border-radius: 999px;
    transform: translateY(-50%);
}

.timeline-line-progress::before {
    left: 0;
    color: var(--program-primary);
}

.timeline-line-progress {
    top: 0;
    left: 0;
    width: var(--program-progress-width, 84%);
    height: 100%;
    background: var(--program-primary);
    transition: width 220ms ease, background 180ms ease;
}

.program-carousel {
    overflow: hidden;
}

.program-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    padding-right: 0;
    touch-action: pan-y;
}

.program-track::-webkit-scrollbar {
    display: none;
}

.program-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.program-feature {
    display: block;
    overflow: hidden;
}

.program-slide-body {
    display: grid;
    grid-template-columns: minmax(360px, 566px) minmax(330px, 1fr);
    align-items: center;
    gap: 64px;
}

.program-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.program-main-image {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.program-copy {
    align-self: start;
    padding-top: 0;
}

.age-badge {
    display: inline-flex;
    margin-bottom: 19px;
    padding: 9px 17px;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 700;
    background: var(--color-white);
    border-radius: 8px;
}

.program-copy h3 {
    margin: 0 0 21px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.program-copy p {
    margin: 0 0 38px;
    max-width: 560px;
    font-size: 22px;
    line-height: 1.25;
}

.program-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 30px;
    margin: 38px auto 0;
}

.program-carousel-arrow {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: var(--program-primary);
    font-size: 30px;
    line-height: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 180ms ease, opacity 180ms ease;
}

.program-carousel-arrow:hover,
.program-carousel-arrow:focus-visible {
    color: var(--color-white);
}

.program-carousel-arrow:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.program-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--program-primary);
    border-radius: 999px;
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease, border-color 180ms ease;
}

.program-dot.is-active {
    width: 42px;
    background: var(--program-primary);
}

.campus-section {
    margin-top: calc(var(--section-cut-height) * -1);
    padding: calc(50px + var(--section-cut-height)) 0 118px;
    background: var(--color-white);
    clip-path: polygon(0 0, var(--section-cut-edge) 0, var(--section-cut-width) var(--section-cut-height), 100% var(--section-cut-height), 100% 100%, 0 100%);
    overflow: visible;
    z-index: 2;
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 84px;
}

.campus-card {
    position: relative;
    overflow: hidden;
    min-height: 246px;
    border-radius: 4px;
}

.campus-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.74) 100%);
}

.campus-card img {
    width: 100%;
    height: 246px;
    object-fit: cover;
}

.campus-overlay {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 12px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--color-white);
}

.campus-overlay h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
}

.cta-section {
    position: relative;
    margin-top: -1px;
    min-height: 700px;
    display: grid;
    place-items: center;
    padding-top: var(--section-band-height);
    color: var(--color-white);
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)), url("../../assets/images/potensi.webp") center 42% / cover no-repeat;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: calc(var(--section-band-height) + 2px);
    background: var(--color-white);
    clip-path: polygon(0 0, 100% 0, 100% var(--section-band-height), var(--section-cut-width) var(--section-band-height), var(--section-cut-edge) var(--section-cut-flat-height), 0 var(--section-cut-flat-height));
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    width: min(650px, calc(100% - 40px));
    margin-top: 20px;
}

.cta-content h2 {
    margin: 0 0 33px;
    font-size: 36px;
    font-weight: 800;
    line-height: 0.98;
}

.cta-content p {
    margin: 0 auto 29px;
    font-size: 21px;
    line-height: 1.35;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.site-footer {
    padding: 58px 0 92px;
    color: var(--color-white);
    background: var(--color-footer);
}

.footer-container {
    display: grid;
    grid-template-columns: minmax(360px, 1.35fr) repeat(3, 1fr);
    gap: 72px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 19px;
}

.footer-logo-row img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    background: var(--color-white);
    border-radius: 4px;
}

.footer-logo-row h2,
.footer-column h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
}

.footer-brand address {
    margin: 0 0 38px;
    color: #999da3;
    font-size: 17px;
    line-height: 1.02;
    font-style: normal;
}

.social-links {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links a {
    color: #9aa0a7;
    font-size: 13px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-column a {
    color: #9aa0a7;
    font-size: 16px;
}

@media (max-width: 1180px) {
    .section-container,
    .footer-container {
        width: min(100% - 56px, var(--container-width));
    }

    .stats-grid,
    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-feature {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.mobile-nav-open {
        overflow: hidden;
    }

    body.mobile-nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 19;
        background: rgba(0, 0, 0, 0.58);
        opacity: 1;
        transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.mobile-nav-closing::before {
        opacity: 0;
    }

    .main-nav {
        top: 0;
        left: 0;
        width: 100%;
        height: 46px;
        justify-content: space-between;
        padding: 0 12px;
        color: #111827;
        background: var(--color-white);
        border-radius: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        backdrop-filter: none;
        transform: none;
        transition: none;
    }

    .main-nav .brand-logo {
        display: inline-flex;
        flex: 0 1 auto;
        width: auto;
        height: 46px;
        gap: 7px;
        place-items: initial;
        align-items: center;
        color: #111827;
        background: transparent;
        border-radius: 0;
    }

    .main-nav .brand-logo img {
        width: 19px;
        height: 19px;
    }

    .main-nav .brand-logo::after {
        content: "Al-Azhar Kelapa Gading";
        font-size: 9px;
        font-weight: 800;
        line-height: 1;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 28px;
        height: 28px;
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .nav-toggle span:not(.screen-reader-only) {
        width: 15px;
        height: 2px;
        margin-left: 0;
        background: #111827;
        border-radius: 999px;
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .main-nav.is-open {
        top: 0;
        right: 0;
        left: auto;
        z-index: 40;
        display: flex;
        align-items: center;
        width: min(194px, 100vw);
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding: 70px 8px 17px;
        border-radius: 0;
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.24);
        transform: translateX(0);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
        animation: mobileDrawerIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .main-nav.is-open.is-closing {
        transform: translateX(100%);
        opacity: 0.96;
        animation: none;
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .main-nav.is-open::before {
        content: "";
        position: absolute;
        top: 52px;
        right: 0;
        left: 0;
        height: 1px;
        background: #ececec;
    }

    .main-nav.is-open .brand-logo {
        height: auto;
        margin: 0 0 30px;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }

    .main-nav.is-open .brand-logo img {
        width: 36px;
        height: 36px;
        padding: 6px;
        background: #f7faf8;
        border-radius: 5px;
    }

    .main-nav.is-open .brand-logo::after {
        display: none;
    }

    .main-nav.is-open .mobile-brand-copy {
        display: grid;
        gap: 3px;
        justify-items: center;
    }

    .main-nav.is-open .mobile-brand-copy strong {
        color: var(--color-green);
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
    }

    .main-nav.is-open .mobile-brand-copy small {
        color: #8b8b8b;
        font-size: 8px;
        font-weight: 600;
        line-height: 1;
    }

    .main-nav.is-open .nav-toggle {
        position: absolute;
        top: 17px;
        right: 14px;
        width: 20px;
        height: 20px;
        background: #f1f1f1;
        border-radius: 999px;
        transition: background 180ms ease, transform 240ms ease;
    }

    .main-nav.is-open .nav-toggle:hover {
        background: #e8e8e8;
        transform: rotate(90deg);
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only) {
        width: 10px;
        height: 1.5px;
        background: #555;
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only):nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only):nth-child(2) {
        opacity: 0;
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only):nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .nav-menu {
        position: static;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
        color: #111827;
        background: transparent;
        border-radius: 0;
    }

    .nav-menu a,
    .nav-dropdown-toggle {
        width: 100%;
        min-height: 36px;
        justify-content: flex-start;
        gap: 12px;
        padding: 0 12px 0 14px;
        color: #111827;
        font-size: 12px;
        font-weight: 600;
        border-radius: 0;
        background: transparent;
        transition: color 180ms ease, background 180ms ease;
    }

    .nav-menu > li {
        margin: 0;
        padding: 0;
        
    }

    .nav-menu > li > a:not(.join-link)::before,
    .nav-dropdown-toggle::before {
        order: 0;
        display: grid;
        width: 18px;
        place-items: center;
        color: #7b8794;
        font-family: "Font Awesome 6 Free";
        font-size: 13px;
        font-weight: 900;
        line-height: 1;
    }

    .nav-menu > li:first-child > a::before {
        content: "\f015";
    }

    .mobile-menu-brand + li > a::before {
        content: "\f015";
    }

    .nav-menu > li:first-child > a {
        color: #16813c;
        background: #e9f6ec;
    }

    .mobile-menu-brand + li > a {
        color: #16813c;
        background: #e9f6ec;
    }

    .nav-menu > li:first-child > a,
    .nav-dropdown-toggle,
    .nav-menu .join-link {
        font-size: 0;
    }

    .nav-menu > li:first-child > a::after,
    .nav-dropdown-toggle::after,
    .nav-menu .join-link::after {
        order: 1;
        font-size: 12px;
        line-height: 1;
    }

    .nav-menu > li:first-child > a::after {
        content: "Beranda";
    }

    .mobile-menu-brand + li > a::after {
        content: "Beranda";
    }

    .nav-dropdown:not(.nav-dropdown-facility) .nav-dropdown-toggle::after {
        content: "Profil";
    }

    .nav-dropdown-facility .nav-dropdown-toggle::after {
        content: "Fasilitas";
    }

    .nav-menu .join-link::after {
        content: "Gabung Alazka";
    }

    .nav-dropdown:nth-of-type(2) .nav-dropdown-toggle::before {
        content: "\f007";
    }

    .nav-dropdown-facility .nav-dropdown-toggle::before {
        content: "\f1ad";
    }

    .nav-dropdown-toggle .chevron {
        order: 2;
        width: 7px;
        height: 7px;
        margin-left: auto;
        border-right-color: #9aa0a7;
        border-bottom-color: #9aa0a7;
        transform: rotate(-45deg);
        transition: transform 220ms ease, border-color 180ms ease;
    }

    .nav-dropdown.is-open .nav-dropdown-toggle .chevron {
        transform: rotate(45deg) translateY(-2px);
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible,
    .nav-menu a.is-active,
    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle:focus-visible,
    .nav-dropdown-toggle.is-active {
        color: #16813c;
        background: #e9f6ec;
    }

    .nav-dropdown {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .dropdown-menu {
        position: static;
        display: grid;
        min-width: 0;
        max-height: 0;
        margin: 0;
        padding: 0 0 4px 44px;
        color: #111827;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: max-height 240ms ease, opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
    }

    .dropdown-menu li:not(:last-child) {
        border-bottom: 0;
    }

    .dropdown-menu a {
        min-height: 22px;
        padding: 0 6px;
        color: #4b5563;
        font-size: 9px;
        font-weight: 600;
        border-radius: 0;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible,
    .dropdown-menu a.is-active {
        color: #16813c;
        background: #e9f6ec;
    }

    .nav-dropdown.is-open .dropdown-menu {
        max-height: 150px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav.is-open .nav-menu {
        display: flex;
    }

    .join-link {
        justify-content: center;
    }

    .nav-menu .join-link {
        justify-content: center;
        width: calc(100% - 16px);
        min-height: 34px;
        margin: 26px 8px 0;
        padding: 0 16px;
        color: var(--color-white);
        font-weight: 800;
        background: #0f6b2b;
        border-radius: 4px;
    }

    .nav-menu .join-link:hover,
    .nav-menu .join-link:focus-visible {
        color: var(--color-white);
        background: #0a5d24;
    }

    .mobile-nav-footer {
        display: none;
    }

    .main-nav.is-open .mobile-nav-footer {
        display: grid;
        width: 100%;
        gap: 20px;
        margin-top: auto;
        padding-top: 34px;
        justify-items: center;
        color: #9aa0a7;
        font-size: 9px;
        font-weight: 500;
    }

    .mobile-nav-socials {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        justify-items: center;
    }

    .mobile-nav-socials a {
        display: grid;
        width: 28px;
        height: 28px;
        min-height: 0;
        place-items: center;
        padding: 0;
        color: var(--color-green);
        font-size: 13px;
        background: #e9f6ec;
        border-radius: 6px;
    }

    .main-nav.is-open,
    .main-nav.is-open.is-closing {
        top: 0;
        left: 0;
        right: auto;
        z-index: 20;
        width: 100%;
        height: 46px;
        min-height: 46px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    .main-nav.is-open::before {
        display: none;
    }

    .main-nav.is-open .brand-logo,
    .main-nav.is-open.is-closing .brand-logo {
        height: 46px;
        margin: 0;
        flex-direction: row;
        gap: 7px;
        align-items: center;
        text-align: left;
    }

    .main-nav.is-open .brand-logo img,
    .main-nav.is-open.is-closing .brand-logo img {
        width: 19px;
        height: 19px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .main-nav.is-open .brand-logo::after,
    .main-nav.is-open.is-closing .brand-logo::after {
        display: inline;
    }

    .main-nav.is-open .mobile-brand-copy {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 40;
        display: flex;
        width: min(194px, 100vw);
        min-height: 100vh;
        padding: 70px 8px 17px;
        background: var(--color-white);
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.24);
        pointer-events: none;
        opacity: 0.98;
        transform: translateX(100%);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-menu::before {
        content: "";
        position: absolute;
        top: 52px;
        right: 0;
        left: 0;
        height: 1px;
        background: #ececec;
    }

    .main-nav.is-open .nav-menu {
        pointer-events: auto;
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.is-open.is-closing .nav-menu {
        pointer-events: none;
        opacity: 0.98;
        transform: translateX(100%);
    }

    .mobile-menu-brand {
        display: grid;
        gap: 5px;
        justify-items: center;
        margin: 0 0 30px;
        text-align: center;
    }

    .mobile-menu-brand img {
        width: 36px;
        height: 36px;
        padding: 6px;
        object-fit: contain;
        background: #f7faf8;
        border-radius: 5px;
    }

    .mobile-menu-brand strong {
        color: var(--color-green);
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
    }

    .mobile-menu-brand small {
        color: #8b8b8b;
        font-size: 8px;
        font-weight: 600;
        line-height: 1;
    }

    .main-nav.is-open .nav-toggle {
        position: fixed;
        top: 17px;
        right: 14px;
        z-index: 45;
    }

    .main-nav.is-open.is-closing .nav-toggle {
        position: static;
        width: 28px;
        height: 28px;
        background: transparent;
        border-radius: 0;
        transform: none;
    }

    .main-nav.is-open.is-closing .nav-toggle span:not(.screen-reader-only) {
        width: 15px;
        height: 2px;
        background: #111827;
        opacity: 1;
        transform: none;
    }

    .main-nav.is-open.is-closing .nav-toggle span:not(.screen-reader-only):nth-child(1),
    .main-nav.is-open.is-closing .nav-toggle span:not(.screen-reader-only):nth-child(2),
    .main-nav.is-open.is-closing .nav-toggle span:not(.screen-reader-only):nth-child(3) {
        transform: none;
    }

    .main-nav.is-open .mobile-nav-footer {
        display: grid;
    }

    .nav-menu {
        width: min(342px, 100vw);
        padding: 0 0 28px;
    }

    .nav-menu::before {
        top: 112px;
    }

    .mobile-menu-brand {
        min-height: 112px;
        margin: 0;
        padding: 28px 24px 22px;
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-menu-brand img {
        width: 42px;
        height: 42px;
        padding: 7px;
    }

    .mobile-menu-brand strong {
        font-size: 22px;
        line-height: 1.05;
    }

    .mobile-menu-brand small {
        font-size: 14px;
    }

    .nav-menu a,
    .nav-dropdown-toggle {
        min-height: 70px;
        gap: 22px;
        padding: 0 34px;
        color: #262626;
        font-size: 0;
        font-weight: 600;
    }

    .nav-menu > li > a:not(.join-link)::before,
    .nav-dropdown-toggle::before {
        width: 28px;
        color: #7d7d7d;
        font-family: "remixicon";
        font-size: 29px;
        font-weight: 400;
    }

    .nav-menu > li:first-child > a::before,
    .mobile-menu-brand + li > a::before {
        content: "\ee2b";
    }

    .nav-dropdown:not(.nav-dropdown-facility) .nav-dropdown-toggle::before {
        content: "\f059";
    }

    .nav-dropdown-facility .nav-dropdown-toggle::before {
        content: "\eb96";
    }

    .nav-menu > li:first-child > a,
    .mobile-menu-brand + li > a {
        position: relative;
        color: #2d8a3d;
        background: #e7f5e8;
    }

    .nav-menu > li:first-child > a::before,
    .mobile-menu-brand + li > a::before {
        color: #2d8a3d;
    }

    .nav-menu > li:first-child > a::after,
    .nav-dropdown-toggle::after,
    .nav-menu .join-link::after,
    .mobile-menu-brand + li > a::after {
        font-size: 22px;
        line-height: 1;
    }

    .nav-menu > li:first-child > a::before,
    .mobile-menu-brand + li > a::before {
        z-index: 1;
    }

    .nav-menu > li:first-child > a::after,
    .mobile-menu-brand + li > a::after {
        z-index: 1;
    }

    .mobile-menu-brand + li > a {
        overflow: hidden;
    }

    .mobile-menu-brand + li > a::before {
        position: relative;
    }

    .mobile-menu-brand + li > a::after {
        position: relative;
    }

    .mobile-menu-brand + li > a:hover,
    .mobile-menu-brand + li > a:focus-visible {
        color: #2d8a3d;
        background: #e7f5e8;
    }

    .mobile-menu-brand + li {
        position: relative;
    }

    .mobile-menu-brand + li::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 5px;
        background: #2f9745;
    }

    .nav-dropdown-toggle .chevron {
        width: 11px;
        height: 11px;
        border-right-width: 3px;
        border-bottom-width: 3px;
        border-right-color: #777;
        border-bottom-color: #777;
    }

    .dropdown-menu {
        padding: 0 0 8px 84px;
    }

    .dropdown-menu a {
        min-height: 28px;
        padding: 0;
        font-size: 12px;
    }

    .nav-menu .join-link {
        width: calc(100% - 30px);
        min-height: 59px;
        margin: 36px 15px 0;
        color: var(--color-white);
        background: #0f5f26;
        border-radius: 9px;
    }

    .nav-menu .join-link::after {
        font-size: 22px;
        font-weight: 500;
    }

    .main-nav.is-open .mobile-nav-footer {
        gap: 29px;
        margin-top: auto;
        padding: 0 30px;
    }

    .mobile-nav-socials {
        display: flex;
        justify-content: space-between;
    }

    .mobile-nav-socials a {
        width: 50px;
        height: 50px;
        color: #26883a;
        font-size: 25px;
        background: #e9f6ec;
        border-radius: 10px;
    }

    .nav-menu {
        width: min(194px, 100vw);
        padding: 70px 8px 17px;
    }

    .nav-menu::before {
        top: 52px;
    }

    .mobile-menu-brand {
        min-height: auto;
        margin: 0;
        padding: 0;
        border-bottom: 0;
    }

    .mobile-menu-list {
        margin-top: 38px;
    }

    .mobile-menu-list ul {
        display: grid;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu-brand img {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .mobile-menu-brand strong {
        font-size: 12px;
        line-height: 1;
    }

    .mobile-menu-brand small {
        font-size: 8px;
        margin-bottom: 1rem;
    }

    .nav-menu a,
    .nav-dropdown-toggle {
        min-height: 36px;
        gap: 12px;
        padding: 0 12px 0 14px;
    }

    .nav-menu > li > a:not(.join-link)::before,
    .mobile-menu-list > ul > li > a:not(.join-link)::before,
    .nav-dropdown-toggle::before {
        width: 18px;
        font-size: 15px;
    }

    .nav-menu > li:first-child > a::after,
    .mobile-menu-list > ul > li > a::after,
    .nav-dropdown-toggle::after,
    .nav-menu .join-link::after,
    .mobile-menu-brand + li > a::after {
        font-size: 12px;
    }

    .mobile-menu-brand + li::before {
        width: 4px;
    }

    .nav-dropdown-toggle .chevron {
        width: 7px;
        height: 7px;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }

    .dropdown-menu {
        padding: 0 0 4px 44px;
    }

    .dropdown-menu a {
        min-height: 22px;
        padding: 0 6px;
        font-size: 9px;
    }

    .nav-menu .join-link {
        width: calc(100% - 16px);
        min-height: 34px;
        margin: 26px 8px 0;
        border-radius: 4px;
    }

    .nav-menu .join-link::after {
        font-size: 12px;
        font-weight: 500;
    }

    .main-nav.is-open .mobile-nav-footer {
        gap: 20px;
        padding: 0;
    }

    .mobile-nav-socials {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        justify-items: center;
    }

    .mobile-nav-socials a {
        display: grid;
        width: 28px;
        height: 28px;
        min-height: 28px;
        place-items: center;
        padding: 0;
        color: #26883a;
        font-size: 13px;
        line-height: 1;
        background: #e9f6ec;
        border-radius: 6px;
    }

    .mobile-nav-socials a i {
        display: block;
        width: 1em;
        height: 1em;
        line-height: 1;
        text-align: center;
    }

    .nav-menu > li > a:not(.join-link)::before,
    .mobile-menu-list > ul > li > a:not(.join-link)::before,
    .nav-dropdown-toggle::before {
        color: #7d7d7d;
        font-family: "Font Awesome 6 Free";
        font-size: 14px;
        font-weight: 900;
    }

    .nav-menu > li:first-child > a::before,
    .mobile-menu-list > ul > li:first-child > a::before,
    .mobile-menu-brand + li > a::before {
        content: "\f015";
    }

    .nav-dropdown:not(.nav-dropdown-facility) .nav-dropdown-toggle::before {
        content: "\f05a";
    }

    .nav-dropdown-facility .nav-dropdown-toggle::before {
        content: "\f1ad";
    }

    .mobile-menu-brand + li > a,
    .nav-menu > li:first-child > a,
    .mobile-menu-list > ul > li:first-child > a,
    .nav-dropdown-toggle {
        color: #262626;
        background: transparent;
    }

    .mobile-menu-brand + li > a::before,
    .nav-menu > li:first-child > a::before,
    .mobile-menu-list > ul > li:first-child > a::before,
    .nav-dropdown-toggle::before {
        color: #7d7d7d;
    }

    .mobile-menu-brand + li::before,
    .mobile-menu-list > ul > li::before,
    .nav-dropdown::before {
        display: none;
    }

    .nav-menu > li:has(> a.is-active),
    .mobile-menu-list > ul > li:has(> a.is-active),
    .nav-dropdown:has(> .nav-dropdown-toggle.is-active) {
        position: relative;
    }

    .nav-menu > li:has(> a.is-active)::before,
    .mobile-menu-list > ul > li:has(> a.is-active)::before,
    .nav-dropdown:has(> .nav-dropdown-toggle.is-active)::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: block;
        width: 4px;
        background: #2f9745;
    }

    .nav-menu > li > a.is-active,
    .mobile-menu-list > ul > li > a.is-active,
    .nav-dropdown-toggle.is-active {
        color: #2d8a3d;
        background: #e7f5e8;
    }

    .nav-menu > li > a.is-active::before,
    .mobile-menu-list > ul > li > a.is-active::before,
    .nav-dropdown-toggle.is-active::before {
        color: #2d8a3d;
    }

    .nav-dropdown-toggle.is-active .chevron {
        border-right-color: #2d8a3d;
        border-bottom-color: #2d8a3d;
    }

    .mobile-menu-list {
        margin-top: 46px;
    }

    .mobile-menu-list > ul > li:first-child > a {
        font-size: 0;
    }

    .mobile-menu-list > ul > li:first-child > a::after {
        content: "Beranda";
        order: 1;
        color: inherit;
        font-size: 12px;
        line-height: 1;
    }

    .mobile-menu-list > ul > li:first-child > a.is-active::after {
        color: #2d8a3d;
    }

    .mobile-nav-socials {
        align-items: center;
    }

    .mobile-nav-socials a {
        display: inline-grid;
        align-items: center;
        justify-content: center;
        justify-items: center;
        align-content: center;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
    }

    .mobile-nav-socials a i {
        display: grid;
        width: 100%;
        height: 100%;
        place-items: center;
        line-height: 1;
    }

    @keyframes mobileDrawerIn {
        from {
            opacity: 0.98;
            transform: translateX(100%);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        body.mobile-nav-open::before,
        .main-nav,
        .main-nav.is-open,
        .main-nav.is-open.is-closing,
        .dropdown-menu,
        .nav-dropdown-toggle .chevron,
        .nav-toggle span:not(.screen-reader-only) {
            animation: none;
            transition: none;
        }
    }

    .hero-section {
        min-height: 780px;
        border-width: 12px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        background-position: center top;
    }

    .hero-content {
        left: 32px;
        right: 24px;
        bottom: 92px;
    }

    .eyebrow {
        margin-bottom: 26px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 23px;
    }

    .about-section,
    .reasons-section,
    .campus-section {
        margin-top: calc((var(--section-cut-height) + 2px) * -1);
        padding-top: calc(96px + var(--section-cut-height));
        padding-bottom: 96px;
    }

    .program-section {
        padding-top: calc(96px + var(--section-band-height));
        padding-bottom: 96px;
    }

    .stats-grid,
    .reason-grid,
    .campus-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 32px;
        margin-top: 70px;
    }

    .program-slide-timeline {
        grid-template-columns: 40px 1fr;
        margin: 64px 0 72px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 40px;
    }

    .program-slide-body {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .program-slide {
        flex-basis: 100%;
    }

    .program-track {
        gap: 0;
        padding-right: 0;
    }

    .campus-overlay {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    :root {
        --section-cut-width: 300px;
        --section-cut-edge: 246px;
        --section-cut-height: 58px;
        --section-cut-flat-height: 58px;
    }

    .section-container,
    .footer-container {
        width: calc(100% - 32px);
    }

    .hero-section {
        min-height: 720px;
        background-position: center top;
    }

    .hero-content {
        bottom: 104px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-description,
    .program-copy p,
    .cta-content p {
        font-size: 18px;
    }

    .about-section h2,
    .reasons-section h2,
    .program-section h2,
    .campus-section h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .stat-item strong,
    .reason-number {
        font-size: 52px;
    }

    .reason-card h3,
    .campus-overlay h3 {
        font-size: 26px;
    }

    .program-copy h3 {
        font-size: 31px;
    }

    .about-section,
    .reasons-section,
    .campus-section {
        margin-top: calc((var(--section-cut-height) + 2px) * -1);
        padding-top: calc(88px + var(--section-cut-height));
        padding-bottom: 88px;
    }

    .program-section {
        padding-top: calc(88px + var(--section-band-height));
        padding-bottom: 88px;
    }

    .cta-section {
        padding-top: var(--section-band-height);
        background-size: 227%;
    }

    .footer-container {
        gap: 42px;
    }
}

@media (max-width: 375px) {
    .hero-content {
        left: 24px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .outline-button {
        width: 100%;
    }
}
