@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
    src: local('Font Awesome 6 Free');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
    src: local('Font Awesome 6 Brands');
}
        /* ================= VARIABLES ================= */
        :root {
            --bg-main: #ffffff;
            --bg-alt: #f4f7fb;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --primary-blue: #1e3a8a;
            --primary-pink: #db2777;
            --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
            --border-color: #e2e8f0;
            --card-bg: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.8);
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        [data-theme="dark"] {
            --bg-main: #0b1120;
            --bg-alt: #111827;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --primary-blue: #3b82f6;
            --primary-pink: #f472b6;
            --border-color: #1e293b;
            --card-bg: #1e293b;
            --glass-bg: rgba(15, 23, 42, 0.8);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
        }
    /* ================= CSS SEO MEGA-CONTENT (OPTIMAL & RELEVANT) ================= */
.seo-mega-section {
    position: relative;
    background: var(--bg-main);
    padding: 80px 0;
    overflow: hidden;
}

/* Optimasi Blob Background: Menghapus blur berat diganti gradien transparan agar mobile ringan */
.blob-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.blob-1 { 
    top: 0; 
    left: -10%; 
    width: 300px; 
    height: 300px; 
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%); 
}
.blob-2 { 
    bottom: 0; 
    right: -10%; 
    width: 300px; 
    height: 300px; 
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%); 
}

/* Container Kartu Artikel */
.mega-article-card {
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.mega-article-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-lg);
}

/* Animasi Ikon Berdenyut Ringan */
.icon-pulse {
    animation: pulseIcon 2.5s infinite ease-in-out;
}
@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(219, 39, 119, 0.2); }
}

/* Tipografi & Layout Teks */
.mega-title { font-size: 2.2rem; line-height: 1.3; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--text-main); }
.mega-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px; line-height: 1.6; }

.chapter-box { margin-bottom: 40px; }

.chapter-title { 
    font-size: 1.35rem; 
    color: var(--text-main); 
    margin-bottom: 18px; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 12px;
}
.chapter-icon {
    background: rgba(219, 39, 119, 0.1);
    color: var(--primary-pink);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.chapter-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-align: justify;
}
.chapter-text strong { color: var(--text-main); font-weight: 700; }
.chapter-text a { color: var(--primary-pink); transition: 0.2s; }
.chapter-text a:hover { color: var(--primary-blue); text-decoration: underline; }

/* CSS Baru untuk Penutup Box */
.mega-content-footer {
    background: rgba(30, 58, 138, 0.03); 
    padding: 35px; 
    border-radius: 20px; 
    border-left: 5px solid var(--primary-pink); 
    margin-top: 30px; 
    position: relative; 
    overflow: hidden;
}
[data-theme="dark"] .mega-content-footer { background: rgba(255, 255, 255, 0.02); }

.footer-quote-icon {
    position: absolute; 
    right: 20px; 
    bottom: -10px; 
    font-size: 6rem; 
    color: rgba(219, 39, 119, 0.04); 
    z-index: 0;
}
.mega-footer-text {
    margin: 0; 
    font-weight: 500; 
    color: var(--text-main); 
    font-size: 1.05rem; 
    line-height: 1.8; 
    position: relative; 
    z-index: 1;
}

