/* =========================================
   1. GLOBAL VARIABLES & THEME
   ========================================= */
:root {
    /* --- COLORS: BACKGROUNDS --- */
    --color-bg-primary: #050505;   /* Deep Black */
    --color-bg-secondary: #0A0A0A; /* Card/Section BG */
    
    /* --- COLORS: TEXT --- */
    --color-text-light: #F0F0F0;
    --color-text-grey: #AAAAAA;
    
    /* --- COLORS: ACCENTS --- */
    --color-accent-cyan: #00FFFF;  /* Main Brand Color */
    --color-accent-purple: #bc13fe; 
    
    /* --- COLORS: FUNCTIONAL (NEON) --- */
    --color-neon-primary: #00A6FF;
    --color-neon-success: #00FF88;
    --color-error: #FF3333;
    
    /* --- TYPOGRAPHY --- */
    --font-primary: 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* --- EFFECTS --- */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow-cyan: 0 0 15px rgba(0, 255, 255, 0.3);
    
    /* --- LAYOUT --- */
    --header-height: 80px;
    --section-spacing: 80px;
    
    /* --- TRANSITIONS --- */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* { margin:0; padding:0; box-sizing:border-box; }

html { 
    scroll-behavior: smooth; 
    font-size: 16px;
}

body { 
    font-family: var(--font-primary); 
    background-color: var(--color-bg-primary); 
    color: var(--color-text-light); 
    overflow-x: hidden; 
    min-height: 100vh;
    line-height: 1.6;
    /* Grid Background Effect */
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin-bottom: 1.5rem; }

a { 
    text-decoration:none; 
    color:var(--color-accent-cyan); 
    transition: var(--transition-fast); 
}
a:hover { opacity: 0.8; }
a:focus { outline: 2px solid var(--color-accent-cyan); outline-offset: 2px; }

ul { list-style:none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   3. LAYOUT UTILITIES
   ========================================= */
.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1rem;
}

/* GLOBAL SECTION SPACING FIX */
section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    position: relative;
}

/* Special Case: Hero doesn't need top padding because it's 100vh */
section.hero {
    padding-top: var(--header-height);
    padding-bottom: 0;
}

.section-title { 
    font-size: 2rem; 
    font-weight: 700;
    text-align: center; 
    margin-bottom: 3rem; 
    color: var(--color-text-light);
    border-left: 5px solid var(--color-accent-cyan);
    padding-left: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title.left-align { display: block; text-align: left; }

/* =========================================
   4. COMPONENTS
   ========================================= */

/* --- BUTTONS --- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, var(--color-accent-cyan), #00cece);
    color: #000 !important;
    border: none;
    /* Cyberpunk Cut Corner */
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: var(--transition-smooth);
    box-shadow: var(--glow-cyan);
    cursor: pointer;
    font-size: 0.9rem;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--color-accent-cyan);
    filter: brightness(1.2);
}

/* --- CARDS --- */
.card {
    background: rgba(10, 10, 10, 0.7); /* Glass effect */
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    
    /* FIX KRITIS: Hapus height: 100% agar kartu bisa memanjang sesuai konten */
    height: auto; 
    
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    height: var(--header-height);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent-cyan);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-cyan);
    transition: width 0.3s;
}
.nav-links li a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color-accent-cyan);
    color: var(--color-accent-cyan);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}

/* =========================================
   6. PAGE SECTIONS
   ========================================= */

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero h1 {
    font-size: 3.5rem;
    background: -webkit-linear-gradient(0deg, var(--color-accent-cyan), var(--color-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-grey);
    margin-bottom: 2rem;
}

.hero-info-box {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--color-accent-cyan);
    padding: 2rem;
    border-radius: 8px;
    max-width: 350px;
    backdrop-filter: blur(5px);
    box-shadow: var(--glow-cyan);
}

