/* ==============================================
   GLOBAL STYLES & VARIABLES FOR FSDM OFFLINE
============================================== */
:root {
    --color-primary: #820AE5;
    --color-primary-light: #a94793;
    --color-primary-dark: #2b0e4a;
    --color-text-digibos: #1E0633;
    --color-dark: #333333;
    --color-yellow: #FFD700;
    --color-secondary: #e5007e;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.fsdm-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 2.2rem; font-weight: 800; text-align: center; margin-bottom: 40px; }
.text-digibos { color: var(--color-text-digibos); }
.text-dark { color: var(--color-dark); }
.text-black { color: #000; }
.text-white { color: #fff; }

/* Global Button Styles */
.btn-yellow, .btn-outline {
    padding: 12px 25px; border-radius: 8px; font-weight: bold; text-decoration: none; 
    transition: 0.3s; display: inline-block; text-align: center;
}
.btn-yellow { background: var(--color-yellow); color: #000; }
.btn-outline { background: var(--color-primary); border: 2px solid #fff; color: #fff; }
.btn-yellow:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4); background: #ffea00; }
.btn-outline:hover { transform: translateY(-4px) scale(1.02); background: #ffffff; color: var(--color-primary); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3); border-color: #ffffff; }

/* Global Mobile Slider Controller */
.mobile-slider-container { position: relative; width: 100%; }
.slider-wrapper { display: flex; width: 100%; }
.slider-dots { display: none; }
.slider-dots .dot { width: 10px; height: 10px; background: #ccc; border-radius: 50%; transition: 0.3s ease; cursor: pointer;}
.slider-dots .dot.active { background: var(--color-primary); width: 25px; border-radius: 5px; }

/* --- GLOBAL: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Padding ekstra di kiri kanan agar tidak mepet browser tablet */
    .fsdm-container, .fsdm-hero-container { padding: 0 50px !important; }
    .section-title { font-size: 1.9rem; } /* Font disusutkan proporsional */
}

/* --- GLOBAL: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; margin-bottom: 30px; }
    .mobile-slider-container { overflow: hidden; padding-bottom: 10px; }
    .slider-wrapper { flex-wrap: nowrap; align-items: stretch; gap: 0 !important; }
    .slider-slide { flex: 0 0 100%; width: 100%; padding: 0 10px; box-sizing: border-box; }
    .slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
}


/* ==============================================
   1. HERO SECTION
============================================== */
.fsdm-hero { position: relative; background: url('https://digibos.id/wp-content/uploads/2026/04/hero_fsdm_offline.webp') center/cover no-repeat; display: flex; align-items: center; min-height: 100vh; }
.fsdm-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--color-primary) 0%, rgba(130,10,229, 0.8) 45%, transparent 100%); z-index: 1; }

.fsdm-hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.fsdm-hero-left { position: relative; }
.fsdm-hero-left h1 { color: #fff; font-size: 3rem; font-weight: 900; margin-bottom: 10px; }
.fsdm-hero-left h2 { color: #fff; font-size: 1.5rem; font-weight: 600; opacity: 0; margin-bottom: 20px; }
.fsdm-hero-left p { color: #fff; font-size: 1rem; line-height: 1.6; margin-bottom: 30px; }
.fsdm-hero-buttons { display: flex; gap: 15px; }

.reveal-wrapper { display: inline-block; overflow: hidden; vertical-align: bottom; }
.reveal-word { display: inline-block; transform: translateY(110%); opacity: 0; animation: slideUpReveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }
@keyframes slideUpReveal { to { transform: translateY(0); opacity: 1; } }

.highlight-stabilo { background-image: linear-gradient(120deg, var(--color-secondary) 0%, var(--color-secondary) 100%); background-repeat: no-repeat; background-size: 0% 35%; background-position: 0 90%; padding: 0 4px; color: #fff; transition: background-size 1.2s cubic-bezier(0.4, 0, 0.2, 1); }
.highlight-stabilo.active { background-size: 100% 35%; }

.fsdm-hero-right { position: relative; min-height: 450px; }
.hero-bottom-icons { position: absolute; bottom: -10px; left: 0; width: 100%; display: flex; flex-wrap: wrap; gap: 12px; }
.icon-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; padding: 8px 15px; display: flex; align-items: center; gap: 10px; color: #fff; font-size: 0.85rem; font-weight: 700; opacity: 0; transform: translateY(20px); animation: fadeUpIcon 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }
.icon-card img { width: 25px; height: 25px; object-fit: contain; animation: subtleIconPulse 2.5s infinite ease-in-out; }

@keyframes fadeUpIcon { to { opacity: 1; transform: translateY(0); } }
@keyframes subtleIconPulse { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px transparent); } 50% { transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5)); } }

.anim-1 { animation-delay: 1.2s; } .anim-2 { animation-delay: 1.4s; } .anim-3 { animation-delay: 1.6s; } .anim-4 { animation-delay: 1.8s; } .anim-5 { animation-delay: 2.0s; } .anim-6 { animation-delay: 2.0s; }
.anim-1 img { animation-delay: 0s; } .anim-2 img { animation-delay: 0.4s; } .anim-3 img { animation-delay: 0.8s; } .anim-4 img { animation-delay: 1.2s; } .anim-5 img { animation-delay: 1.6s; } .anim-6 img { animation-delay: 1.6s; }

/* --- HERO: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .fsdm-hero-container { gap: 20px; }
    .fsdm-hero-left h1 { font-size: 2.4rem; }
    .fsdm-hero-left h2 { font-size: 1.3rem; }
    .fsdm-hero-right { min-height: 400px; }
}

/* --- HERO: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-hero { padding-top: 100px; align-items: flex-start; min-height: auto; padding-bottom: 60px;}
    .fsdm-hero-container { grid-template-columns: 1fr; gap: 20px;}
    .fsdm-hero-left h1 { font-size: 2.2rem; }
    .fsdm-hero-left h2 { font-size: 1.2rem; }
    .fsdm-hero-buttons { flex-direction: column; gap: 12px; margin-bottom: 20px; }
    .btn-yellow, .btn-outline { padding: 12px 16px; font-size: 0.95rem; }
    .fsdm-hero-right { min-height: auto; }
    .hero-bottom-icons { position: relative; bottom: 0; justify-content: center; }
}


/* ==============================================
   2. SUKSES SECTION
============================================== */
.fsdm-sukses { margin-top: 40px; margin-bottom: 60px; position: relative; z-index: 10; display: flex; justify-content: center; padding: 0 20px; }
.sukses-card { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://digibos.id/wp-content/uploads/2023/06/seo-bootcamp-min.webp') center/cover; border-radius: 25px; padding: 40px 50px; display: flex; gap: 30px; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transform: translateY(50px); opacity: 0; transition: all 1s ease; width: 100%; max-width: 1100px; box-sizing: border-box;}
.sukses-card.show { transform: translateY(0); opacity: 1; }
.sukses-item { text-align: center; color: #fff; flex: 1; }
.sukses-val { display: block; margin-bottom: 10px; color: var(--color-yellow); }
.sukses-label { font-size: 1rem; font-weight: 600; display: block; line-height: 1.4;}
.sukses-divider { width: 2px; height: 60px; background: rgba(255,255,255,0.2); flex-shrink: 0;}
.text-pulse-fomo { display: inline-block; color: var(--color-secondary); font-weight: 800; animation: textFomoPulse 1.5s infinite ease-in-out; }
@keyframes textFomoPulse { 0%, 100% { transform: scale(1); text-shadow: none; } 50% { transform: scale(1.08); color: #ff3399; text-shadow: 0 0 12px rgba(229, 0, 126, 0.6); } }

/* --- SUKSES: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .sukses-card { padding: 30px 20px; gap: 15px; border-radius: 20px;}
    .sukses-label { font-size: 0.85rem; }
    .sukses-val svg { width: 35px; height: 35px; }
}

/* --- SUKSES: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-sukses { margin-top: 50px; padding: 0 15px; }
    .sukses-card { flex-direction: column; gap: 20px; padding: 30px 20px; }
    .sukses-divider { width: 100%; height: 1px; }
}


/* ==============================================
   3. WHY US SECTION
============================================== */
.fsdm-whyus { position: relative; padding: 100px 0; background: url('https://digibos.id/wp-content/uploads/2023/08/top-view-tools-marketing.webp') center/cover fixed; border-radius: 50px 50px 0 0; overflow: hidden; }
.whyus-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 75% 30%, var(--color-primary) 0%, var(--color-primary-dark) 50%, #150524 100%); opacity: 0.93; z-index: 1; }
.fsdm-whyus .fsdm-container { position: relative; z-index: 2; }

.whyus-layout { display: flex; align-items: stretch; gap: 60px; }
.whyus-left { flex: 1.4; }
.whyus-grid-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.whyus-card { background: #ffffff; padding: 25px 20px; border-radius: 15px; border: 2px solid transparent; transition: all 0.3s ease; box-sizing: border-box; height: 100%;}
.whyus-card:hover { border-color: var(--color-yellow); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }

.wu-icon { font-size: 2.2rem; margin-bottom: 12px; }
.whyus-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--color-text-digibos); line-height: 1.4; font-weight: 800; }
.whyus-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }

.whyus-right { flex: 1; position: relative; }
.wu-img-wrapper { position: sticky; top: 100px; width: 100%; border-radius: 20px; z-index: 2; }
.wu-img-wrapper img { width: 100%; height: auto; object-fit: cover; border-radius: 20px; position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.wu-img-accent { position: absolute; top: 20px; right: -20px; width: 100%; height: 100%; border: 3px solid var(--color-yellow); border-radius: 20px; z-index: 1; transition: 0.4s ease; }
.wu-img-wrapper:hover .wu-img-accent { top: 10px; right: -10px; }

/* --- WHY US: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .whyus-layout { flex-direction: column; gap: 40px; }
    .whyus-left { flex: 1; }
    .whyus-right { flex: 1; padding-right: 20px; } /* Ruang untuk aksen kuning */
    .wu-img-wrapper { position: relative; top: 0; height: 350px; }
    .wu-img-wrapper img { height: 100%; }
}

/* --- WHY US: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-whyus { padding: 60px 0; border-radius: 30px 30px 0 0; }
    .whyus-layout { flex-direction: column; gap: 50px; }
    .whyus-grid-inner { grid-template-columns: 1fr; gap: 15px; }
    .whyus-right { padding-right: 20px; }
    .wu-img-wrapper { position: relative; top: 0; }
}


/* ==============================================
   4. WHO IS SECTION
============================================== */
.fsdm-whois { padding: 90px 0; background: #fdfdfd; }
.whois-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.whois-card-new { background: #ffffff; border-radius: 24px; position: relative; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: all 0.3s ease; padding-bottom: 35px; height: 100%; box-sizing: border-box; border: 1px solid #f0f0f0;}
.whois-card-new:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(130, 10, 229, 0.15); border-color: rgba(130, 10, 229, 0.2); }

.wi-cover { height: 85px; background: linear-gradient(135deg, rgba(130, 10, 229, 0.08) 0%, rgba(229, 0, 126, 0.08) 100%); border-radius: 24px 24px 0 0; }
.wi-avatar-new { width: 95px; height: 95px; border-radius: 50%; object-fit: cover; border: 4px solid #ffffff; box-shadow: 0 8px 25px rgba(0,0,0,0.12); margin-top: -47px; position: relative; z-index: 2; background: #fff; }
.wi-body { padding: 15px 25px 0 25px; }
.wi-body h3 { font-size: 1.15rem; color: var(--color-text-digibos); margin-bottom: 12px; font-weight: 800; }
.wi-body p { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }

/* --- WHO IS: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .whois-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* --- WHO IS: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-whois { padding: 60px 0; }
    .whois-grid { display: flex; gap: 0; }
    .whois-card-new { margin: 0 5px; } /* Jarak aman untuk shadow d slider mobile */
}


/* ==============================================
   5. TESTIMONI SECTION
============================================== */
.testimoni-section-new { background: radial-gradient(circle at 75% 30%, var(--color-primary) 0%, #2b0e4a 50%, #150524 100%); color: #fff; border-radius: 0 0 50px 50px; padding: 80px 20px; text-align: center; overflow: hidden; }
.testimoni-section-new .section-title {color: #fff}
.testimoni-section-new .section-subtitle { max-width: 700px; margin: 0 auto 40px auto; opacity: 0.9; line-height: 1.6; color: #fff}
.testimoni-slider-container { max-width: 1200px; margin: 0 auto; overflow: hidden; position: relative; }
.testimoni-grid-new { display: flex; gap: 30px; transition: transform 0.6s ease-in-out; will-change: transform; align-items: stretch; }

.testi-card { flex: 0 0 calc(33.333% - 20px); background: #fff; border-radius: 15px; padding: 30px; display: flex; flex-direction: column; text-align: left; box-sizing: border-box; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.t-stars { color: #FFD700; font-size: 1.3rem; margin-bottom: 10px; letter-spacing: 2px; }
.t-quote { font-style: italic; flex-grow: 1; color: var(--color-dark); margin-bottom: 20px; line-height: 1.5;}
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-info h4 { margin: 0 0 4px 0; font-size: 1rem; color: var(--color-dark); }
.author-info span { font-size: 0.8rem; color: var(--color-primary); font-weight: 700; }

/* --- TESTIMONI: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimoni-section-new { padding: 80px 50px; }
    .testimoni-grid-new { gap: 20px; }
    .testi-card { flex: 0 0 calc(50% - 10px); padding: 25px; }
}

/* --- TESTIMONI: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .testimoni-section-new { padding: 60px 15px; border-radius: 0 0 30px 30px;}
    .testimoni-grid-new { gap: 15px; }
    .testi-card { flex: 0 0 100%; padding: 25px;} 
}


/* ==============================================
   6. REASON SECTION (Kenapa Kediri?)
============================================== */
.fsdm-reason { padding: 100px 0; background: #ffffff; }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }

.reason-card { 
    background: linear-gradient(135deg, var(--color-primary) 0%, #e5007e 100%);
    border-radius: 100px; display: flex; align-items: stretch; overflow: hidden; 
    box-shadow: 0 15px 40px rgba(130, 10, 229, 0.15); transition: all 0.3s ease; border: 2px solid rgba(255, 255, 255, 0.1);
}
.reason-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(130, 10, 229, 0.3); }

.rc-img { flex: 0 0 45%; position: relative; z-index: 2; background: #f0f0f0; }
.rc-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.rc-content { flex: 0 0 55%; padding: 40px 35px 40px 30px; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.rc-content h3 { color: var(--color-yellow); font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.rc-content p { color: #ffffff; font-size: 0.85rem; line-height: 1.6; margin: 0; opacity: 0.95; }

/* --- REASON: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .reason-grid { grid-template-columns: 1fr; gap: 25px; } /* Jadikan 1 kolom agar gambar & text lega */
    .reason-card { border-radius: 50px; } /* Sesuaikan border agar tidak terlalu oval saat memanjang */
}

/* --- REASON: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-reason { padding: 60px 0; }
    .fsdm-reason .section-subtitle { margin-bottom: 35px !important; font-size: 0.95rem; }
    .reason-grid { grid-template-columns: 1fr; gap: 25px; }  
    .reason-card { flex-direction: column; border-radius: 30px; }  
    .rc-img { flex: auto; width: 100%; height: 220px; }   
    .rc-img img { position: relative; }  
    .rc-content { flex: auto; padding: 30px 25px; }  
    .rc-content h3 { font-size: 1.15rem; }
}


/* ==============================================
   7. KURIKULUM SECTION
============================================== */
.fsdm-kurikulum { padding: 80px 0; background: #fff; }
.kurikulum-layout { display: flex; gap: 40px; align-items: flex-start; }
.kurikulum-left { flex: 3; }
.kurikulum-right { flex: 1; overflow: hidden; position: relative; height: 450px; }

/* Grid 2 Kolom Desktop */
@media (min-width: 769px) {
    .k-accordion-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Jarak antar card */
    }
}

/* Card Ukuran Diperkecil */
.k-card { 
    border: 1px solid transparent; 
    border-radius: 10px; 
    background: #f9f9f9; 
    transition: border-color 0.3s ease; 
    box-sizing: border-box;
}
.k-card:hover { border-color: rgba(130, 10, 229, 0.3); }

/* Header & Toggle Size Perkecil */
.k-header { 
    padding: 12px 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
}
.k-header h4 { margin: 0; font-size: 0.95rem; font-weight: 700; color: var(--color-text-digibos); line-height: 1.3;}
.k-toggle { color: var(--color-primary); font-size: 1.3rem; font-weight: bold; transition: transform 0.3s; flex-shrink: 0; }
.k-card.active .k-toggle { transform: rotate(45deg); }

/* Body Content Size Perkecil */
.k-body { padding: 0 15px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.k-card.active .k-body { max-height: 200px; padding-bottom: 15px; }
.k-body p { margin: 0; font-size: 0.85rem; color: #555; line-height: 1.5; }

/* Marquee Track & Items (Image + Text) */
.marquee-track { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    animation: scrollVert 12s linear infinite; 
}
.marquee-item { 
    background: #f0f0f0; 
    padding: 10px 15px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 700; 
    font-size: 0.9rem;
    color: var(--color-text-digibos);
}

.marquee-item img { 
    max-width: 240px; 
    height: 60px; 
    object-fit: contain; 
    flex-shrink: 0;
}

@keyframes scrollVert { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

/* --- KURIKULUM: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .kurikulum-layout { flex-direction: column; }
    .kurikulum-right { width: 100vw; height: auto; padding: 10px 0; margin-left: -50px; }
    .marquee-track { flex-direction: row; width: max-content; animation: scrollHoriz 10s linear infinite; }
    .marquee-item { margin-left: 15px; }
    @keyframes scrollHoriz { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
}

/* --- KURIKULUM: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-kurikulum { padding: 60px 0; }
    .kurikulum-layout { flex-direction: column; }
    
    /* REVISI: Matikan efek slider horizontal, ubah jadi grid 1 kolom bertumpuk ke bawah */
    .k-accordion-wrapper { 
        display: grid !important; 
        grid-template-columns: 1fr !important; /* Memaksa 1 kolom */
        gap: 15px !important; /* Memberi jarak antar card saat ditumpuk vertikal */
    }
    
    /* REVISI: Bebaskan card dari jeratan lebar slider agar mengisi penuh grid */
    .k-accordion-wrapper .k-card {
        flex: none !important;
        width: 100% !important;
    }
    
    /* REVISI: Sembunyikan dots slider (jika HTML-nya masih ada) karena tidak diperlukan lagi */
    .kurikulum-left .slider-dots {
        display: none !important;
    }

    /* Pengaturan Marquee Logo Kanan Tetap Horizontal */
    .kurikulum-right { overflow: hidden !important; max-width: 100vw; width: 100%; margin-left: -20px;}
    .marquee-track { flex-direction: row !important; width: max-content !important; animation: scrollHoriz 6s linear infinite !important; }
    .marquee-item { flex-shrink: 0 !important; white-space: nowrap !important; margin-left: 15px;}
    @keyframes scrollHoriz { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
}

/* ==============================================
   8. PEMATERI SECTION
============================================== */
.pemateri-section-new { background: radial-gradient(circle at 75% 30%, var(--color-primary-light) 0%, #2b0e4a 50%, #150524 100%); border-radius: 50px 50px 0 0; padding: 100px 20px; text-align: center; overflow: hidden; }
.pemateri-carousel-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.pemateri-slider-viewport { overflow: hidden; width: 100%; padding: 15px 0; position: relative; }
.pemateri-carousel-wrapper { display: flex; gap: 20px; will-change: transform; align-items: stretch; }

.card-pemateri-new { flex: 0 0 calc(25% - 15px); background: #fff; border-radius: 20px; padding: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); display: flex; flex-direction: column; box-sizing: border-box; text-align: left; }
.pemateri-img-wrapper { background: #820AE5; border-radius: 25px 25px 25px 0; aspect-ratio: 1 / 1; overflow: hidden; margin-bottom: 20px; position: relative; }
.pemateri-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pemateri-info { flex-grow: 1; display: flex; flex-direction: column; }
.pemateri-name { font-size: 1.1rem; font-weight: 800; color: #1a1a1a; margin: 0 0 5px 0; }
.pemateri-desc { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }
.pemateri-separator { border-top: 1px solid #eaeaea; margin: 15px 0; }
.pemateri-footer { display: flex; justify-content: space-between; align-items: center; }
.pemateri-tutor-text { font-size: 0.85rem; color: #888; font-weight: 600; }

.nav-arrow-pemateri { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: white; color: var(--color-primary); border: none; border-radius: 50%; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.2); position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; transition: 0.3s; }
.nav-arrow-pemateri:hover { background: var(--color-primary); color: white; }
.nav-arrow-pemateri.prev { left: 0; }
.nav-arrow-pemateri.next { right: 0; }
.pemateri-dots-container { display: flex; justify-content: flex-start; gap: 10px; max-width: 1200px; margin: 20px auto 0; padding: 0 60px; }
.pemateri-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); border: 2px solid #fff; cursor: pointer; transition: 0.3s; }
.pemateri-dot.active { background: #fff; width: 30px; border-radius: 10px; }

/* --- PEMATERI: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .card-pemateri-new { flex: 0 0 calc(50% - 10px); } /* Menampilkan 2 kartu saja */
    .pemateri-carousel-container { padding: 0 50px; } /* Jarak panah diatur */
}

/* --- PEMATERI: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .pemateri-section-new { padding: 60px 15px; border-radius: 30px 30px 0 0;}
    .pemateri-carousel-container { padding: 0 45px; } 
    .card-pemateri-new { flex: 0 0 100%; } 
    .pemateri-dots-container { display: none; } 
    .nav-arrow-pemateri { width: 35px; height: 35px; font-size: 0.8rem;}
}


/* ==============================================
   9. PROGRAM SECTION
============================================== */
.fsdm-program { padding: 80px 0; background: #fff; }
.program-main-card-new { background: #ffffff; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.08); max-width: 550px; margin: 0 auto; padding: 50px 40px 40px 40px; position: relative; border: 2px solid var(--color-primary); box-sizing: border-box;}

.badge-live-zoom { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); background: #1a237e; color: #fff; padding: 10px 22px; border-radius: 50px; font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; gap: 8px; box-shadow: 0 10px 25px rgba(26, 35, 126, 0.4); border: 2px solid #fff; white-space: nowrap; z-index: 10;}
.badge-live-zoom svg { width: 18px; height: 18px; fill: #ffd700; animation: iconPulse 1.5s infinite; }
@keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

.p-title-new { font-size: 2.2rem; font-weight: 900; color: #1a237e; margin: 0 0 15px 0; line-height: 1.3; text-align: center;}
.p-desc-new { font-size: 1.05rem; color: #555; margin: 0 0 25px 0; line-height: 1.6; text-align: center;}
.p-pills-container { display: flex; justify-content: center; gap: 10px; margin-bottom: 35px; flex-wrap: wrap; }
.p-pill { background: #ffecb3; color: var(--color-text-digibos); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }

/* Testimoni Inner Slider */
.p-testi-slider-viewport { overflow: hidden; margin-bottom: 30px; position: relative; border-radius: 15px;}
.p-testi-track { display: flex; gap: 20px; will-change: transform; }
.p-testi-card { flex: 0 0 100%; background: #a94793; border-radius: 15px; display: flex; align-items: center; padding: 20px; box-sizing: border-box; gap: 15px; }
.p-testi-avatar-wrap { width: 60px; height: 60px; background: #000; border-radius: 10px 10px 10px 25px; overflow: hidden; flex-shrink: 0; border: 2px solid #ffb300; }
.p-testi-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.p-testi-name { color: #fff; font-size: 1.05rem; margin: 0 0 3px; font-weight: 800;}
.p-testi-role { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin: 0;}
.p-testi-dots { display: flex; justify-content: center; gap: 6px; margin-top: 15px; }
.p-dot { width: 6px; height: 6px; background: #ddd; border-radius: 50%; transition: 0.3s; }
.p-dot.active { background: #820AE5; width: 20px; border-radius: 5px; }

/* Accordion Info Kelas */
.p-benefit-accordion { margin: 0 0 15px 0; background: #f8f9fc; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.p-benefit-header { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 800; font-size: 1rem; color: #1a237e; }
.p-benefit-arrow { width: 20px; height: 20px; fill: #1a237e; transition: transform 0.3s; }
.p-benefit-accordion.active .p-benefit-arrow { transform: rotate(180deg); }
.p-benefit-body { max-height: 0; overflow: hidden; transition: max-height 0.3s; background: #fff; }
.p-benefit-accordion.active .p-benefit-body { max-height: 400px; overflow-y: auto;}
.p-benefit-list { list-style: none; padding: 15px 20px; margin: 0; border-top: 1px solid #e2e8f0; }
.p-benefit-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; color: #4a5568; font-weight: 500; line-height: 1.4;}
.p-benefit-list li:last-child { margin-bottom: 0; }
.check-icon { background: #e6ffed; color: #28a745; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.8rem; font-weight: 900; flex-shrink: 0; }

/* Jadwal Kelas (Statis) */
.p-schedule-block { margin: 0 0 25px 0; background: #f8f9fc; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.p-schedule-title { padding: 15px 20px; font-weight: 800; font-size: 1.05rem; color: var(--color-text-digibos); background: #f0f4fb; border-bottom: 1px solid #e2e8f0; }
.p-schedule-list { list-style: none; padding: 15px 20px; margin: 0; max-height: 220px; overflow-y: auto; }
.p-schedule-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; color: #4a5568; font-weight: 600; line-height: 1.4; }
.p-schedule-list li:last-child { margin-bottom: 0; }
.p-schedule-list::-webkit-scrollbar { width: 6px; }
.p-schedule-list::-webkit-scrollbar-track { background: transparent; }
.p-schedule-list::-webkit-scrollbar-thumb { background: #c5cae9; border-radius: 10px; }

/* Footer Harga */
.p-footer-new { display: flex; justify-content: space-between; align-items: flex-end; margin: 25px 0; border-top: 1px solid #eee; padding-top: 25px; }
.p-price-coret-new { color: #f39c12; text-decoration: line-through; font-weight: 800; font-size: 1.1rem; display: block; margin-bottom: 5px; }
.p-price-now-new { color: #1a237e; font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
.p-date-area { text-align: right; }
.p-date-label { display: block; font-size: 0.8rem; color: #5c6bc0; }
.p-date-val { display: block; font-size: 0.95rem; font-weight: 700; color: #3949ab; }

.btn-cta-new { display: block; width: 100%; text-align: center; background: #ea5a9a; color: var(--color-text-digibos); padding: 18px; border-radius: 12px; font-weight: 900; font-size: 1.15rem; text-decoration: none; transition: all 0.3s ease; box-sizing: border-box; animation: pulseGlowYellow 2s infinite; }
.btn-cta-new:hover { animation: none; transform: translateY(-4px) scale(1.02); background: #ffea00; box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4); }
@keyframes pulseGlowYellow { 0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.8); transform: scale(1); } 50% { transform: scale(1.015); } 70% { box-shadow: 0 0 0 18px rgba(255, 215, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); transform: scale(1); } }

/* --- PROGRAM: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .program-main-card-new { width: 100%; max-width: none; padding: 40px 30px; }
}

/* --- PROGRAM: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-program { padding: 60px 15px; }
    .program-main-card-new { padding: 40px 20px 25px 20px; margin-top: 15px;} 
    .p-title-new { font-size: 1.8rem; }
    .p-footer-new { flex-direction: column; align-items: center; gap: 15px; text-align: center;}
    .p-date-area { text-align: center; }
    .p-testi-card { flex-direction: column; text-align: center; }
}


/* ==============================================
   10. FAQ SECTION
============================================== */
.fsdm-faq { padding: 80px 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-card { border: 1px solid #eee; border-radius: 10px; margin-bottom: 15px; }
.faq-q { padding: 15px 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--color-text-digibos);}
.faq-q span { font-size: 1.5rem; color: var(--color-primary); transition: 0.3s; }
.faq-card.active .faq-q span { transform: rotate(45deg); color: #e5007e;}
.faq-a { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: #555; }
.faq-card.active .faq-a { max-height: 200px; padding-bottom: 15px; }

/* --- FAQ: TABLET OPTIMIZATION --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq-grid { grid-template-columns: 1fr; gap: 0; } /* FAQ jauh lebih nyaman dibaca dalam 1 kolom panjang di tablet */
    .faq-q { font-size: 0.95rem; }
}

/* --- FAQ: MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .fsdm-faq { padding: 60px 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
}