@import url('https://fonts.googleapis.com/css2?family=Syne:wght@800&family=Inter:wght@600&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F8FAFC;
    color: #0E2148;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 14px;
}

/* navbar */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: #ffffff;
    border-bottom: 2px solid #eeeeee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    position: relative;
    text-decoration: none;
    color: #222;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 10px 20px;
    background: #222;
    color: #fff !important;
    border-radius: 999px;
}

/* HAMBURGER BASE */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* STATE ACTIVE → JADI X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 0;
    list-style: none;
    z-index: 999;
}

.dropdown-content li a {
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    color: #333;
    display: block;
    text-decoration: none;
}

/* Hover Effect Desktop */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a:hover {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: black;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}

/* --- STYLING MOBILE (Layar di bawah 768px) --- */
@media screen and (max-width: 768px) {
    .desktop-only-dropdown {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }
}

/* resvonsive navbar */
@media (max-width: 1000px) {
    .nav-container {
        padding: 12px 16px;
        width: 100%;
        justify-content: space-between;
    }


    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: 0.35s ease;
        z-index: 999;
    }

    .nav-cta {
        background: none;
        color: black !important;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.2rem;
    }
}

/* navbar end */

/* start herro  */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    margin-top: 40px;
    box-sizing: border-box;
    margin-bottom: 100px;
    scroll-margin-top: 40px;
}

h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0 20px;
}

h1 span {
    font-family: 'Clash Display', sans-serif;
    padding: 4px;
    border-radius: 2.5px;
    background-color: #3D9CFB;
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.word-rotate {
    display: inline-block;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.word-rotate.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.word-rotate.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTON POWER */
.btn-power {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    background-color: #3D9CFB;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 40px;
    border: 4px solid #001434;
    box-shadow: 8px 8px 0 #001434;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.1s;
}

.btn-power:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #001434;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 3.2rem;
        line-height: 1.15;
    }

    p {
        font-size: 1rem;
        max-width: 520px;
    }

    .hero {
        padding: 90px 24px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    p {
        font-size: 0.95rem;
        max-width: 90%;
        margin-bottom: 32px;
    }

    .hero {
        padding: 80px 20px;
    }
}

/* herro end */

/* start masalah pendidikan */
:root {
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenges {
    padding: 90px 5%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: -12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.section-header h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #121212;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1100px;
}

.card {
    padding: 24px;
    border-radius: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    color: var(--text);
}

.card-green {
    background-color: #5CCAA0;
    --text: #001434;
    --btn-bg: rgba(0, 0, 0, 0.1);
}

.card-black {
    background-color: #000;
    --text: #fff;
    --btn-bg: #fff;
    --btn-text: #000;
}

.card-purple {
    background-color: #B79AF2;
    --text: #001434;
    --btn-bg: rgba(0, 0, 0, 0.1);
}

.card-yellow {
    background-color: #ECEE8C;
    --text: #001434;
    --btn-bg: rgba(0, 0, 0, 0.1);
}

.card {
    color: var(--text);
}

.card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}

.card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    text-align: left;
    padding-left: 0;
}

.card p {
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.8;
    margin: 0;
    text-align: left;
    opacity: 1;
}

.card-black p {
    color: rgba(255, 255, 255, 0.7);
}

/*  Footer & Stat */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: auto;
}