/* --- FORMS --- */
.large-form-section {
    background: var(--color-bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-text-grey);
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

input:focus, textarea:focus {
    border-color: var(--color-accent-cyan);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* --- TESTIMONIALS --- */
.testimonial-slider-container {
    position: relative;
    min-height: 350px; /* Ensure space for content */
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-bg-secondary);
    padding: 2rem;
    border-left: 5px solid var(--color-accent-cyan);
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-content.active {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .testimonial-content {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
}

/* --- FAQ & SUBSCRIBE (Grid Fix) --- */
.faq-subscribe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 900px) {
    .faq-subscribe-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* =========================================
   7. FOOTER
   ========================================= */
#main-footer {
    background: var(--color-bg-secondary);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =========================================
   8. SPECIAL ELEMENTS (Floating UI)
   ========================================= */
#whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 2000;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    font-size: 2rem;
    transition: transform 0.3s ease;
}
#whatsapp-float:hover { transform: scale(1.1); }

/* Background Glows */
#background-wave-top, #background-wave-bottom {
    position: fixed;
    width: 100%; height: 200px;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}
#background-wave-top { top: -100px; background: radial-gradient(circle, var(--color-accent-purple), transparent); }
#background-wave-bottom { bottom: -100px; background: radial-gradient(circle, var(--color-accent-cyan), transparent); }

/* =========================================
   9. RESPONSIVE / MOBILE
   ========================================= */
@media (max-width: 900px) {
    .hero-info-box { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    
    .nav-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-bg-primary);
        flex-direction: column;
        align-items: center;
        gap: 0;
        border-bottom: 1px solid var(--color-accent-cyan);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    
    .nav-links.active { max-height: 500px; padding-bottom: 2rem; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links li a { display: block; padding: 1rem; }
    
    .input-group { flex-direction: column; gap: 1rem; }
}

/* =========================================
   10. LIGHT MODE (Optional Preference)
   ========================================= */
@media (prefers-color-scheme: light) {
    :root {
        --color-bg-primary: #f8f9fa;
        --color-bg-secondary: #ffffff;
        --color-text-light: #1a1a1a;
        --color-text-grey: #555;
        --shadow-card: 0 10px 25px rgba(0,0,0,0.1);
    }
    header { background: rgba(255,255,255,0.9); border-bottom: 1px solid #ddd; }
    .card { background: rgba(255,255,255,0.8); border: 1px solid #eee; color: #333; }
    .nav-links li a { color: #333; }
    .nav-links.active { background: #fff; }
    #main-footer { background: #fff; border-top: 1px solid #eee; }
}

/* =========================================
   FIX FINAL: AGENT PROFILE (FORCE LAYOUT)
   ========================================= */

/* Tampilan HP (Mobile) - DIPAKSA TURUN KE BAWAH */
.profile-container {
    display: block !important; /* Paksa mode blok, bukan flex */
    text-align: center !important;
    padding: 2rem !important;
    height: auto !important; /* Pastikan tinggi menyesuaikan isi */
}

/* Kotak Gambar di HP */
.profile-img-box {
    display: flex;
    justify-content: center;
    margin-bottom: 25px !important; /* Jarak paksa ke bawah */
    width: 100%;
}

/* Lingkaran Avatar */
.profile-avatar {
    width: 120px;
    height: 120px;
    background: #050505;
    border: 2px solid var(--color-accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar i {
    font-size: 3.5rem;
    color: var(--color-accent-cyan);
}

/* Teks di HP */
.profile-content-box {
    width: 100%;
}

.profile-name {
    color: var(--color-accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.profile-role {
    color: #888;
    font-family: monospace;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Tampilan PC/Tablet (Layar Lebar) - BARU JADI SEBELAHAN */
@media (min-width: 768px) {
    .profile-container {
        display: flex !important; /* Kembali ke flex di PC */
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 30px;
    }

    .profile-img-box {
        width: auto;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }
    
    .profile-avatar {
        width: 150px;
        height: 150px;
    }
}

/* =========================================
   UPDATE: TIMELINE / EVOLUTION LOGS STYLING
   ========================================= */

/* 1. MEMBERIKAN JARAK ANTAR SEKSI (Sesuai Request) */
#evolution-logs {
    margin-top: 120px !important;    /* Jarak jauh dari Kunci Protokol */
    margin-bottom: 120px !important; /* Jarak jauh sebelum Agent Profile */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Jarak judul "EVOLUTION LOGS" ke konten timeline */
#evolution-logs .section-title {
    margin-bottom: 4rem !important;
}

/* 2. STRUKTUR TIMELINE */
.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Jarak antar kotak (Phase 1 ke Phase 2) */
    position: relative;
}

/* Garis vertikal tipis di tengah (Opsional - Estetik) */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent-cyan), transparent);
    z-index: -1;
    opacity: 0.3;
}

/* 3. STYLING BADGE (PHASE 01, PHASE 02, DST) */
.phase-badge {
    display: table; /* Agar lebar menyesuaikan teks */
    margin: 0 auto 1.5rem auto; /* Rata tengah & jarak bawah */
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--color-accent-cyan);
    color: var(--color-accent-cyan);
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    z-index: 2;
    position: relative;
}

/* 4. STYLING KOTAK KONTEN (Meniru Style Agent Profile) */
.log-card-style {
    text-align: center !important; /* Teks Rata Tengah */
    padding: 2.5rem 2rem !important;
    background: #050505 !important; /* Background Gelap Pekat */
    border: 1px solid rgba(0, 255, 255, 0.25) !important;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto; /* Rata tengah container */
    position: relative;
    /* Efek Glow Halus */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.log-card-style h3 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.log-card-style p {
    color: var(--color-text-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Efek Hover Keren */
.timeline-block:hover .phase-badge {
    background: var(--color-accent-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--color-accent-cyan);
}

.timeline-block:hover .log-card-style {
    border-color: var(--color-accent-cyan) !important;
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* Mobile Fix (Menghilangkan garis tengah di HP biar bersih) */
@media (max-width: 768px) {
    .timeline-wrapper::before {
        display: none;
    }
}

/* =========================================
   FIX HOMEPAGE: JARAK & KERAPIHAN (FINAL)
   ========================================= */

/* 1. JARAK HERO DARI MENU UTAMA */
/* Menambah jarak atas agar judul tidak ketutup menu */
#hero {
    padding-top: 160px !important; 
    padding-bottom: 100px !important;
}

/* 2. JARAK ANTAR SEKSI (SECTION SPACING) */
/* Memberikan nafas lega antar bagian */
main section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* 3. HOW DO WE WORK (RAPIHKAN KOTAK) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: 0.3s;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent-cyan);
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1); /* Angka transparan besar */
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.process-card:hover .process-number {
    color: var(--color-accent-cyan); /* Menyala saat hover */
}

/* 4. BENEFITS (RAPIHKAN KOTAK) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card-style {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
}

.benefit-card-style h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.benefit-card-style ul li {
    margin-bottom: 10px;
    color: #888;
    padding-left: 0;
    list-style: none;
    position: relative;
}

/* 5. FORMULIR (JARAK TOMBOL & INPUT) */
#ready-to-launch {
    margin-top: 50px; /* Tambahan jarak dari section sebelumnya */
}

.form-wrapper {
    background: #080808;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px; /* Jarak antar baris input */
}

/* Input & Select & Textarea */
input, select, textarea {
    background: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important; /* Reset default margin */
}

textarea {
    margin-bottom: 25px !important; /* Jarak khusus dari textarea ke tombol */
}

/* 6. LATEST NEWS (KARTU GAMBAR) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
}

/* 7. MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column; /* Input nama & email jadi atas-bawah di HP */
        gap: 0;
    }
    .input-group input, .input-group select {
        margin-bottom: 20px !important;
    }
    
    #hero {
        padding-top: 140px !important;
        text-align: center;
    }
}

/* =========================================
   FINAL STABLE CSS: FAQ ACCORDION
   ========================================= */

/* 1. Pembungkus Item */
.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item.active {
    border-color: var(--color-accent-cyan); /* Border menyala */
    background: rgba(255, 255, 255, 0.08);
}

/* 2. Tombol Header (Fungsional & Rapi) */
.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

/* Ikon Plus (+) */
.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent-cyan);
    font-weight: bold;
    transition: 0.3s;
}

