.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;
}

/* Footer bersama: tiga kolom mengikuti referensi dan berlaku konsisten di seluruh halaman. */
.site-footer .footer-container-unified {
    grid-template-columns: minmax(360px, 1.55fr) minmax(180px, 0.65fr) minmax(230px, 0.8fr);
    align-items: start;
}

.site-footer .footer-container-unified .footer-logo-row {
    align-items: flex-start;
    margin-bottom: 28px;
}

.site-footer .footer-container-unified .footer-logo-row img {
    width: 44px;
    height: 44px;
    padding: 5px;
}

.site-footer .footer-container-unified .footer-logo-row h2 {
    font-size: 25px;
    line-height: 1.1;
}

/* Informasi alamat, telepon, dan email memakai ikon agar susunannya sama seperti rancangan. */
.footer-contact-list {
    display: grid;
    gap: 16px;
    max-width: 470px;
    margin-bottom: 38px;
}

.footer-contact-list address,
.footer-contact-list a {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    margin: 0;
    color: #d1d1d1;
    font-size: 15px;
    font-style: normal;
    line-height: 1.35;
}

.footer-contact-list i {
    padding-top: 2px;
    color: var(--color-white);
    text-align: center;
}

.site-footer .footer-container-unified .social-links a {
    color: var(--color-white);
}

.site-footer .footer-container-unified .footer-column {
    gap: 21px;
}

.site-footer .footer-container-unified .footer-column h2 {
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 21px;
}

.site-footer .footer-container-unified .footer-column a {
    color: #c2c2c2;
    font-size: 14px;
    line-height: 1.25;
}

.site-footer .footer-container-unified .footer-column a:hover,
.site-footer .footer-container-unified .footer-column a:focus-visible {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .site-footer .footer-container-unified {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer .footer-container-unified .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-container-unified {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-container-unified .footer-brand {
        grid-column: auto;
    }
}

@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 {
    display: flex;
    flex-direction: column;
    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 {
    min-height: 58px;
    margin: 32px 0 19px;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
}

.reason-card p {
    min-height: 112px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    line-height: 1.65;
}

.reason-card .outline-button {
    margin-top: auto;
}

.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;
    color: #111317;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(21, 31, 46, 0.1);
}

.campus-card::after {
    display: none;
}

.campus-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.campus-content {
    display: grid;
    padding: 16px 18px 16px;
}

.campus-levels {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin: 0 0 11px;
    color: #47aa5d;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.campus-levels::before {
    content: "+";
    color: #f6c342;
    font-size: 13px;
    font-weight: 800;
    line-height: 0.8;
}

.campus-levels span + span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 6px 0 0;
    vertical-align: 1px;
    background: #f6c342;
    border-radius: 999px;
}

.campus-content h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.campus-content > p:not(.campus-levels) {
    min-height: 38px;
    margin: 12px 0 16px;
    color: #78818e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.campus-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.campus-feature-grid span {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 8px;
    color: #748091;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    background: #eef6f0;
    border-radius: 4px;
}

.campus-feature-grid i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #4daf5d;
    font-size: 15px;
    background: #fff;
    border-radius: 3px;
}

.campus-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    padding: 0 11px 0 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    border-radius: 3px;
}

.campus-button i {
    font-size: 20px;
}

.campus-button-jakarta {
    background: #0d6b28;
}

.campus-button-surabaya {
    background: #103580;
}

.campus-card:nth-child(2) .campus-levels,
.campus-card:nth-child(2) .campus-feature-grid i {
    color: #315fd6;
}

.campus-card:nth-child(2) .campus-feature-grid span {
    background: #eef2ff;
}

.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: 1;
        transform: rotate(-45deg);
    }

    .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):not(.nav-dropdown-program) .nav-dropdown-toggle::after {
        content: "Profil";
    }

    .nav-dropdown-facility .nav-dropdown-toggle::after {
        content: "Fasilitas";
    }

    .nav-dropdown-program .nav-dropdown-toggle::after {
        content: "Program Pendidikan";
    }

    .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) {
        transform: translateY(-6px);
    }

    .main-nav.is-open.is-closing .nav-toggle span:not(.screen-reader-only):nth-child(2) {
        transform: none;
    }

    .main-nav.is-open.is-closing .nav-toggle span:not(.screen-reader-only):nth-child(3) {
        transform: translateY(6px);
    }

    .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):not(.nav-dropdown-program) .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):not(.nav-dropdown-program) .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: auto;
        left: 0;
        z-index: 2;
        display: block;
        width: 4px;
        height: 36px;
        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%;
        scroll-snap-stop: normal;
    }

    .program-track {
        gap: 0;
        padding-right: 0;
        scroll-snap-type: x proximity;
        touch-action: pan-x pan-y;
    }

    .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%;
    }
}

/* Home revision */
body {
    background: #f4f7fb;
}

.main-nav {
    top: 17px;
    width: min(590px, calc(100% - 48px));
    height: 46px;
    padding: 0 10px;
    background: rgba(83, 88, 91, 0.76);
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand-logo {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    border-radius: 4px;
}

.brand-logo img {
    width: 23px;
    height: 23px;
}

.nav-menu {
    gap: 17px;
    margin-left: 63px;
}

.nav-menu a,
.nav-dropdown-toggle {
    min-height: 25px;
    padding: 0 13px;
    font-size: 11px;
    border-radius: 5px;
}

.nav-menu .join-link {
    min-height: 25px;
    padding: 0 14px;
    background: #050505;
    border-radius: 5px;
}

.nav-menu .join-link:hover,
.nav-menu .join-link:focus-visible {
    background: #49975b;
}

.chevron {
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right-width: 1px;
    border-bottom-width: 1px;
}

.hero-section {
    min-height: 865px;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.1) 43%, rgba(0, 0, 0, 0.48) 68%, rgba(0, 0, 0, 0.94) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.16) 100%),
        url("../../assets/images/landing-page-back.webp");
    background-position: center, center, center -545px;
    background-size: auto, auto, cover;
    background-repeat: no-repeat;
    border-top: 18px solid #000;
    border-right: 18px solid #000;
    border-left: 18px solid #000;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}