/* Pengaturan Layar HP (Mobile Friendly & Tidak Lemot) */
@media (max-width: 768px) {
    .seo-mega-section { padding: 50px 0; }
    .mega-article-card { padding: 25px 20px; border-radius: 16px; }
    .mega-title { font-size: 1.6rem; }
    .mega-subtitle { font-size: 0.95rem; }
    .chapter-title { font-size: 1.15rem; gap: 10px; align-items: flex-start; line-height: 1.4; }
    .chapter-icon { width: 35px; height: 35px; font-size: 1rem; margin-top: 2px; }
    .chapter-text p { font-size: 0.95rem; line-height: 1.7; text-align: left; }
}

    
    @keyframes floatBlob {
        0% { transform: translate(0, 0) scale(1) rotate(0deg); }
        50% { transform: translate(60px, 40px) scale(1.15) rotate(10deg); }
        100% { transform: translate(-40px, 60px) scale(0.9) rotate(-10deg); }
    }

    /* Container Kartu Artikel */
    .mega-article-card {
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 2px solid transparent;
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.5s ease;
    }
    
    /* Animasi Nyala (Glowing) saat disentuh/Hover */
    .mega-article-card:hover {
        transform: translateY(-5px);
        border: 2px solid var(--primary-pink);
        box-shadow: 0 20px 50px rgba(219, 39, 119, 0.15);
    }

    /* Animasi Ikon Berdenyut Keras */
    .icon-pulse {
        animation: pulseIcon 2s infinite cubic-bezier(0.66, 0, 0, 1);
    }
    @keyframes pulseIcon {
        0% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.6); transform: scale(1); }
        50% { transform: scale(1.08); }
        100% { box-shadow: 0 0 0 20px rgba(219, 39, 119, 0); transform: scale(1); }
    }

    /* Tipografi & Layout Teks */
    .mega-title { font-size: 2.2rem; line-height: 1.3; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
    .mega-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px; line-height: 1.6; }
    
    .chapter-box { margin-bottom: 45px; transition: transform 0.3s; }
    .chapter-box:hover { transform: translateX(5px); } /* Efek geser kanan sedikit saat dibaca */

    .chapter-title { 
        font-size: 1.35rem; 
        color: var(--text-main); 
        margin-bottom: 18px; 
        font-family: 'Montserrat', sans-serif; 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        border-bottom: 2px solid rgba(226, 232, 240, 0.6); 
        padding-bottom: 12px;
    }
    .chapter-icon {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(219, 39, 119, 0.1));
        color: var(--primary-pink);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        flex-shrink: 0;
        font-size: 1.2rem;
    }
    .chapter-text p {
        font-size: 1rem;
        line-height: 1.85;
        color: var(--text-muted);
        margin-bottom: 18px;
        text-align: justify;
    }
    .chapter-text strong { color: var(--text-main); font-weight: 700; }

    /* Support Mode Gelap (Dark Mode) */
    [data-theme="dark"] .mega-article-card { background: rgba(15, 23, 42, 0.85); border-color: #1e293b; color: white; }
    [data-theme="dark"] .chapter-title { border-bottom-color: #334155; }
    [data-theme="dark"] .chapter-text p { color: #cbd5e1; }
    [data-theme="dark"] .chapter-text strong { color: white; }

    /* Pengaturan Layar HP (Mobile Friendly agar tidak gepeng) */
    @media (max-width: 768px) {
        .seo-mega-section { padding: 40px 0; }
        .mega-article-card { padding: 25px 20px; border-radius: 16px; }
        .mega-title { font-size: 1.6rem; }
        .mega-subtitle { font-size: 0.95rem; }
        .chapter-title { font-size: 1.15rem; gap: 10px; align-items: flex-start; line-height: 1.4; }
        .chapter-icon { width: 35px; height: 35px; font-size: 1rem; margin-top: 2px; }
        .chapter-text p { font-size: 0.95rem; line-height: 1.7; text-align: left; }
    }

        /* ================= GLOBAL ================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body { font-family: 'Inter', sans-serif; background: var(--bg-main); color: var(--text-main); transition: 0.3s; overflow-x: hidden; line-height: 1.7; }
        h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-main); }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 100px 0; }
        .text-center { text-align: center; }
        
        .badge { display: inline-block; padding: 6px 15px; background: rgba(219, 39, 119, 0.1); color: var(--primary-pink); border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin-bottom: 15px; }

        /* ================= BUTTONS ================= */
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; font-size: 1rem; }
        .btn-gradient { background: var(--gradient-main); color: white; box-shadow: 0 10px 15px -3px rgba(219, 39, 119, 0.3); }
        .btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 15px 20px -3px rgba(219, 39, 119, 0.4); }
        .btn-outline { border: 2px solid var(--border-color); color: var(--text-main); background: transparent; }
        .btn-outline:hover { border-color: var(--primary-blue); color: var(--primary-blue); }

        /* ================= TOP BARS ================= */
        .trigger-bar { background: var(--primary-pink); color: #fff; text-align: center; padding: 10px; font-size: 0.85rem; font-weight: 600; }
        
        .news-ticker { background: #000; color: #fff; height: 40px; display: flex; align-items: center; overflow: hidden; position: relative; z-index: 1001; }
        .ticker-label { background: var(--primary-blue); padding: 0 20px; height: 100%; display: flex; align-items: center; font-weight: 800; font-size: 0.8rem; position: absolute; z-index: 2; text-transform: uppercase; }
        .ticker-content { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; padding-left: 100%; }
        .ticker-item { padding: 0 30px; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
        .ticker-item i { color: var(--primary-pink); }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

        /* ================= HEADER & DROPDOWN ================= */
        header { position: sticky; top: 0; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 1000; border-bottom: 1px solid var(--border-color); transition: 0.3s; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-family: 'Montserrat'; font-size: 1.8rem; font-weight: 900; color: var(--primary-blue); display: flex; align-items: center; gap: 5px; letter-spacing: -1px;}
        .logo span { color: var(--primary-pink); }
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
        .nav-links a:hover, .nav-links a.active-link { color: var(--primary-pink); font-weight: 700; }
        .menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

        /* Dropdown Fix */
        .dropdown { position: relative; display: inline-block; }
        .dropdown .dropbtn { display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; color: var(--text-main); font-weight: 500; }
        .dropdown-content { display: none; position: absolute; background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); min-width: 280px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); border-radius: 16px; top: 200%; left: 50%; transform: translate(-50%, 20px); opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 1000; overflow: hidden; }
        .dropdown:hover .dropdown-content { display: block; opacity: 1; transform: translate(-50%, 0); top: 150%; }
        .dropdown-content a { color: var(--text-main); padding: 15px 20px; text-decoration: none; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border-color); transition: 0.3s; font-size: 0.95rem; font-weight: 600; text-align: left; }
        .dropdown-content a:last-child { border-bottom: none; }
        .dropdown-content a i { background: rgba(219, 39, 119, 0.1); color: var(--primary-pink); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
        .dropdown-content a:hover { background: rgba(219, 39, 119, 0.05); color: var(--primary-pink); padding-left: 25px; }
        .dropdown-content a:hover i { transform: scale(1.1) rotate(10deg); background: var(--primary-pink); color: white; }

        /* ================= HERO ================= */
        .hero { position: relative; padding: 100px 0; overflow: hidden; }
        .hero::before { content:''; position:absolute; top:-10%; right:-5%; width:500px; height:500px; background:var(--primary-pink); border-radius:50%; filter:blur(150px); opacity:0.1; z-index:-1; }
        .hero::after { content:''; position:absolute; bottom:-10%; left:-5%; width:400px; height:400px; background:var(--primary-blue); border-radius:50%; filter:blur(150px); opacity:0.1; z-index:-1; }
        .hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
        .hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
        .hero h1 span { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 90%; }
        
        .hero-image { position: relative; }
        .glass-card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: 24px; padding: 30px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
        .floating-badge { position: absolute; background: white; padding: 15px 25px; border-radius: 50px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: 'Montserrat'; color: #000; z-index: 3; animation: float 3s ease-in-out infinite; }
        .floating-badge i { color: #1da1f2; font-size: 1.5rem; }
        .fb-1 { top: -20px; right: -20px; }
        .fb-2 { bottom: -20px; left: -20px; animation-delay: 1.5s; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

        /* ================= BRAND SLIDER ================= */
        .brand-slider { padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: var(--bg-main); overflow: hidden; }
        .brand-track { display: flex; width: calc(220px * 12); animation: scrollBrands 25s linear infinite; }
        .brand-item { width: 220px; display: flex; align-items: center; justify-content: center; filter: grayscale(1); opacity: 0.5; transition: 0.3s; font-family: 'Montserrat'; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }
        .brand-item:hover { filter: grayscale(0); opacity: 1; color: var(--primary-blue); transform: scale(1.05); }
        .brand-item i { font-size: 1.8rem; color: var(--primary-pink); margin-right: 10px;}
        @keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-220px * 6)); } }

        /* ================= MANFAAT & KEUNGGULAN ================= */
        .use-case-section { background: var(--bg-alt); }
        .use-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
        .use-case-card { background: var(--card-bg); padding: 40px 30px; border-radius: 24px; border: 1px solid var(--border-color); transition: 0.4s; text-align: center; }
        .use-case-card:hover { transform: translateY(-10px); border-color: var(--primary-pink); box-shadow: var(--shadow-lg); }
        .use-case-icon { width: 70px; height: 70px; background: rgba(30, 58, 138, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--primary-blue); transition: 0.3s; }
        .use-case-card:hover .use-case-icon { background: var(--primary-pink); color: white; }

        .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(220px, auto); gap: 20px; margin-top: 50px; }
        .bento-box { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px; transition: 0.3s; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
        .bento-box:hover { border-color: var(--primary-pink); }
        .bento-box h3 { font-size: 1.5rem; margin-bottom: 15px; z-index: 2; position: relative; }
        .bento-box p { color: var(--text-muted); z-index: 2; position: relative; }
        .bento-icon { font-size: 3rem; color: var(--primary-pink); margin-bottom: 20px; z-index: 2; position: relative; }
        .bento-large { grid-column: span 2; background: var(--gradient-main); color: white; border: none; }
        .bento-large h3, .bento-large p { color: white; }
        .bento-large .bg-icon { position: absolute; right: -20px; bottom: -20px; font-size: 15rem; color: white; opacity: 0.1; z-index: 1; transform: rotate(-15deg); }

        /* ================= CARA KERJA ================= */
        .steps-container { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 60px; position: relative; }
        .steps-container::before { content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 2px; background: var(--border-color); z-index: 1; }
        .step { flex: 1; text-align: center; padding: 0 20px; position: relative; z-index: 2; }
        .step-number { width: 80px; height: 80px; background: var(--card-bg); border: 4px solid var(--primary-pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; font-family: 'Montserrat'; color: var(--primary-blue); margin: 0 auto 20px; transition: 0.3s; }
        .step:hover .step-number { background: var(--primary-pink); color: white; transform: scale(1.1); }
        .step h4 { margin-bottom: 10px; font-size: 1.2rem; }
        .step p { font-size: 0.9rem; color: var(--text-muted); }

        /* ================= STATS ================= */
        .stats-section { background: var(--text-main); color: white; padding: 60px 0; }
        [data-theme="dark"] .stats-section { background: var(--bg-alt); border-y: 1px solid var(--border-color); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .stat-val { font-size: 3.5rem; font-family: 'Montserrat'; font-weight: 900; line-height: 1; margin-bottom: 10px; color: white; }
        .stat-val span { color: var(--primary-pink); }
        .stat-label { font-size: 1rem; font-weight: 500; color: #94a3b8; text-transform: uppercase; letter-spacing: 2px; }

        /* ================= PRICING ================= */
        .pricing-section { background: var(--bg-alt); }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .pricing-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px; padding: 50px 40px; transition: 0.3s; position: relative; }
        .pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
        .pricing-card.popular { border: 2px solid var(--primary-pink); transform: scale(1.02); box-shadow: var(--shadow-lg); }
        .pricing-card.popular:hover { transform: scale(1.02) translateY(-10px); }
        .popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--primary-pink); color: white; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; }
        .price-header { border-bottom: 1px solid var(--border-color); padding-bottom: 30px; margin-bottom: 30px; }
        .price-val { font-size: 2.5rem; font-family: 'Montserrat'; font-weight: 800; color: var(--text-main); margin: 15px 0; }
        .price-val span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
        .price-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
        .price-list i { color: var(--primary-pink); margin-top: 4px; }
        .price-list .fa-times { color: var(--border-color); }
        
        /* ================= PORTOFOLIO SECTION ================= */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; }