/* Ikon Minus (-) saat aktif */
.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

/* 3. Kontainer Jawaban (Disembunyikan) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.3);
    padding: 0 20px; /* Hanya padding kiri-kanan */
    display: block;
}

/* 4. Teks Jawaban (Penting untuk Jarak & Warna) */
.accordion-content p {
    margin: 0;
    padding-top: 20px;    
    padding-bottom: 20px; 
    color: #ffffff !important; /* Memaksa warna putih terang */
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 1;
    display: block;
}

/* =========================================
   FIX PYTHON PAGE: Jarak Modul & Kerapihan
   ========================================= */

/* Tingkatkan jarak antar modul (TERMINAL ITEM) */
.terminal-item {
    margin-bottom: 3.5rem; /* Jarak antar modul ditingkatkan */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2); 
    padding-bottom: 2.5rem;
    transition: 0.3s;
}

/* Membuat prefix [MODULE 01] lebih menonjol */
.terminal-prefix {
    color: var(--color-neon-secondary); /* Warna Neon */
    font-size: 1.1rem;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    display: inline-block;
    border-left: 5px solid var(--color-neon-success); /* Garis hijau di kiri */
    padding-left: 10px;
    font-weight: 700;
}

/* Tingkatkan jarak di sekitar judul modul */
.terminal-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