.hero-content {
    left: 67px;
    bottom: 66px;
}

.eyebrow {
    margin-bottom: 35px;
    padding: 8px 13px;
    font-size: 12px;
    border-radius: 5px;
}

.hero-content h1 {
    margin-bottom: 17px;
    max-width: 760px;
    font-size: 59px;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-description {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.18;
}

.about-section {
    margin-top: -1px;
    padding: 164px 0 147px;
    background: #f4f7fb;
    clip-path: polygon(0 0, 336px 0, 390px 73px, 100% 73px, 100% 100%, 0 100%);
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 73px;
    margin-top: 0;
}

.stat-item {
    min-height: 94px;
    padding-left: 20px;
    border-left: 2px solid #8d9197;
}

.stat-item strong {
    margin-bottom: 14px;
    color: #111317;
    font-size: 50px;
    line-height: 0.95;
}

.stat-item p {
    max-width: 210px;
    color: #9298a2;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    margin: 0 0 20px;
    padding: 7px 14px;
    color: #55b96a;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    background: #dcf6e4;
    border-radius: 999px;
}

.section-heading h2 {
    margin: 0;
    color: #111317;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.02;
}

.section-heading h2 span {
    color: #4daf5d;
}

.section-heading > p:not(.section-badge) {
    margin: 19px auto 0;
    max-width: 650px;
    color: #8d96a4;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

.reasons-section {
    margin-top: 0;
    padding: 21px 0 105px;
    color: #111317;
    background: #f4f7fb;
    clip-path: none;
}

.reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 78px;
}

.reason-card {
    --card-accent: #2fc882;
    position: relative;
    min-height: 566px;
    overflow: hidden;
    align-items: center;
    padding: 0 0 27px;
    color: #111317;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 -7px 0 var(--card-accent), 0 10px 24px rgba(22, 31, 45, 0.1);
}

.reason-card:nth-child(2) {
    --card-accent: #ffb91f;
}

.reason-card:nth-child(3) {
    --card-accent: #3e86ec;
}

.reason-card:nth-child(4) {
    --card-accent: #c852d8;
}

.reason-number {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: grid;
    width: 89px;
    height: 77px;
    margin: 0;
    place-items: center;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    background: var(--card-accent);
    border-radius: 9px;
}

.reason-card img {
    width: 100%;
    height: 235px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 9px 9px 100px 100px;
}

.reason-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: -35px auto 26px;
    place-items: center;
    color: #fff;
    font-size: 34px;
    background: var(--card-accent);
    border: 8px solid #fff;
    border-radius: 999px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.16);
}

.reason-card h3 {
    min-height: 58px;
    margin: 0 20px 15px;
    font-size: 21px;
    line-height: 1.08;
}

.reason-card p {
    min-height: 58px;
    margin: 0 24px 30px;
    color: #89929d;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
}

.reason-card .outline-button {
    min-height: auto;
    margin-top: auto;
    padding: 0;
    gap: 8px;
    color: var(--card-accent);
    font-size: 11px;
    font-weight: 700;
    border: 0;
}

.reason-card .outline-button:hover,
.reason-card .outline-button:focus-visible {
    color: var(--card-accent);
    background: transparent;
}

.reason-card .arrow {
    width: 7px;
    height: 7px;
    border-top-width: 1px;
    border-right-width: 1px;
}

.program-section {
    --program-primary: #2ccbd1;
    margin-top: 0;
    padding: 81px 0 108px;
    color: #fff;
    background: #252525;
    overflow: hidden;
}

.program-section::before {
    top: -154px;
    left: -116px;
    width: 410px;
    height: 410px;
    background: #2f4635;
    clip-path: none;
    border-radius: 50%;
}

.program-section::after {
    content: "";
    position: absolute;
    top: 77px;
    right: -124px;
    width: 410px;
    height: 410px;
    background: #2f4635;
    border-radius: 50%;
    pointer-events: none;
}

.program-header {
    position: relative;
    z-index: 2;
    display: block;
}

.section-heading-dark h2,
.section-heading-dark h2 span {
    color: #fff;
}

.section-heading-dark h2 span {
    color: #56b765;
}

.section-heading-dark > p:not(.section-badge) {
    color: #a2a6ab;
}

.program-carousel {
    position: relative;
    z-index: 2;
    margin-top: 65px;
}

.program-slide-timeline {
    grid-template-columns: 47px minmax(180px, 1fr);
    grid-template-rows: 56px 18px;
    column-gap: 0;
    margin: 0 6px 94px;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    font-size: 47px;
}

.timeline-line-progress {
    width: 100%;
    height: 3px;
}

.timeline-line-progress::before {
    width: 21px;
    height: 21px;
    background: #252525;
    border-width: 4px;
}

.program-slide-body {
    grid-template-columns: minmax(340px, 503px) minmax(330px, 1fr);
    gap: 56px;
    align-items: start;
}

.program-main-image {
    height: 337px;
    border-radius: 4px;
}

.program-copy {
    padding-top: 0;
}

.age-badge {
    margin-bottom: 21px;
    padding: 7px 12px;
    font-size: 11px;
    border-radius: 4px;
}

.program-copy h3 {
    margin-bottom: 18px;
    font-size: 29px;
    line-height: 1.04;
}

.program-copy p {
    max-width: 604px;
    margin-bottom: 31px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.23;
}