.portfolio-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; transition: all 0.4s ease; display: flex; flex-direction: column; gap: 15px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.portfolio-card:hover { transform: translateY(-8px); border-color: var(--primary-pink); box-shadow: var(--shadow-lg); }
.media-badge { background: rgba(30, 58, 138, 0.08); color: var(--primary-blue); padding: 6px 15px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; width: max-content; }
.media-badge i { color: var(--primary-pink); }
[data-theme="dark"] .media-badge { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.portfolio-title { font-size: 1.1rem; font-family: 'Montserrat'; font-weight: 700; color: var(--text-main); line-height: 1.5; margin: 5px 0; }
.portfolio-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-pink); font-weight: 600; font-size: 0.95rem; margin-top: auto; padding-top: 15px; border-top: 1px dashed var(--border-color); transition: 0.3s; }
.portfolio-link:hover { color: var(--primary-blue); gap: 12px; }

/* ================= GOOGLE MAPS SECTION ================= */
.maps-section { padding: 80px 0; background: var(--bg-alt); }
.map-wrapper { width: 100%; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); line-height: 0; position: relative; padding-bottom: 40%; /* Aspect ratio untuk desktop */ min-height: 350px; }
.map-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ================= CTA SYARAT & KETENTUAN (ANIMASI KEREN) ================= */
.cta-terms-section { padding: 80px 0; background: var(--bg-main); text-align: center; }
.cta-box { max-width: 800px; margin: 0 auto; padding: 50px 30px; background: var(--card-bg); border-radius: 30px; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
/* Efek Cahaya di Belakang Box */
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(219,39,119,0.05) 0%, rgba(30,58,138,0.05) 50%, transparent 100%); animation: spin 15s linear infinite; z-index: 0; pointer-events: none; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.cta-box-content { position: relative; z-index: 1; }