/* Tingkatkan jarak setelah tag */
.tag-group {
    margin-top: 1.5rem;
}

/* Tambahkan efek hover pada modul */
.terminal-item:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: var(--color-neon-success);
    transform: translateX(5px);
}

/* =========================================
   FIX PRIVACY PAGE: LEGAL READABILITY & SPACING
   ========================================= */

/* Tingkatkan jarak antar blok legal utama (Section 1, 2, 3, 4) */
#privacy-content h2 {
    margin-top: 4rem !important; /* Jarak masif antara section utama */
    margin-bottom: 2rem !important;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1); /* Garis pemisah halus */
    padding-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--color-accent-cyan);
}

/* Jarak antar sub-point (1.1, 1.2, dst) */
.legal-point {
    margin-bottom: 2.5rem;
    padding-left: 20px; /* Ditingkatkan dari 10px ke 20px */
    border-left: 5px solid var(--color-accent-purple); /* Garis ungu lebih tebal */
    transition: 0.3s;
}
.legal-point:hover {
    border-color: var(--color-accent-cyan);
}


/* Styling untuk sub-judul [1.1. DATA IDENTITAS] */
.legal-heading {
    font-family: var(--font-mono); /* Monospace untuk kesan protokol */
    color: var(--color-neon-success); /* Warna Neon Green agar menonjol */
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
}

/* Styling untuk list item (agar bullet point terlihat jelas) */
#privacy-content ul {
    list-style-type: none;
    padding-left: 0;
}
#privacy-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--color-text-grey);
}
#privacy-content ul li::before {
    content: '▹'; /* Bullet point unik */
    position: absolute;
    left: 0;
    color: var(--color-neon-success);
    font-size: 1.2rem;
    line-height: 1;
}

/* =========================================
   FIX FINAL: Z-INDEX, SPACING, DAN OVERLAP
   ========================================= */

/* 1. LAYER MANAGEMENT (Z-INDEX) */
/* (Overlap ini mungkin tidak perlu diubah, tapi kita pastikan ulang agar selalu di depan) */
header { z-index: 1000 !important; }
#whatsapp-float { z-index: 1001 !important; } 

/* Berikan MAIN dan CARD konteks posisi yang jelas */
main { 
    position: relative; 
    z-index: 10; 
}

.card {
    position: relative;
    z-index: 20; /* Card lebih tinggi dari main, tapi lebih rendah dari footer */
}

/* Pastikan FOOTER berada di lapisan atas konten utama */
#main-footer {
    position: relative; 
    z-index: 50; /* Z-index yang pasti lebih tinggi dari 10 (main) dan 20 (card) */
}

/* 2. SPACING FIX: MEMAKSA JARAK BAWAH */
/* Tambahkan jarak dari card terakhir ke footer agar footer tidak naik/overlap */
.container + #main-footer {
    margin-top: 50px; 
}