.program-copy .outline-button {
    min-height: 31px;
    padding: 0 15px;
    gap: 13px;
    font-size: 11px;
    border-radius: 3px;
}

.program-carousel-controls {
    position: relative;
    z-index: 2;
    margin-top: 36px;
    margin-left: calc(503px + 56px);
}

.program-dot {
    width: 9px;
    height: 9px;
    border-color: var(--program-primary);
}

.program-dot.is-active {
    width: 41px;
}

.campus-section {
    margin-top: 0;
    padding: 83px 0 123px;
    background: #f4f7fb;
    clip-path: none;
}

.campus-grid {
    gap: 23px;
    margin-top: 69px;
}

.campus-card {
    min-height: 0;
    border-radius: 8px;
}

.campus-card img {
    height: 218px;
}

.cta-section {
    min-height: 551px;
    padding-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), url("../../assets/images/potensi.webp") center 44% / cover no-repeat;
}

.cta-section::before {
    display: none;
}

.cta-content {
    width: min(648px, calc(100% - 40px));
    margin-top: 20px;
}

.cta-content h2 {
    margin-bottom: 24px;
    font-size: 31px;
    line-height: 1.05;
}

.cta-content p {
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.cta-actions {
    gap: 15px;
}

.cta-actions .outline-button {
    min-height: 38px;
    min-width: 122px;
    padding: 0 17px;
    gap: 13px;
    font-size: 11px;
    border-color: rgba(255, 255, 255, 0.65);
}

.cta-actions .outline-button:first-child {
    background: #4daf5d;
    border-color: #4daf5d;
}

.site-footer {
    padding: 58px 0 81px;
    background: #313131;
}

.footer-container {
    grid-template-columns: minmax(350px, 1.35fr) repeat(3, minmax(110px, 1fr));
    gap: 70px;
}

.footer-logo-row {
    gap: 14px;
    margin-bottom: 19px;
}

.footer-logo-row img {
    width: 21px;
    height: 21px;
}

.footer-logo-row h2,
.footer-column h2 {
    font-size: 19px;
}

.footer-brand address {
    margin-bottom: 33px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.social-links {
    gap: 20px;
}

.social-links a {
    font-size: 11px;
}

.footer-column {
    gap: 25px;
}

.footer-column a {
    color: #a0a0a0;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1180px) {
    .stats-grid,
    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-carousel-controls {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        top: 0;
        width: 100%;
        height: 46px;
        padding: 0 12px;
        border-radius: 0;
        background: #fff;
    }

    .hero-section {
        min-height: 720px;
        background-position: center top;
        border-width: 12px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .hero-content {
        left: 28px;
        right: 22px;
        bottom: 76px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .about-section {
        padding: 110px 0 72px;
        clip-path: polygon(0 0, 180px 0, 222px 48px, 100% 48px, 100% 100%, 0 100%);
    }

    .stats-grid {
        gap: 30px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .reason-grid,
    .campus-grid {
        grid-template-columns: 1fr;
    }

    .program-section {
        padding: 70px 0 82px;
    }

    .program-section::before,
    .program-section::after {
        width: 280px;
        height: 280px;
    }

    .program-slide-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-main-image {
        height: auto;
        aspect-ratio: 503 / 337;
    }

    .program-slide-timeline {
        margin-bottom: 54px;
    }

    .program-copy h3 {
        font-size: 26px;
    }

    .program-copy p {
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .about-section {
        padding-top: 92px;
    }

    .stat-item strong {
        font-size: 42px;
    }

    .reason-card {
        min-height: 540px;
    }

    .cta-content h2 {
        font-size: 27px;
    }
}

/* Home size correction */
@media (min-width: 1181px) {
    .main-nav {
        top: 36px;
        width: min(664px, calc(100% - 48px));
        height: 65px;
        padding: 0 15px;
        border-radius: 11px;
    }

    .brand-logo {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

    .brand-logo img {
        width: 34px;
        height: 34px;
    }

    .nav-menu {
        gap: 26px;
        margin-left: 76px;
    }

    .nav-menu a,
    .nav-dropdown-toggle {
        min-height: 39px;
        padding: 0 15px;
        font-size: 16px;
        border-radius: 6px;
    }

    .nav-menu .join-link {
        min-height: 39px;
        padding: 0 18px;
        border-radius: 9px;
    }

    .chevron {
        width: 9px;
        height: 9px;
        margin-left: 12px;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }

    .hero-section {
        min-height: 967px;
        background-position: center, center, center -400px;
        border-top-width: 21px;
        border-right-width: 21px;
        border-left-width: 21px;
        border-top-left-radius: 39px;
        border-top-right-radius: 39px;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        height: 174px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.94) 74%, #000 100%);
        pointer-events: none;
    }

    .hero-content {
        z-index: 2;
        left: 75px;
        bottom: 27%;
    }

    .eyebrow {
        margin-bottom: 39px;
        padding: 8px 16px;
        font-size: 16px;
        border-radius: 9px;
    }

    .hero-content h1 {
        margin-bottom: 25px;
        max-width: 900px;
        font-size: 66px;
        line-height: 1.06;
    }

    .hero-description {
        max-width: 980px;
        font-size: 27px;
        line-height: 1.12;
    }

    .about-section {
        z-index: 2;
        margin-top: -134px;
        padding: 278px 0 147px;
        clip-path: polygon(0 0, 39% 0, 45% 134px, 100% 134px, 100% 100%, 0 100%);
    }

    .stats-grid {
        gap: 44px;
        margin-top: 0;
    }

    .stat-item {
        min-height: 116px;
        padding-left: 23px;
        border-left-width: 3px;
    }

    .stat-item strong {
        margin-bottom: 11px;
        font-size: 64px;
        line-height: 0.9;
    }

    .stat-item p {
        max-width: 280px;
        font-size: 19px;
        line-height: 1.17;
    }

    .section-heading {
        max-width: 820px;
    }

    .section-badge {
        margin-bottom: 20px;
        padding: 9px 18px;
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 40px;
        line-height: 1.02;
    }

    .section-heading > p:not(.section-badge) {
        max-width: 760px;
        font-size: 19px;
        line-height: 1.28;
    }

    .reasons-section {
        padding: 21px 0 105px;
    }

    .reason-grid {
        gap: 33px;
        margin-top: 79px;
    }

    .reason-card {
        min-height: 610px;
        padding-bottom: 34px;
        border-radius: 10px;
    }

    .reason-number {
        width: 96px;
        height: 84px;
        font-size: 52px;
    }

    .reason-card img {
        height: 260px;
    }

    .reason-icon {
        width: 78px;
        height: 78px;
        margin: -40px auto 28px;
        font-size: 39px;
        border-width: 9px;
    }

    .reason-card h3 {
        min-height: 58px;
        margin: 0 20px 19px;
        font-size: 29px;
        line-height: 1;
    }

    .reason-card p {
        min-height: 84px;
        margin: 0 24px 28px;
        font-size: 17px;
        line-height: 1.35;
    }

    .reason-card .outline-button {
        gap: 12px;
        font-size: 16px;
    }

    .reason-card .arrow {
        width: 11px;
        height: 11px;
        border-top-width: 2px;
        border-right-width: 2px;
    }

    .program-section {
        padding: 122px 0 158px;
    }

    .program-section::before {
        top: -172px;
        left: -132px;
        width: 470px;
        height: 470px;
    }

    .program-section::after {
        top: 92px;
        right: -142px;
        width: 470px;
        height: 470px;
    }

    .program-carousel {
        margin-top: 84px;
    }

    .program-slide-timeline {
        grid-template-columns: 48px minmax(180px, 1fr);
        grid-template-rows: 56px 18px;
        margin: 0 8px 110px;
    }

    .timeline-icon {
        width: 48px;
        height: 48px;
        font-size: 48px;
    }

    .timeline-line-progress {
        height: 4px;
    }

    .timeline-line-progress::before {
        width: 22px;
        height: 22px;
        border-width: 4px;
    }

    .program-slide-body {
        grid-template-columns: minmax(360px, 566px) minmax(330px, 1fr);
        gap: 64px;
    }

    .program-main-image {
        height: 382px;
    }

    .age-badge {
        margin-bottom: 19px;
        padding: 9px 17px;
        font-size: 16px;
        border-radius: 8px;
    }

    .program-copy h3 {
        margin-bottom: 21px;
        font-size: 36px;
        line-height: 1;
    }

    .program-copy p {
        max-width: 560px;
        margin-bottom: 38px;
        font-size: 22px;
        line-height: 1.25;
    }

    .program-copy .outline-button,
    .campus-overlay .outline-button,
    .cta-actions .outline-button {
        min-height: 38px;
        padding: 7px 16px;
        gap: 18px;
        font-size: 16px;
        border-radius: 5px;
    }

    .program-carousel-controls {
        margin-top: 38px;
        margin-left: calc(566px + 64px);
        gap: 30px;
    }

    .program-dot {
        width: 11px;
        height: 11px;
    }

    .program-dot.is-active {
        width: 42px;
    }

    .campus-section {
        padding: 83px 0 123px;
    }

    .campus-grid {
        gap: 24px;
        margin-top: 84px;
    }

    .campus-card {
        min-height: 0;
    }

    .campus-card img {
        height: 220px;
    }

    .campus-overlay {
        right: 16px;
        bottom: 12px;
        left: 14px;
    }

    .campus-overlay h3 {
        font-size: 30px;
    }

    .cta-section {
        min-height: 700px;
    }

    .cta-content {
        width: min(720px, calc(100% - 40px));
    }

    .cta-content h2 {
        margin-bottom: 33px;
        font-size: 36px;
        line-height: 0.98;
    }

    .cta-content p {
        margin-bottom: 29px;
        font-size: 21px;
        line-height: 1.35;
    }

    .site-footer {
        padding: 58px 0 92px;
    }

    .footer-container {
        grid-template-columns: minmax(360px, 1.35fr) repeat(3, 1fr);
        gap: 72px;
    }

    .footer-logo-row {
        gap: 18px;
        margin-bottom: 19px;
    }

    .footer-logo-row img {
        width: 26px;
        height: 26px;
    }

    .footer-logo-row h2,
    .footer-column h2 {
        font-size: 25px;
    }

    .footer-brand address {
        margin-bottom: 38px;
        font-size: 17px;
        line-height: 1.02;
    }

    .social-links {
        gap: 24px;
    }

    .social-links a {
        font-size: 13px;
    }

    .footer-column {
        gap: 25px;
    }

    .footer-column a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-list > ul > li > a:not(.join-link),
    .mobile-menu-list > ul > li > .nav-dropdown-toggle {
        font-size: 0 !important;
    }

    .mobile-menu-list > ul > li:first-child > a::after,
    .nav-dropdown-toggle::after,
    .mobile-menu-list .join-link::after {
        order: 1;
        font-size: 12px;
        line-height: 1;
    }

    .mobile-menu-list > ul > li:first-child > a::after {
        content: "Beranda";
    }

    .nav-dropdown:not(.nav-dropdown-facility):not(.nav-dropdown-program) > .nav-dropdown-toggle::after {
        content: "Profil";
    }

    .nav-dropdown-facility > .nav-dropdown-toggle::after {
        content: "Fasilitas";
    }

    .nav-dropdown-program > .nav-dropdown-toggle::after {
        content: "Program Pendidikan";
    }

    .mobile-menu-list .join-link {
        color: var(--color-white) !important;
        font-size: 0 !important;
        background: #0f6b2b !important;
    }

    .mobile-menu-list .join-link::after {
        content: "Gabung Alazka";
        color: var(--color-white);
        font-weight: 800;
    }

    .mobile-menu-list .join-link:hover,
    .mobile-menu-list .join-link:focus-visible {
        color: var(--color-white) !important;
        background: #0a5d24 !important;
    }
}

/* Sekolah Alazka card detail correction */
.campus-section .campus-content {
    padding: 14px 16px 14px;
}

.campus-section .campus-levels {
    gap: 5px;
    margin-bottom: 9px;
    font-size: 9px;
    letter-spacing: 0;
}

.campus-section .campus-levels::before {
    font-size: 11px;
}

.campus-section .campus-levels span + span::before {
    width: 4px;
    height: 4px;
    margin-right: 5px;
    vertical-align: 1px;
}

.campus-section .campus-content h3 {
    font-size: 24px;
}

.campus-section .campus-content > p:not(.campus-levels) {
    min-height: 30px;
    margin: 9px 0 13px;
    font-size: 10px;
    line-height: 1.3;
}

.campus-section .campus-feature-grid {
    gap: 7px;
    margin-bottom: 12px;
}

.campus-section .campus-feature-grid span {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 7px;
    min-height: 32px;
    padding: 5px 7px;
    font-size: 8px;
    line-height: 1.15;
    border-radius: 3px;
}

.campus-section .campus-feature-grid i {
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 3px;
}

.campus-section .campus-button {
    min-height: 27px;
    padding: 0 8px 0 12px;
    font-size: 9px;
    border-radius: 2px;
}

.campus-section .campus-button i {
    font-size: 16px;
}

/* Sekolah Alazka Figma scale correction */
.campus-section .section-container {
    width: min(1630px, calc(100% - 270px));
}

.campus-section .campus-grid {
    gap: 32px;
}

.campus-section .campus-card {
    border: 1px solid #cfd5df;
    border-radius: 18px;
    box-shadow: none;
}

.campus-section .campus-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 312px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.campus-section .campus-card img {
    height: 312px;
}

.campus-section .campus-card:nth-child(2) img {
    transform: scale(1.24);
    transform-origin: center;
}

.campus-section .campus-content {
    padding: 45px 31px 31px;
}

.campus-section .campus-levels {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    color: #22743f;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
}

.campus-section .campus-card:nth-child(2) .campus-levels {
    color: #31538f;
}

.campus-section .campus-levels::before,
.campus-section .campus-levels span + span::before {
    display: none;
}

.campus-section .level-sparkle {
    position: relative;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
}

.campus-section .level-sparkle::before,
.campus-section .level-sparkle::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    background: #f8c62e;
    border-radius: 999px;
}

.campus-section .level-sparkle::before {
    top: 1px;
    left: 1px;
    box-shadow: 0 15px 0 #f8c62e;
}

.campus-section .level-sparkle::after {
    top: 1px;
    right: 1px;
    box-shadow: 0 15px 0 #f8c62e;
}

.campus-section .campus-content h3 {
    color: #0d6930;
    font-size: 46px;
    line-height: 1;
}

.campus-section .campus-card:nth-child(2) .campus-content h3 {
    color: #0f2c68;
}

.campus-section .campus-content > p:not(.campus-levels) {
    max-width: 690px;
    min-height: 82px;
    margin: 28px 0 47px;
    color: #4f5b6d;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.38;
}

.campus-section .campus-feature-grid {
    gap: 38px;
    margin-bottom: 54px;
}

.campus-section .campus-feature-grid span {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    min-height: 64px;
    padding: 0;
    color: #4d596b;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    background: transparent;
    border-radius: 0;
}

.campus-section .campus-feature-grid i {
    width: 52px;
    height: 52px;
    color: #27a850;
    font-size: 28px;
    background: #ddf8df;
    border-radius: 6px;
}

.campus-section .campus-card:nth-child(2) .campus-feature-grid i {
    color: #2d66de;
    background: #edf3ff;
}

.campus-section .campus-card:nth-child(2) .campus-feature-grid span {
    background: transparent;
}

.campus-section .campus-button {
    min-height: 66px;
    padding: 0 20px 0 21px;
    font-size: 21px;
    border-radius: 8px;
}

.campus-section .campus-button i {
    position: relative;
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    color: currentColor;
    font-size: 0;
    background: #fff;
    border-radius: 999px;
}

.campus-section .campus-button-jakarta i {
    color: #0d6b28;
}

.campus-section .campus-button-surabaya i {
    color: #103580;
}

.campus-section .campus-button i::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg);
}

.campus-section .campus-button i::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 3px;
    background: currentColor;
    border-radius: 999px;
    transform: translateX(-2px);
}

@media (max-width: 1180px) {
    .campus-section .section-container {
        width: min(var(--container-width), calc(100% - 112px));
    }
}

@media (max-width: 768px) {
    .campus-section .section-container {
        width: min(var(--container-width), calc(100% - 40px));
    }
}

/* Top hero and navigation final correction */
.main-nav {
    top: 36px;
    width: min(1025px, calc(100% - 48px));
    height: 65px;
    padding: 0 15px;
    background: rgba(83, 88, 91, 0.76);
    border-radius: 11px;
}

.brand-logo {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.brand-logo img {
    width: 34px;
    height: 34px;
}

.nav-menu {
    gap: 22px;
    margin-left: 58px;
}

.nav-menu a,
.nav-dropdown-toggle {
    min-height: 39px;
    padding: 0 15px;
    font-size: 16px;
    border-radius: 6px;
}

.nav-menu .join-link {
    min-height: 39px;
    padding: 0 18px;
    background: #050505;
    border-radius: 9px;
}

.chevron {
    width: 9px;
    height: 9px;
    margin-left: 12px;
    border-right-width: 2px;
    border-bottom-width: 2px;
}

.hero-description {
    max-width: 760px;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 36px;
    padding: 0 17px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    border-radius: 4px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-action i {
    font-size: 15px;
}

.hero-action-primary {
    background: #2f9745;
    border: 1px solid #2f9745;
}

.hero-action-secondary {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.76);
}

.hero-action:hover,
.hero-action:focus-visible {
    transform: translateY(-2px);
}

.hero-action-primary:hover,
.hero-action-primary:focus-visible {
    background: #3cad53;
    border-color: #3cad53;
    box-shadow: 0 10px 22px rgba(47, 151, 69, 0.28);
}

.hero-action-secondary:hover,
.hero-action-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1181px) {
    .main-nav {
        top: 36px;
        width: min(1025px, calc(100% - 48px));
        height: 65px;
        padding: 0 15px;
        border-radius: 11px;
    }

    .brand-logo {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

    .brand-logo img {
        width: 34px;
        height: 34px;
    }

    .nav-menu {
        gap: 22px;
        margin-left: 58px;
    }

    .nav-menu a,
    .nav-dropdown-toggle {
        min-height: 39px;
        padding: 0 15px;
        font-size: 16px;
        border-radius: 6px;
    }

    .nav-menu .join-link {
        min-height: 39px;
        padding: 0 18px;
        border-radius: 9px;
    }

    .chevron {
        width: 9px;
        height: 9px;
        margin-left: 12px;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }
}

@media (max-width: 768px) {
    .hero-description {
        white-space: normal;
    }

    .hero-actions {
        flex-wrap: wrap;
    }
}

/* Sekolah Alazka 1080p comfort correction */
.campus-section .campus-card {
    display: grid;
    grid-template-rows: 270px 1fr;
}

.campus-section .campus-card::before {
    height: 270px;
}

.campus-section .campus-card img {
    height: 270px;
}

.campus-section .campus-card:nth-child(2) img {
    transform: scale(1.38);
    transform-origin: center 43%;
}

.campus-section .campus-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    padding: 26px 31px 27px;
    background: #fff;
}

.campus-section .campus-levels {
    gap: 13px;
    margin-bottom: 16px;
    font-size: 21px;
}

.campus-section .level-sparkle {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
}

.campus-section .level-sparkle::before,
.campus-section .level-sparkle::after {
    width: 9px;
    height: 9px;
}

.campus-section .level-sparkle::before {
    box-shadow: 0 13px 0 #f8c62e;
}

.campus-section .level-sparkle::after {
    box-shadow: 0 13px 0 #f8c62e;
}

.campus-section .campus-content h3 {
    font-size: 34px;
}

.campus-section .campus-content > p:not(.campus-levels) {
    min-height: 64px;
    margin: 18px 0 28px;
    font-size: 20px;
    line-height: 1.34;
}

.campus-section .campus-feature-grid {
    gap: 24px;
    min-height: 56px;
    margin-bottom: 28px;
}

.campus-section .campus-feature-grid span {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
    min-height: 48px;
    font-size: 13px;
    line-height: 1.3;
}

.campus-section .campus-feature-grid i {
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.campus-section .campus-button {
    min-height: 48px;
    margin-top: auto;
    padding: 0 15px 0 17px;
    font-size: 16px;
    border-radius: 7px;
}

.campus-section .campus-button i {
    width: 30px;
    height: 30px;
}

.campus-section .campus-button i::before {
    width: 10px;
    height: 10px;
    border-top-width: 3px;
    border-right-width: 3px;
}

.campus-section .campus-button i::after {
    width: 15px;
    height: 3px;
}

@media (max-width: 768px) {
    .main-nav,
    .main-nav.is-open,
    .main-nav.is-open.is-closing {
        top: 0;
        left: 0;
        right: auto;
        z-index: 60;
        width: min(393px, 100vw);
        height: 72px;
        min-height: 72px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px 0 20px;
        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:not(.is-open):not(.is-closing) {
        width: min(393px, 100vw);
        height: 72px;
        min-height: 72px;
        padding: 0 12px 0 20px;
    }

    .main-nav .brand-logo,
    .main-nav.is-open .brand-logo,
    .main-nav.is-open.is-closing .brand-logo {
        display: inline-flex;
        flex: 0 1 auto;
        width: auto;
        height: 72px;
        margin: 0;
        flex-direction: row;
        gap: 7px;
        place-items: initial;
        align-items: center;
        text-align: left;
        color: #111827;
        background: transparent;
        border-radius: 0;
    }

    .main-nav .brand-logo img,
    .main-nav.is-open .brand-logo img,
    .main-nav.is-open.is-closing .brand-logo img {
        width: 35px;
        height: 35px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .main-nav .brand-logo::after,
    .main-nav.is-open .brand-logo::after,
    .main-nav.is-open.is-closing .brand-logo::after {
        display: inline;
        font-size: 18px;
        font-weight: 600;
    }

    body.mobile-nav-open::before,
    body.mobile-nav-closing::before {
        display: none;
    }

    .main-nav.is-open .nav-toggle {
        position: fixed;
        top: 22px;
        right: 20px;
        z-index: 60;
        width: 28px;
        height: 28px;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        transform: none;
    }

    .main-nav.is-open .nav-toggle:hover,
    .main-nav.is-open .nav-toggle:focus-visible {
        background: transparent;
        box-shadow: none;
        transform: rotate(90deg);
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only) {
        width: 20px;
        height: 2px;
        background: #111827;
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only):nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only):nth-child(2) {
        opacity: 1;
        transform: rotate(-45deg);
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only):nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .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;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 50;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        width: 100%;
        max-width: none;
        height: 100vh;
        min-height: 100vh;
        min-height: 100dvh;
        margin: 0;
        padding: 0;
        overflow-y: auto;
        background: #fff;
        box-shadow: none;
        pointer-events: none;
        opacity: 1;
        transform: translateX(100%);
        transition: transform 280ms ease;
    }

    .main-nav.is-open .nav-menu,
    .main-nav.is-open.is-closing .nav-menu {
        inset: 0;
        width: auto;
        height: auto;
        min-height: 100dvh;
    }

    .nav-menu::before {
        display: none;
    }

    .main-nav.is-open .nav-menu {
        pointer-events: auto;
        transform: translateX(0);
    }

    .main-nav.is-open.is-closing .nav-menu {
        pointer-events: none;
        transform: translateX(100%);
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        gap: 16px;
        box-sizing: border-box;
        width: 100%;
        min-height: 80px;
        margin: 0;
        padding: 20px 20px 16px 24px;
        text-align: left;
        border-bottom: 0;
    }

    .mobile-menu-brand img {
        width: 35px;
        height: 35px;
        padding: 0;
        object-fit: contain;
        background: transparent;
        border-radius: 0;
        margin-left: 5%;
    }

    .mobile-menu-brand strong {
        color: #050505;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.1;
    }

    .mobile-menu-brand small {
        display: none;
    }

    .mobile-menu-list {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        min-height: 0;
    }

    .mobile-menu-list > ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu-list > ul > li {
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #d6d6d6;
    }

    .mobile-menu-list > ul > li:has(> .join-link) {
        order: -1;
        padding: 10px 16px 24px;
        border-bottom: 1px solid #d6d6d6;
    }

    .mobile-menu-list .join-link {
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        min-height: 44px;
        margin: 0;
        padding: 0 16px;
        color: #fff !important;
        font-size: 0 !important;
        font-weight: 800;
        line-height: 1;
        background: #0f5f26 !important;
        border-radius: 6px;
    }

    .mobile-menu-list .join-link::before {
        display: none !important;
    }

    .mobile-menu-list .join-link::after {
        content: "DAFTAR SEKARANG";
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 0;
    }

    .mobile-menu-list > ul > li > a:not(.join-link),
    .mobile-menu-list > ul > li > .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 77px;
        padding: 0 24px;
        color: #262626;
        font-size: 24px !important;
        font-weight: 500;
        line-height: 1;
        background: #fff;
        border: 0;
        border-radius: 0;
    }

    .mobile-menu-list > ul > li > a:not(.join-link)::before,
    .mobile-menu-list > ul > li > .nav-dropdown-toggle::before {
        display: none !important;
    }

    .mobile-menu-list > ul > li:first-child > a::after,
    .nav-dropdown:not(.nav-dropdown-facility):not(.nav-dropdown-program) > .nav-dropdown-toggle::after,
    .nav-dropdown-facility > .nav-dropdown-toggle::after,
    .nav-dropdown-program > .nav-dropdown-toggle::after,
    .mobile-menu-list > ul > li > a[href="#program"]::after {
        content: none;
    }

    .mobile-menu-list > ul > li > a.is-active,
    .mobile-menu-list > ul > li:has(> a.is-active) > a,
    .nav-dropdown.is-open > .nav-dropdown-toggle,
    .nav-dropdown:has(> .nav-dropdown-toggle.is-active) > .nav-dropdown-toggle {
        color: #2f883e;
        font-weight: 800;
        background: #e7f5e8;
    }

    .mobile-menu-list > ul > li:has(> a.is-active)::before,
    .mobile-menu-list > ul > li:has(> .nav-dropdown-toggle.is-active)::before,
    .mobile-menu-list > ul > li::before {
        display: none !important;
    }

    .nav-dropdown-toggle .chevron {
        width: 11px;
        height: 11px;
        margin-left: auto;
        border-right-width: 2px;
        border-bottom-width: 2px;
        border-right-color: #777;
        border-bottom-color: #777;
    }

    .nav-dropdown.is-open .nav-dropdown-toggle .chevron {
        transform: rotate(45deg);
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #f4f4f4;
        box-shadow: none;
        opacity: 1;
        transform: none;
        visibility: visible;
    }

    .nav-dropdown.is-open .dropdown-menu,
    .nav-dropdown:has(> .nav-dropdown-toggle.is-active) .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-top: 1px solid #d6d6d6;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        min-height: 77px;
        padding: 0 24px;
        color: #262626;
        font-size: 24px;
        font-weight: 400;
        line-height: 1.1;
        background: #f4f4f4;
    }

    .dropdown-menu a.is-active {
        color: #2f883e;
        font-weight: 800;
        background: #e7f5e8;
    }

    .main-nav.is-open .mobile-nav-footer {
        display: grid;
        margin-top: auto;
        padding: 18px 24px 24px;
        border-top: 1px solid #ececec;
    }

    .mobile-nav-socials {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-nav-socials a {
        display: grid;
        width: 24px;
        height: 24px;
        min-height: 24px;
        place-items: center;
        padding: 0;
        color: #8d939c;
        font-size: 20px;
        line-height: 1;
        background: transparent;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .campus-section .campus-card {
        grid-template-rows: auto 1fr;
    }

    .campus-section .campus-content {
        min-height: 0;
    }

    .campus-section .campus-content > p:not(.campus-levels) {
        min-height: 0;
    }

    .campus-section .campus-feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
        margin-bottom: 28px;
    }

    .campus-section .campus-feature-grid span {
        grid-template-columns: 32px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        min-height: 40px;
        color: #4d596b;
        font-size: 12px;
        line-height: 1.25;
        white-space: normal;
        overflow: visible;
    }

    .campus-section .campus-feature-grid i {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .program-track {
        gap: 16px;
    }
}

.program-copy h3 {
    min-height: 72px;
}

.program-copy p {
    min-height: 84px;
}

@media (max-width: 768px) {
    .program-copy h3 {
        min-height: 58px;
    }

    .program-copy p {
        min-height: 68px;
    }
}

@media (max-width: 768px) {
    .main-nav.is-open .nav-toggle {
        position: fixed;
        top: 22px;
        right: 20px;
        z-index: 100;
        transition: transform 240ms ease, background 180ms ease;
    }

    .main-nav.is-open.is-closing .nav-toggle,
    .main-nav.is-open.is-closing .nav-toggle:hover,
    .main-nav.is-open.is-closing .nav-toggle:focus-visible {
        transform: rotate(0deg);
    }

    .main-nav.is-open .nav-toggle span:not(.screen-reader-only) {
        opacity: 1;
        transition: transform 240ms ease, opacity 160ms ease;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: transform 240ms ease;
        will-change: transform;
    }

    .mobile-menu-list {
        flex: 0 0 auto;
        overflow: visible;
    }

    .mobile-menu-list > ul {
        min-height: 0;
    }

    .main-nav.is-open .mobile-nav-footer {
        flex: 0 0 auto;
    }

    .nav-dropdown.is-open .dropdown-menu,
    .nav-dropdown:has(> .nav-dropdown-toggle.is-active) .dropdown-menu {
        max-height: 360px;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-nav.is-open .nav-toggle {
        position: fixed;
        top: 22px;
        right: 20px;
        z-index: 1000;
    }

    .nav-menu {
        overflow: hidden;
    }

    .mobile-menu-list {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

    .cta-actions .outline-button:hover,
    .cta-actions .outline-button:focus-visible {
        color: #fff;
    background: #2f8f43;
    border-color: #2f8f43;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

.cta-actions .outline-button:first-child:hover,
.cta-actions .outline-button:first-child:focus-visible {
    background: #2f8f43;
    border-color: #2f8f43;
}

/* Latar footer dikunci hitam agar tampil seragam pada seluruh halaman. */
body .site-footer.site-footer {
    background: #000000;
}

/* Pemilih bahasa bersama ditempatkan di sisi kanan navbar pada seluruh halaman. */
.site-language {
    position: fixed;
    top: 36px;
    left: calc(50% + 536px);
    z-index: 30;
    width: 130px;
    color: #ffffff;
    font-family: inherit;
}

.site-language-toggle,
.site-language-menu button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 0 14px;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    background: rgba(83, 88, 91, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.site-language-toggle {
    height: 65px;
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.site-language-toggle i {
    margin-left: auto;
    font-size: 18px;
    transition: transform 180ms ease;
}

.site-language.is-open .site-language-toggle i {
    transform: rotate(180deg);
}

/* Menu bahasa hanya menampilkan bahasa alternatif terhadap pilihan aktif. */
.site-language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.site-language.is-open .site-language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-language-menu button {
    height: 54px;
    border-radius: 9px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.site-language-menu button:hover,
.site-language-menu button:focus-visible {
    background: #454a4d;
}

.language-flag {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 20px;
    place-items: center;
    overflow: hidden;
    font-size: 26px;
    line-height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.language-flag-id {
    color: transparent;
    background: linear-gradient(to bottom, #e70011 0 50%, #ffffff 50% 100%);
}

.language-flag-gb {
    color: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    background: #012169 url("../../assets/images/flag-united-kingdom.svg") center / cover no-repeat;
}

@media (max-width: 1180px) {
    .site-language {
        top: 110px;
        right: 24px;
        left: auto;
        width: 108px;
    }

    .site-language-toggle {
        height: 52px;
    }

    .site-language-menu {
        width: 108px;
    }
}

@media (max-width: 768px) {
    .site-language {
        display: none;
    }

    .site-language-toggle {
        height: 44px;
        padding: 0 9px;
        border-radius: 8px;
    }

    .site-language-toggle,
    .site-language-menu button {
        gap: 7px;
        font-size: 13px;
    }

    .site-language-menu {
        width: 94px;
    }

    .language-flag {
        flex-basis: 26px;
        width: 26px;
        height: 17px;
        font-size: 22px;
        line-height: 17px;
    }
}

/* =========================================================
   Accordion navbar mobile
   State terbuka hanya dikendalikan oleh class .is-open agar
   menu aktif tidak tersangkut dalam keadaan selalu terbuka.
   ========================================================= */
@media (max-width: 768px) {
    .mobile-menu-list .nav-dropdown > .dropdown-menu,
    .mobile-menu-list .nav-dropdown:has(> .nav-dropdown-toggle.is-active) > .dropdown-menu {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition:
            max-height 280ms ease,
            opacity 180ms ease,
            transform 280ms ease,
            visibility 0s linear 280ms;
    }

    .mobile-menu-list .nav-dropdown.is-open > .dropdown-menu,
    .mobile-menu-list .nav-dropdown.is-open:has(> .nav-dropdown-toggle.is-active) > .dropdown-menu {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition:
            max-height 280ms ease,
            opacity 180ms ease,
            transform 280ms ease,
            visibility 0s;
    }

    .mobile-menu-list .nav-dropdown > .nav-dropdown-toggle .chevron {
        transform: rotate(45deg);
        transition: transform 220ms ease;
    }

    .mobile-menu-list .nav-dropdown.is-open > .nav-dropdown-toggle .chevron {
        transform: rotate(225deg);
    }

    .mobile-menu-list .nav-dropdown > .nav-dropdown-toggle {
        touch-action: manipulation;
    }
}