/* Tombol Glowing Animasi */
.btn-glowing {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink), var(--primary-blue));
    background-size: 200% auto;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(219, 39, 119, 0.5);
    animation: gradientSweep 3s linear infinite;
    z-index: 1;
}
/* Animasi Gradien Berjalan di Tombol */
@keyframes gradientSweep {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
/* Efek Hover Tombol */
.btn-glowing:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.6);
    color: white;
}
.btn-glowing i { transition: 0.3s; }
.btn-glowing:hover i { transform: translateX(8px); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-wrapper { padding-bottom: 70%; /* Lebih tinggi di mobile */ }
    .cta-box { padding: 40px 20px; border-radius: 20px; }
}


        /* ================= FAQ SECTION ================= */
        .faq-section { padding: 100px 0; background: var(--bg-main); position: relative; }
        .faq-container { max-width: 800px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 15px; }
        .faq-item { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
        .faq-item:hover { border-color: var(--primary-pink); box-shadow: 0 10px 15px -3px rgba(219, 39, 119, 0.1); }
        .faq-question { padding: 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Montserrat'; font-weight: 600; font-size: 1.1rem; color: var(--text-main); transition: 0.3s; }
        .faq-question i { color: var(--primary-blue); font-size: 1.2rem; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .faq-answer { max-height: 0; padding: 0 25px; opacity: 0; color: var(--text-muted); line-height: 1.6; transition: all 0.4s ease-in-out; }
        
        .faq-item.active { border-color: var(--primary-pink); background: var(--glass-bg); }
        .faq-item.active .faq-question { color: var(--primary-pink); }
        .faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary-pink); }
        .faq-item.active .faq-answer { max-height: 500px; padding-bottom: 25px; opacity: 1; }

        /* ================= FOOTER ================= */
        footer { 
            background: #0f172a; 
            color: #f8fafc; 
            padding: 80px 0 30px; 
            border-top: 5px solid var(--primary-pink); 
            width: 100%; 
            box-sizing: border-box; 
            overflow: hidden; 
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .footer-logo { font-family: 'Montserrat'; font-size: 2rem; font-weight: 900; margin-bottom: 20px; display: inline-block; color: white; }
        .footer-logo span { color: var(--primary-pink); }
        .footer-links li { margin-bottom: 12px; list-style: none; }
        .footer-links a { color: #94a3b8; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary-pink); padding-left: 8px; }

        /* ================= FLOATING WIDGETS & TOAST ================= */
        .wa-float { position: fixed; bottom: 30px; left: 30px; width: 65px; height: 65px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-lg); z-index: 999; transition: 0.3s; }
        .wa-float:hover { transform: scale(1.1) rotate(10deg); }
        .ai-btn { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: var(--gradient-main); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: var(--shadow-lg); z-index: 999; border: none; cursor: pointer; transition: 0.3s; }
        .ai-btn:hover { transform: scale(1.1); }
        
        .ai-window { position: fixed; bottom: 110px; right: 30px; width: 380px; height: 500px; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--border-color); border-radius: 24px; box-shadow: var(--shadow-lg); z-index: 1000; display: none; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(20px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .ai-window.active { display: flex; opacity: 1; transform: translateY(0); }
        .ai-header { background: var(--primary-blue); color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
        .ai-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
        .msg { padding: 12px 18px; border-radius: 18px; max-width: 85%; font-size: 0.95rem; line-height: 1.5; }
        .msg-bot { background: var(--card-bg); border: 1px solid var(--border-color); border-bottom-left-radius: 4px; align-self: flex-start; }
        .msg-user { background: var(--gradient-main); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
        .ai-input { padding: 15px; background: var(--card-bg); border-top: 1px solid var(--border-color); display: flex; gap: 10px; }
        .ai-input input { flex: 1; padding: 12px 20px; border: 1px solid var(--border-color); border-radius: 50px; background: var(--bg-alt); color: var(--text-main); font-family: 'Inter'; outline: none; }
        .ai-input button { width: 45px; height: 45px; border-radius: 50%; background: var(--primary-blue); color: white; border: none; cursor: pointer; }

        .reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.5, 0, 0, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .live-toast { position: fixed; bottom: 30px; left: -400px; width: 320px; background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--border-color); border-left: 4px solid var(--primary-pink); border-radius: 12px; padding: 15px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 15px; z-index: 998; transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
        .live-toast.show { left: 30px; }
        .toast-icon { background: rgba(30, 58, 138, 0.1); color: var(--primary-blue); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
        .toast-content h5 { margin: 0; font-size: 0.95rem; color: var(--text-main); font-family: 'Inter'; font-weight: 700; }
        .toast-content p { margin: 2px 0 4px; font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }
        .toast-content small { font-size: 0.7rem; color: var(--primary-pink); font-weight: 600; }
        
        /* ================= SOCIAL BUTTON ANIMATION ================= */
        .social-footer-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05); /* Warna dasar transparan gelap */
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        /* Latar belakang warna gradient khas Instagram yang disembunyikan */
        .social-footer-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            z-index: -1;
            transition: opacity 0.4s ease;
            opacity: 0;
        }
        
        /* Animasi saat di-hover (disentuh kursor) */
        .social-footer-btn:hover {
            transform: translateY(-8px); /* Melompat ke atas */
            box-shadow: 0 10px 20px rgba(219, 39, 119, 0.4); /* Efek cahaya / glowing */
            border-color: transparent;
        }
        
        .social-footer-btn:hover::before {
            opacity: 1; /* Memunculkan warna gradient Instagram */
        }
        
        .social-footer-btn i {
            transition: transform 0.5s ease;
        }
        
        .social-footer-btn:hover i {
            transform: scale(1.2) rotate(360deg); /* Ikon membesar dan berputar */
        }
        

        /* ================= RESPONSIVE ================= */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3rem; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero p { margin: 0 auto 30px; }
            .floating-badge { display: none; }
            .use-case-grid, .bento-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-container::before { display: none; }
            .steps-container { flex-direction: column; gap: 40px; }
            .step { display: flex; text-align: left; align-items: center; gap: 20px; width: 100%; }
            .step-number { margin: 0; min-width: 70px; height: 70px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--glass-bg); backdrop-filter: blur(15px); flex-direction: column; padding: 0; max-height: 0; overflow: hidden; border-bottom: none; transition: 0.4s ease; text-align: center; }
            .nav-links.active { max-height: 500px; padding: 20px 0; border-bottom: 1px solid var(--border-color); overflow-y: auto; }
            .menu-toggle { display: block; }
            .hero { padding: 60px 0; }
            .hero h1 { font-size: 2.5rem; }
            
            /* Responsive Dropdown Mobile */
            .dropdown { width: 100%; display: flex; flex-direction: column; align-items: center; }
            .dropdown .dropbtn { width: 100%; padding: 10px 0; }
            .dropdown-content { position: static; width: 90%; transform: none !important; box-shadow: none; border: none; border-left: 2px solid var(--primary-pink); border-radius: 0; padding-left: 10px; display: none; opacity: 1; background: transparent; margin-top: 10px; }
            .dropdown:hover .dropdown-content, .dropdown:active .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; }
            
            .use-case-grid, .bento-grid, .pricing-grid { grid-template-columns: 1fr; }
            .bento-large { grid-column: span 1; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .wa-float { width: 55px; height: 55px; font-size: 1.5rem; bottom: 20px; left: 20px; }
            .ai-btn { width: 55px; height: 55px; font-size: 1.5rem; bottom: 20px; right: 20px; }
            .ai-window { width: 100%; height: 100%; bottom: 0; right: 0; border-radius: 0; }
            .live-toast { bottom: 100px; left: 20px; width: calc(100% - 40px); transform: translateX(-150%); transition: transform 0.5s ease; }
            .live-toast.show { left: 20px; transform: translateX(0); }
        }