.card-black .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.value {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.arrow-btn {
    width: 32px;
    height: 32px;
    background-color: var(--btn-bg);
    color: var(--btn-text, #000);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

/* Hover Effects Modern */
.card:hover .arrow-btn {
    transform: translateX(8px) scale(1.1);
}

/* Responsif */
@media (max-width: 600px) {
    .section-header h1 {
        font-size: 1.8rem;
        letter-spacing: 0;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .grid-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        min-height: 220px;
        padding: 20px;
    }

    .challenges {
        padding: 50px 5%;
        scroll-margin-top: 20px;
    }
}

@media (min-width: 601px) and (max-width: 1080px) {
    .challenges {
        padding: 70px 6%;
    }

    .section-header h1 {
        font-size: 2.4rem;
    }

    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        max-width: 900px;
    }

    .card {
        min-height: 260px;
        padding: 22px;
    }

    .value {
        font-size: 1.6rem;
    }
}

/* masalah pendidikan end */

/* solusi inovasi ai */
.ai-solution {
    padding: 80px 24px;
    background: #fff;
}

.ai-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.ai-left {
    flex: 1;
    order: 2;
}

.ai-right {
    order: 1;
}

.ai-left h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-left .subtitle {
    font-family: 'Poppins', sans-serif;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

/* SVG ICON */
.accordion-header svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* PLUS ICON */
.accordion-header .icon {
    margin-left: auto;
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* CONTENT */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-content p {
    font-family: 'Poppins', sans-serif;
    font-size: medium;
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.ai-right {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.ai-right img {
    width: 100%;
    max-width: 520px;
    height: auto;
}

@media (max-width: 768px) {
    .ai-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .ai-left h2 {
        font-size: 28px;
        text-align: center;
    }

    .ai-left .subtitle {
        text-align: center;
    }

    .ai-right img {
        max-width: 320px;
    }
}

/* end */

/* temukan gaya belajar kamu */
.st-container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px;
    background-color: #fff;
    scroll-margin-top: 50px;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: black;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.discovery-header {
    text-align: center;
    margin-bottom: 50px;
}

.st-card-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Base Card Style */
.st-main-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 42px;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.2s ease;
}

/* Varian Warna */
.st-bg-pink {
    background-color: #5CCAA0;
}

.st-bg-blue {
    background-color: #B79AF2;
}

.st-bg-orange {
    background-color: #ECEE8C;
}

/* Header & Ilustrasi */
.st-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.st-icon-placeholder {
    font-size: 50px;
}

.st-eye-detail {
    font-weight: bold;
    font-size: 18px;
}

/* Badge */
.st-badge-tag {
    font-family: 'Poppins', sans-serif;
    align-self: flex-start;
    padding: 6px 16px;
    border: 1.5px solid #000;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Typography */
.st-title-text {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.st-body-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0 0 30px 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.75);
}

/* Button */
.st-button-play {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s;
}

.st-button-play:hover {
    transform: scale(1.05);
}

.st-circle-play {
    background-color: #fff;
    color: #000;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

/* end */

/* sweet alert */

/* Custom Class untuk SweetAlert */
.quiz-popup {
    border-radius: 20px !important;
    padding: 2em !important;
}

.quiz-title {
    color: #2d3436;
    font-weight: 800;
}

/* Mempercantik tampilan opsi radio */
.swal2-radio {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start !important;
    text-align: left;
}

.swal2-radio label {
    background: #f1f2f6;
    padding: 12px 20px;
    border-radius: 10px;
    margin: 0 !important;
    transition: 0.3s;
    border: 2px solid transparent;
}

.swal2-radio label:hover {
    background: #e0e0e0;
}

.swal2-radio input:checked+span {
    font-weight: bold;
    color: #3D9CFB;
}

/* sweet audio */
.spotify-audio {
    background: #f6faff;
    padding: 16px;
    border-radius: 16px;
}

.audio-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.audio-cover {
    width: 52px;
    height: 52px;
    background: #abd2f8;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.audio-text span {
    font-size: 12px;
    color: #636e72;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #1e90ff;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#progress {
    flex: 1;
    height: 6px;
    border-radius: 10px;
    appearance: none;
    background: #dbe9ff;
}

#progress::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: #1e90ff;
    border-radius: 50%;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #636e72;
    margin-top: 8px;
}

/* allet test */
.swal2-container {
    font-family: 'Poppins', sans-serif !important;
}

/* Mempercantik pilihan jawaban */
.swal2-radio {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    align-items: stretch !important;
}

.swal2-radio label {
    font-size: 14px !important;
    background: #f8f9fa;
    padding: 12px 15px !important;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.swal2-radio label:hover {
    background: #f0f7ff;
    border-color: #3D9CFB;
}

/* end sweet alert */

/* cara kerja ai model flow */
.how-it-works {
    padding: 80px;
    background-color: #fff;
    scroll-margin-top: 100px;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: black;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.flow-step {
    opacity: 0;
    transform: translateY(30px);
}

.flow-arrow {
    transform: scaleX(0);
    transform-origin: left;
}

.flow-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    z-index: 2;
}

.step-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 0.8;
    color: #f0f0f0;
    margin-bottom: -20px;
    transition: 0.3s;
}

.flow-step:hover .step-num {
    color: #000;
    transform: translateX(10px);
}

.step-green {
    --step-color: #2FAF8F;
}

.step-purple {
    --step-color: #7C6DE6;
}

.step-yellow {
    --step-color: #E6C84F;
}

.flow-step:hover .step-num {
    color: var(--step-color);
    transform: translateX(10px);
}

.step-content h3 {
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #000;
    position: relative;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.flow-arrow {
    flex: 0.2;
    height: 2px;
    color: #d0d0d0;
    background: #d0d0d0;
    margin-top: 40px;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 992px) {
    .how-it-works {
        padding: 80px 24px;
        scroll-margin-top: 10px;
    }

    .flow-container {
        flex-direction: column;
        gap: 50px;
    }

    .flow-arrow {
        display: none;
    }

    .flow-step {
        padding: 0;
        border-left: 2px solid #eee;
        padding-left: 30px;
    }

    .step-num {
        font-size: 3.5rem;
    }
}

/* end */

/* flow test belajar */
.at-section {
    padding: 80px 0;
    background-color: #fff;
    scroll-margin-top: 100px;
}

.at-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.at-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
}

.at-flow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 10px;
}

.at-step {
    flex: 1;
    text-align: left;
    padding: 0 15px;
}

/* Bagian Ilustrasi Baru */
.at-illustration {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.at-illustration img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

.at-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 0.8;
    color: #f0f0f0;
    margin-bottom: -15px;
    transition: 0.3s ease;
}

.at-step:hover .at-num {
    color: var(--at-color);
    transform: translateX(10px);
}

.at-content h3 {
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 10px;
}

.at-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Panah Penghubung */
.at-arrow {
    flex: 0.15;
    height: 2px;
    background: #e0e0e0;
    margin-top: 170px;
    position: relative;
}

.at-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 992px) {
    .at-section {
        scroll-margin-top: 10px;
    }

    .at-flow-container {
        flex-direction: column;
        gap: 50px;
    }

    .at-arrow {
        display: none;
    }

    .at-step {
        border-left: 2px solid #eee;
        padding-left: 30px;
        margin-left: 10px;
    }

    .at-illustration {
        justify-content: flex-start;
        height: 100px;
    }

    .at-num {
        font-size: 3.5rem;
    }
}

/* flow test belajar end */

/* achivement */
.achievements {
    background-color: #fff;
    text-align: center;
    padding: 80px 24px;
    scroll-margin-top: 100px;
}

.achievements h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.achievements p {
    color: #666;
    margin-bottom: 60px;
}

/* grid layout */
.badge-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* badge card */
.badge {
    border-radius: 22px;
    padding: 26px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* warna beda dikit tiap badge */
.badge.bronze {
    background: linear-gradient(135deg, #FFE6C7, #FFD4A3);
}

.badge.silver {
    background: linear-gradient(135deg, #EAF3FF, #D6E8FF);
}

.badge.gold {
    background: linear-gradient(135deg, #FFF4C2, #FFE08A);
}

.badge.master {
    background: linear-gradient(135deg, #F6E8FF, #E6CCFF);
}

.badge img {
    width: 90px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.badge span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

/* hover effect */
.badge:hover {
    transform: translateY(-6px) scale(1.03);
}

.badge:hover img {
    transform: rotate(-6deg) scale(1.1);
}

/* locked badge */
.badge.locked {
    opacity: 0.4;
    filter: grayscale(100%);
}

.badge.locked:hover {
    transform: none;
    box-shadow: none;
}

/* resvonsive */
@media (max-width: 600px) {
    .achievements {
        scroll-margin-top: 20px;
    }

    .achievements h2 {
        font-size: 1.8rem;
    }

    .badge-wall {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 24px;
    }

    .badge img {
        width: 70px;
    }
}

/* achivement end */

/* team anggota */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.member {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anggota-kami {
    background-color: #fff;
    width: 100%;
    scroll-margin-top: 40px;
}

.podcaster-cards-wrapper {
    position: relative;
    margin-right: calc(-1 * (100vw - 100%) / 2);
}

.podcaster-section {
    padding: 40px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.orange {
    background: #FF8D28;
}

.blue {
    background: #3D9CFB;
}

.purple {
    background: #B79AF2;
}

.green {
    background: #43A574;
}

.green-light {
    background: #5CCAA0;
}

.yellow {
    background: #FFD25A;
}

.yellow-light {
    background: #E6C84F;
}

.podcaster-grid {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    align-items: flex-end;
    height: 450px;
}

.podcaster-grid::-webkit-scrollbar {
    display: none;
}

.card-anggota {
    flex: 0 0 250px;
    scroll-snap-align: start;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 25px 20px 0 20px;
    height: 380px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-decoration img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.8;
    transition: transform 0.6s ease;
}

.card.active .card-decoration img {
    transform: scale(1.1);
}

.card-anggota.active {
    flex: 0 0 500px;
}

.card-anggota img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 85%;
    object-fit: contain;
    object-position: bottom;
    margin-top: auto;
    transform: scale(1.1);
}

.card-anggota.active img {
    transform: scale(1.8);
    z-index: 5;
}

.card-anggota.custom-zoom.active img {
    transform: scale(1) !important;
}

.card-anggota img {
    width: 100%;
    height: 85%;
    object-fit: contain;
    object-position: bottom;
    margin-top: auto;
    transition: transform 0.5s ease;
}

.info {
    position: relative;
    z-index: 10;
}

.info h2 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.card-anggota.active .info h2 {
    font-size: 1.8rem;
}

.streams {
    color: #000;
    padding: 5px 5px;
    font-weight: 600;
    display: inline-flex;
    gap: 15px;
    transition: 0.3s;
    font-size: 20px;
    background: #fff;
    border-radius: 8px;
    line-height: 1;
    opacity: 0;
}

.streams a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streams a:hover {
    transform: scale(1.2);
}

.card-anggota.active .streams {
    opacity: 1;
}

@media (max-width: 768px) {
    .anggota-kami {
        scroll-margin-top: 130px;
    }

    .member {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .header-wrapper {
        margin-bottom: 10px;
        padding: 0 5px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .podcaster-section {
        padding: 20px 5%;
    }

    .podcaster-grid {
        height: 350px;
        padding-right: calc(50vw - 200px);
    }

    .card-anggota {
        height: 300px;
    }

    .card-anggota.active {
        flex: 0 0 400px;
    }
}

/* team end */

/* footer */
.main-footer {
    background-color: #f8fafc;
    color: #0f172a;
    padding: 100px 5% 40px;
    display: flex;
    justify-content: center;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

/* Branding */
.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 7px;
    margin-bottom: 12px;
    color: #0f172a;
}

.footer-line {
    width: 44px;
    height: 2px;
    background-color: #3D9CFB;
    margin: 22px auto;
}

.footer-subtitle {
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #475569;
    letter-spacing: 0.2px;
    margin-bottom: 64px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Members Grid */
.members-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 72px;
}

.member-box {
    text-align: left;
    border-left: 2px solid #e2e8f0;
    padding-left: 18px;
    transition: border-color 0.2s ease;
}

.member-box:hover {
    border-left-color: #3D9CFB;
}

.nim {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.name {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    color: #0f172a;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #64748b;
    margin: 0;
}

/* Styling Link Sosial Media */
.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #3D9CFB;
}

/* Responsive: Jika di layar HP, tumpuk kembali ke tengah */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .footer-brand {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
}

/* end */