
        /* ==========================================
           COLOR PALETTE & GLOBALS (NETDIGI BLUE)
           ========================================== */
        :root {
            --primary: #0052cc;         /* Biru Utama Netdigi */
            --primary-hover: #0041a3;   /* Biru Gelap Hover */
            --secondary: #e6f0ff;       /* Tint Biru Muda Lembut */
            --text-main: #111827;       /* Teks Utama Terang */
            --text-muted: #6b7280;      /* Teks Muted Terang */
            --bg-light: #fafafa;        /* Background Abu Ringan */
            --white: #ffffff;           /* Background Putih Murni */
            --border-color: #e5e7eb;    /* Border Terang */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-bs-theme="dark"] {
            --primary: #3b82f6;         /* Biru Terang untuk Dark Mode */
            --primary-hover: #60a5fa;
            --secondary: rgba(59, 130, 246, 0.15);
            --text-main: #f3f4f6;       /* Teks Utama Gelap */
            --text-muted: #9ca3af;      /* Teks Muted Gelap */
            --bg-light: #0f172a;        /* Background Deep Slate */
            --white: #1e293b;           /* Background Card Gelap */
            --border-color: #334155;    /* Border Gelap */
        }

        /* PERBAIKAN MUTLAK: Kunci Layar agar Tidak Bocor ke Kanan */
        html, body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-light);
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            transition: var(--transition);
        }

        a { text-decoration: none; color: var(--primary); transition: var(--transition); }
        a:hover { color: var(--primary-hover); }

        /* Typography & Custom Utilities */
        h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-main); }
        .text-primary-custom { color: var(--primary) !important; }
        .bg-primary-custom { background-color: var(--primary) !important; }
        
        /* Section Adaptive Backgrounds */
        .section-white { background-color: var(--white); transition: var(--transition); }
        .section-light { background-color: var(--bg-light); transition: var(--transition); }

        /* Small Pill Badges */
        .section-badge {
            background-color: var(--secondary);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .section-badge { color: #3b82f6; }

        /* Adaptive Input Elements */
        .form-control-adaptive {
            background-color: var(--bg-light) !important;
            color: var(--text-main) !important;
            border: 1px solid var(--border-color) !important;
            transition: var(--transition);
        }
        .form-control-adaptive::placeholder { color: var(--text-muted); }

        /* ==========================================
           BILINGUAL ENGINE SYSTEMS (ID/EN)
           ========================================== */
        html[data-lang="id"] .lang-en { display: none !important; }
        html[data-lang="en"] .lang-id { display: none !important; }

        /* ==========================================
           NAVBAR DUAL LOGO CONTROLLER
           ========================================== */
        .navbar-custom {
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            z-index: 1030;
            transition: var(--transition);
        }
        
        .navbar-brand img { height: 32px; width: auto; object-fit: contain; }
        @media (max-width: 991.98px) {
            .navbar-brand img { height: 26px; } /* Kecilkan sedikit di HP agar aman */
        }
        
        /* Logika Visibilitas Logo Adaptif */
        .logo-dark-mode { display: none !important; }
        [data-bs-theme="dark"] .logo-light-mode { display: none !important; }
        [data-bs-theme="dark"] .logo-dark-mode { display: inline-block !important; }

        .nav-link {
            color: var(--text-muted) !important;
            font-weight: 500;
            padding: 8px 16px !important;
            transition: var(--transition);
        }
        .nav-link:hover { color: var(--primary) !important; }
        
        /* ACTIVE NAV ITEM (Pill Background Style) */
        .navbar-nav .nav-link.active {
            background-color: var(--secondary);
            color: var(--primary) !important;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: solid 1px #b0cfff;
        }
        [data-bs-theme="dark"] .navbar-nav .nav-link.active {
            background-color: rgba(59, 130, 246, 0.15);
        }
        
        .btn-nav-action {
            background-color: var(--primary);
            color: #ffffff !important;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
        }
        .btn-nav-action:hover { background-color: var(--primary-hover); }

        .offcanvas {
            background-color: var(--white) !important;
            color: var(--text-main) !important;
            transition: var(--transition);
        }
        @media (max-width: 991.98px) {
            .offcanvas.offcanvas-end { max-width: 300px !important; }
            .offcanvas-body .nav-link { padding: 12px 0 !important; border-bottom: 1px solid var(--border-color); padding-left: 10px !important;}
            .navbar-nav .nav-link.active { display: flex; padding-left: 10px !important; }
        }

        /* ==========================================
           MODERN MESH GRADIENT HERO
           ========================================== */
        .hero-section {
            background-color: #ffffff;
            background-image: 
                radial-gradient(at 15% 0%, rgba(243, 232, 255, 0.9) 0px, transparent 40%),
                radial-gradient(at 85% 30%, rgba(224, 231, 255, 0.9) 0px, transparent 50%),
                radial-gradient(at 50% 100%, rgba(248, 250, 255, 1) 0px, transparent 50%);
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
        }
        [data-bs-theme="dark"] .hero-section {
            background-color: #0f172a;
            background-image: 
                radial-gradient(at 15% 0%, rgba(76, 29, 149, 0.15) 0px, transparent 40%),
                radial-gradient(at 85% 30%, rgba(30, 58, 138, 0.2) 0px, transparent 50%);
        }

        .hero-top-badge {
            background-color: var(--white);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .hero-top-badge {
            color: #cbd5e1;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
            color: var(--text-main);
            margin-bottom: 1.2rem;
        }
        @media (max-width: 768px) { .hero-title { font-size: 2.5rem; } }
        
        .hero-subtitle { 
            color: var(--text-muted); 
            font-size: 1.15rem; 
            margin-bottom: 3rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-bar-wrapper {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            padding: 6px 6px 6px 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
            max-width: 750px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        .search-input { border: none; outline: none; padding: 12px 10px; flex-grow: 1; background: transparent; color: var(--text-main); font-size: 0.95rem; width: 100%; }
        .search-divider { width: 1px; height: 35px; background: var(--border-color); margin: 0 15px; }
        .search-select { border: none; outline: none; color: var(--text-muted); background: transparent; cursor: pointer; padding-right: 15px; font-size: 0.95rem; }
        .btn-search {
            background-color: var(--primary); color: #ffffff; border: none;
            border-radius: 50px; padding: 14px 35px; font-weight: 600; margin-left: 10px;
            transition: var(--transition);
        }
        
        @media (max-width: 768px) {
            .search-bar-wrapper { flex-direction: column; border-radius: 20px; padding: 15px; }
            .search-divider { width: 100%; height: 1px; margin: 10px 0; }
            .search-input, .search-select { width: 100%; text-align: center; }
            .btn-search { width: 100%; margin-left: 0; margin-top: 15px; border-radius: 12px; }
        }

        .popular-tags { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4rem; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
        .tag-pill-outline { border: 1px solid var(--border-color); background: var(--white); padding: 6px 16px; border-radius: 50px; color: var(--text-muted); font-weight: 500; transition: var(--transition); }
        .tag-pill-outline:hover { border-color: var(--primary); color: var(--primary); }

        .hero-stats h3 { font-size: 2rem; font-weight: 800; color: var(--text-main); margin-bottom: 4px; letter-spacing: -0.5px; }
        .hero-stats p { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
        .stat-divider { border-right: 1px solid var(--border-color); }
        @media (max-width: 768px) { .stat-divider { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 15px;} }

        /* ==========================================
           BRAND / PARTNERS MARQUEE & GRID SYSTEMS
           ========================================== */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            padding: 18px 0;
            background-color: var(--white);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            width: 100%;
        }
        .marquee-track {
            display: inline-flex;
            gap: 60px;
            animation: marqueeScroll 25s linear infinite;
        }
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .partner-logo-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .partner-logo-item img{filter: grayscale(1);}
        .partner-logo-item img:hover { filter: none; }
        .partner-logo-item i { font-size: 1.4rem; color: var(--primary); }

        .brand-grid-box {
            /* background-color: var(--white); */
            background-color:#eaeaea;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition);
            filter: grayscale(0.2);
        }
        .brand-grid-box:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 5px 15px rgba(0,82,204,0.05); background:#fff; filter: none; }
        /* ==========================================
           CARDS CONFIGURATIONS
           ========================================== */
        .category-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            cursor: pointer;
        }
        .category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 82, 204, 0.05); border-color: var(--primary); }
        .category-icon {
            width: 60px; height: 60px; background: var(--secondary); color: var(--primary);
            border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 15px;
            transition: var(--transition);
        }
        .category-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; color: var(--text-main); }
        .category-count { font-size: 0.85rem; color: var(--text-muted); }

        .service-feature-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 20px; padding: 35px 25px; transition: var(--transition); height: 100%; }
        .service-feature-card:hover { border-color: var(--primary); box-shadow: 0 15px 30px rgba(0, 82, 204, 0.1); transform: translateY(-8px); }
        .service-feature-icon { width: 55px; height: 55px; background: var(--primary); color: #ffffff; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }

        .portfolio-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 16px; padding: 24px; transition: var(--transition); }
        .portfolio-card:hover { box-shadow: 0 12px 24px rgba(0, 82, 204, 0.06); border-color: rgba(0, 82, 204, 0.3); }
        .port-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-main); }
        .port-company { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; }
        
        .adaptive-icon-box { background-color: var(--white); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px; margin-right: 16px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: var(--transition); }
        .tag-group { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
        .tag-pill { background: var(--bg-light); color: var(--text-main); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; transition: var(--transition); }
        .tag-pill.blue-pill { background: var(--secondary); color: var(--primary); }
        .tag-pill.green { background: #dcfce7; color: #166534; }
        [data-bs-theme="dark"] .tag-pill.green { background: rgba(22, 101, 52, 0.2); color: #4ade80; }
        .port-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
        .btn-outline-custom { border: 1px solid var(--primary); color: var(--primary); font-weight: 600; border-radius: 8px; padding: 8px 16px; display: inline-block; width: 100%; text-align: center; }
        .btn-outline-custom:hover { background: var(--primary); color: #ffffff; }

        .accordion-custom .accordion-item { background-color: var(--white); border: 1px solid var(--border-color); border-radius: 12px !important; margin-bottom: 15px; overflow: hidden; transition: var(--transition); }
        .accordion-custom .accordion-button { background-color: var(--white); color: var(--text-main); font-weight: 600; box-shadow: none; padding: 20px; transition: var(--transition); }
        .accordion-custom .accordion-button:not(.collapsed) { background-color: var(--secondary); color: var(--primary); }

        .blog-card-large { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); transition: var(--transition); }
        .blog-img-large { width: 100%; height: 250px; object-fit: cover; }
        .blog-content { padding: 20px; }
        .blog-card-small { display: flex; gap: 15px; background: var(--white); padding: 15px; border-radius: 12px; border: 1px solid var(--border-color); margin-bottom: 15px; transition: var(--transition); }
        .blog-img-small { width: 100px; height: 80px; border-radius: 8px; object-fit: cover; }
        .blog-title { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; line-height: 1.4; }
        .blog-title-small { font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 5px; }
        .blog-meta { font-size: 0.8rem; color: var(--text-muted); }

        .cta-section { background: linear-gradient(135deg, #0052cc 0%, #002b80 100%); padding: 80px 0 120px; color: #ffffff; text-align: center; }
        .cta-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; color: #ffffff; }
        .btn-white { background: #ffffff; color: #0052cc; font-weight: 600; padding: 12px 30px; border-radius: 8px; }
        .btn-outline-white { border: 1px solid #ffffff; color: #ffffff; font-weight: 600; padding: 12px 30px; border-radius: 8px; }

        .newsletter-overlay { background: #0f172a; border-radius: 16px; padding: 40px; color: #ffffff; margin-top: -60px; position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
        [data-bs-theme="dark"] .newsletter-overlay { background: #1e293b; }
        @media (max-width: 768px) { .newsletter-overlay { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px;} }

        .footer-dark { background-color: #0b0f19; color: #9ca3af; padding: 100px 0 40px; margin-top: -50px; }
        .footer-logo { font-size: 1.5rem; font-weight: 800; color: #ffffff; margin-bottom: 15px; display: inline-block; }
        .footer-title { color: #ffffff; font-weight: 700; margin-bottom: 20px; font-size: 1.1rem; }
        .footer-link { color: #9ca3af; display: block; margin-bottom: 10px; font-size: 0.9rem; }
        .footer-link:hover { color: #ffffff; }
        .social-circle { width: 35px; height: 35px; background: #1f2937; color: #ffffff; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; }
        .legal-box-dark { background: #111827; padding: 24px; border-radius: 12px; border: 1px solid #1f2937; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-light); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
        
        
    .hero-section {
        background-color: #ffffff;
        background-image: radial-gradient(at 15% 0%, rgba(243, 232, 255, 0.9) 0px, transparent 40%), radial-gradient(at 85% 30%, rgba(224, 231, 255, 0.9) 0px, transparent 50%), radial-gradient(at 50% 100%, rgba(248, 250, 255, 1) 0px, transparent 50%);
    }
        /* Mengikuti Layout Hero & Search dari image_caf6c6.jpg */
        .faq-page-hero { 
            padding: 120px 0 60px; 
            text-align: center;
            background-color: var(--bg-light);
        }
        .search-container {
            max-width: 650px;
            margin: 30px auto 0;
            position: relative;
        }
        .search-input {
            padding: 16px 25px 16px 50px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            font-size: 0.95rem;
        }
        .search-icon {
            position: absolute;
            left: 22px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
        }

        /* Filter Pills Kategori mirip image_caf6c6.jpg */
        .filter-section-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #718096;
            font-weight: 700;
        }
        .category-pills-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .btn-category-pill {
            background-color: #f7fafc;
            border: 1px solid #e2e8f0;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a5568;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        .btn-category-pill:hover, .btn-category-pill.active {
            background-color: #0052cc;
            border-color: #0052cc;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
        }

        /* Accordion Custom Styling */
        .faq-container { max-width: 850px; margin: 0 auto; }
        
        .category-block-title { 
            font-size: 1.35rem; 
            font-weight: 700; 
            color: var(--text-main); /* Mengganti #1a202c */
            margin-bottom: 20px;
        }
        
        .accordion-custom .accordion-item {
            border: 1px solid var(--border-color); /* Mengganti #e2e8f0 */
            border-radius: 12px !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--white); /* Mengganti #ffffff */
            transition: var(--transition);
        }
        
        .accordion-custom .accordion-item:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Dibuat lebih netral untuk dark mode */
        }
        
        .accordion-custom .accordion-button {
            padding: 20px 25px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-main); /* Mengganti #2d3748 */
            background: var(--white); /* Mengganti #ffffff */
            transition: var(--transition);
        }
        
        /* State saat Accordion Terbuka */
        .accordion-custom .accordion-button:not(.collapsed) {
            color: var(--primary); /* Mengganti #0052cc statis */
            box-shadow: none;
            background: var(--bg-light); /* Mengganti #f8faff */
        }
        
        /* Mengatur border panah accordion (icon bawaan bootstrap) di dark mode */
        [data-bs-theme="dark"] .accordion-custom .accordion-button::after {
            filter: invert(1) grayscale(100%) brightness(200%);
        }
        [data-bs-theme="dark"] .accordion-custom .accordion-button:not(.collapsed)::after {
            filter: none; /* Biarkan biru saat aktif */
        }
        
        .accordion-custom .accordion-body {
            padding: 20px 25px 25px;
            background: var(--bg-light); /* Mengganti #f8faff */
            border-top: 1px solid var(--border-color); /* Mengganti #edf2f7 */
            color: var(--text-muted); /* Menambahkan visibilitas teks */
        }
        /* ==========================================
           TIMELINE SEJARAH PERUSAHAAN
           ========================================== */
        .timeline-section {
            position: relative;
            padding: 2rem 0;
        }
        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--border-color);
        }
        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            width: 50%;
            padding-right: 50px;
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-right: 0;
            padding-left: 50px;
        }
        .timeline-dot {
            position: absolute;
            right: -11px;
            top: 0;
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            border: 4px solid var(--bg-light);
            border-radius: 50%;
            z-index: 2;
        }
        .timeline-item:nth-child(even) .timeline-dot {
            left: -13px;
        }
        .timeline-content {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            transition: var(--transition);
        }
        .timeline-content:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05);
            transform: translateY(-5px);
        }
        .timeline-year {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .timeline-section::before { left: 20px; }
            .timeline-item { width: 100%; padding-left: 60px; padding-right: 0; margin-bottom: 2rem; }
            .timeline-item:nth-child(even) { left: 0; }
            .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 8px; }
        }

        /* ==========================================
           ARTI & FILOSOFI LOGO
           ========================================== */
        .logo-meaning-box {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 25px;
            transition: var(--transition);
            height: 100%;
        }
        .logo-meaning-box:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 82, 204, 0.08);
            transform: translateY(-5px);
        }
        .logo-icon-wrap {
            width: 70px; height: 70px;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        /* ==========================================
           CAROUSEL ULASAN PELANGGAN
           ========================================== */
        .carousel-testimonial .carousel-inner {
            padding: 20px 10px 60px;
        }
        .carousel-testimonial .carousel-indicators {
            bottom: 0;
            margin-bottom: 0;
        }
        .carousel-testimonial .carousel-indicators [data-bs-target] {
            background-color: var(--text-muted);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            border: none;
            opacity: 0.5;
            transition: var(--transition);
        }
        .carousel-testimonial .carousel-indicators .active {
            background-color: var(--primary);
            opacity: 1;
            transform: scale(1.3);
        }
        .testimonial-carousel-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.02);
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Hero About Specific */
        .hero-about {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary) 100%);
            padding: 180px 0 100px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .hero-about {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
        }
    
        /* ==========================================
           CUSTOM WEBSITE SPECIFIC STYLES
           ========================================== */
        .hero-web {
            background-color: var(--bg-light);
            background-image: 
                radial-gradient(at 0% 50%, rgba(0, 82, 204, 0.08) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
            padding: 160px 0 100px;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            overflow: hidden;
        }
        [data-bs-theme="dark"] .hero-web {
            background-color: #0f172a;
            background-image: 
                radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(52, 211, 153, 0.08) 0px, transparent 50%);
        }

        .browser-mockup {
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 82, 204, 0.15);
            border: 1px solid var(--border-color);
            overflow: hidden;
            background: var(--bg-light);
            transition: var(--transition);
        }
        .browser-mockup:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 60px rgba(0, 82, 204, 0.2);
        }
        .browser-header {
            background: var(--border-color);
            padding: 10px 15px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .browser-dot {
            width: 12px; height: 12px;
            border-radius: 50%;
        }
        .dot-red { background: #ef4444; }
        .dot-yellow { background: #f59e0b; }
        .dot-green { background: #10b981; }

        /* Feature Cards */
        .web-feature-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px 30px;
            height: 100%;
            transition: var(--transition);
            text-align: left;
        }
        .web-feature-card:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
            transform: translateY(-5px);
        }
        .web-icon {
            width: 60px;
            height: 60px;
            background: var(--bg-light);
            color: var(--primary);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .web-feature-card:hover .web-icon {
            background: var(--primary);
            color: #ffffff;
        }
        
        /* ==========================================
           MOBILE APP SPECIFIC STYLES
           ========================================== */
        .hero-mobile {
            background-color: var(--bg-light);
            background-image: 
                radial-gradient(at 80% 0%, rgba(0, 82, 204, 0.08) 0px, transparent 50%),
                radial-gradient(at 20% 100%, rgba(59, 130, 246, 0.05) 0px, transparent 50%);
            padding: 160px 0 100px;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            overflow: hidden;
        }
        [data-bs-theme="dark"] .hero-mobile {
            background-color: #0f172a;
            background-image: 
                radial-gradient(at 80% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
                radial-gradient(at 20% 100%, rgba(30, 58, 138, 0.1) 0px, transparent 50%);
        }

        .phone-mockup-wrapper {
            position: relative;
            text-align: center;
            z-index: 2;
        }
        .phone-mockup {
            width: 100%;
            max-width: 320px;
            border-radius: 40px;
            box-shadow: 0 25px 50px rgba(0, 82, 204, 0.15);
            border: 8px solid var(--text-main);
            background-color: var(--bg-light);
            transition: var(--transition);
        }
        .phone-mockup:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 60px rgba(0, 82, 204, 0.2);
        }

        /* Fitur Cards */
        .app-feature-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 30px;
            height: 100%;
            transition: var(--transition);
        }
        .app-feature-card:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
            transform: translateY(-5px);
        }
        .app-icon {
            width: 65px;
            height: 65px;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        .app-feature-card:hover .app-icon {
            background: var(--primary);
            color: #ffffff;
        }

        /* Tech Stack Section */
        .tech-box {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 15px 20px;
            transition: var(--transition);
            font-weight: 600;
            color: var(--text-muted);
        }
        .tech-box:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .tech-box i { font-size: 1.5rem; }
        
        /* ==========================================
           ENTERPRISE SYSTEM SPECIFIC STYLES
           ========================================== */
        .hero-enterprise {
            background-color: var(--bg-light);
            background-image: 
                radial-gradient(at 10% 20%, rgba(0, 82, 204, 0.08) 0px, transparent 60%),
                radial-gradient(at 90% 80%, rgba(59, 130, 246, 0.05) 0px, transparent 60%);
            padding: 160px 0 100px;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            overflow: hidden;
        }
        [data-bs-theme="dark"] .hero-enterprise {
            background-color: #0f172a;
            background-image: 
                radial-gradient(at 10% 20%, rgba(59, 130, 246, 0.12) 0px, transparent 60%),
                radial-gradient(at 90% 80%, rgba(30, 58, 138, 0.1) 0px, transparent 60%);
        }

        .server-rack-wrapper {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .server-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 82, 204, 0.12);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .server-img:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 40px 70px rgba(0, 82, 204, 0.18);
        }

        /* Module Cards */
        .module-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px 30px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .module-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }
        .module-card:hover {
            box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
            transform: translateX(5px);
        }
        .module-card:hover::before { opacity: 1; }
        
        .module-icon {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Core Features List */
        .core-feature-list {
            list-style: none;
            padding: 0;
        }
        .core-feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: var(--text-muted);
        }
        .core-feature-list li i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        /* ==========================================
           INFRASTRUCTURE & MAINTENANCE SPECIFIC STYLES
           ========================================== */
        .hero-infra {
            background-color: var(--bg-light);
            background-image: 
                radial-gradient(at 20% 0%, rgba(0, 82, 204, 0.08) 0px, transparent 60%),
                radial-gradient(at 80% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 60%);
            padding: 160px 0 100px;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
            overflow: hidden;
        }
        [data-bs-theme="dark"] .hero-infra {
            background-color: #0f172a;
            background-image: 
                radial-gradient(at 20% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 60%),
                radial-gradient(at 80% 100%, rgba(52, 211, 153, 0.08) 0px, transparent 60%);
        }

        .infra-hero-image {
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 82, 204, 0.15);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .infra-hero-image:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 60px rgba(0, 82, 204, 0.2);
            border-color: var(--primary);
        }

        /* Infra Feature Cards */
        .infra-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px 30px;
            height: 100%;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .infra-card:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
            transform: translateY(-5px);
        }
        .infra-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            color: var(--primary);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        .infra-card:hover .infra-icon {
            background: var(--primary);
            color: #ffffff;
        }

        /* List Styling */
        .check-list {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        .check-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .check-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #10b981;
        }
        .vimi-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .vimi-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 5px;
            background: linear-gradient(90deg, var(--primary), #3b82f6);
            opacity: 0;
            transition: var(--transition);
        }
        .vimi-card:hover {
            box-shadow: 0 20px 40px rgba(0, 82, 204, 0.08);
            transform: translateY(-5px);
            border-color: rgba(0, 82, 204, 0.2);
        }
        .vimi-card:hover::before {
            opacity: 1;
        }
        .vimi-icon {
            width: 75px;
            height: 75px;
            background: var(--bg-light);
            color: var(--primary);
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        .vimi-card:hover .vimi-icon {
            background: var(--primary);
            color: var(--white);
        }
        .vimi-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .vimi-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .vimi-list li::before {
            content: '\f058'; /* FontAwesome check-circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        /* ==========================================
           TIMELINE SEJARAH PERUSAHAAN
           ========================================== */
        .timeline-section {
            position: relative;
            padding: 2rem 0;
        }
        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--border-color);
        }
        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            width: 50%;
            padding-right: 50px;
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-right: 0;
            padding-left: 50px;
        }
        .timeline-dot {
            position: absolute;
            right: -11px;
            top: 0;
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            border: 4px solid var(--bg-light);
            border-radius: 50%;
            z-index: 2;
        }
        .timeline-item:nth-child(even) .timeline-dot {
            left: -13px;
        }
        .timeline-content {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            transition: var(--transition);
        }
        .timeline-content:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05);
            transform: translateY(-5px);
        }
        .timeline-year {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .timeline-section::before { left: 20px; }
            .timeline-item { width: 100%; padding-left: 60px; padding-right: 0; margin-bottom: 2rem; }
            .timeline-item:nth-child(even) { left: 0; }
            .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 8px; }
        }

        /* ==========================================
           ARTI & FILOSOFI LOGO
           ========================================== */
        .logo-meaning-box {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 25px;
            transition: var(--transition);
            height: 100%;
        }
        .logo-meaning-box:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(0, 82, 204, 0.08);
            transform: translateY(-5px);
        }
        .logo-icon-wrap {
            width: 70px; height: 70px;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        /* ==========================================
           CAROUSEL ULASAN PELANGGAN
           ========================================== */
        .carousel-testimonial .carousel-inner {
            padding: 20px 10px 60px;
        }
        .carousel-testimonial .carousel-indicators {
            bottom: 0;
            margin-bottom: 0;
        }
        .carousel-testimonial .carousel-indicators [data-bs-target] {
            background-color: var(--text-muted);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            border: none;
            opacity: 0.5;
            transition: var(--transition);
        }
        .carousel-testimonial .carousel-indicators .active {
            background-color: var(--primary);
            opacity: 1;
            transform: scale(1.3);
        }
        .testimonial-carousel-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.02);
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Hero About Specific */
        .hero-about {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary) 100%);
            padding: 180px 0 100px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .hero-about {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
        }
        
        /** VISI MISI **/
        
        /* Container & Background Effects */
        .tech-vimi-section {
            position: relative;
            overflow: hidden;
            background-color: var(--bg-light);
            padding: 100px 0;
            z-index: 1;
        }
        
        /* Glowing Abstract Orbs */
        .glow-orb-1 {
            position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(0, 82, 204, 0.08) 0%, transparent 70%);
            top: -150px; left: -150px;
            border-radius: 50%;
            z-index: -1;
            filter: blur(40px);
        }
        .glow-orb-2 {
            position: absolute;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
            bottom: -200px; right: -150px;
            border-radius: 50%;
            z-index: -1;
            filter: blur(40px);
        }
        [data-bs-theme="dark"] .glow-orb-1 { background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); }
        [data-bs-theme="dark"] .glow-orb-2 { background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%); }

        /* Typography Enhancements */
        .gradient-text-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        [data-bs-theme="dark"] .gradient-text-primary {
            background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Bento Box Cards */
        .bento-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            padding: 40px;
            height: 100%;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            z-index: 2;
        }
        .bento-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 82, 204, 0.08);
            border-color: transparent;
        }
        .bento-card:hover::after {
            opacity: 1;
            background: linear-gradient(135deg, var(--primary), transparent);
        }

        /* Vision Specific Styles (Large Card) */
        .bento-vision {
            background: linear-gradient(145deg, var(--white) 0%, var(--secondary) 100%);
            justify-content: center;
        }
        [data-bs-theme="dark"] .bento-vision {
            background: linear-gradient(145deg, var(--white) 0%, rgba(59, 130, 246, 0.05) 100%);
        }
        .vision-quote-icon {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: 30px;
            right: 40px;
        }
        .vision-text {
            font-size: 1.35rem;
            line-height: 1.7;
            font-weight: 500;
            color: var(--text-main);
            position: relative;
            z-index: 2;
        }

        /* Mission Specific Styles (Grid Cards) */
        .mission-icon-wrapper {
            width: 55px; height: 55px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        .bento-card:hover .mission-icon-wrapper {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            transform: scale(1.05) rotate(-5deg);
        }
        .mission-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        .mission-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .bento-card { padding: 30px 25px; border-radius: 20px; }
            .vision-text { font-size: 1.15rem; }
        }
        .timeline-tech-section {
            position: relative;
            padding: 80px 0;
            background-color: var(--white);
            overflow: hidden;
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .timeline-tech-section {
            background-color: #0f172a;
        }

        /* The Main Center Line (Glowing Data Stream) */
        .timeline-tech-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        .timeline-tech-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                var(--primary) 15%, 
                #8b5cf6 85%, 
                transparent 100%
            );
            z-index: 1;
            opacity: 0.5;
        }

        .tech-timeline-item {
            position: relative;
            margin-bottom: 60px;
            width: 50%;
            padding-right: 50px;
            z-index: 2;
        }
        .tech-timeline-item:nth-child(even) {
            margin-left: auto;
            padding-right: 0;
            padding-left: 50px;
        }

        /* Glowing Nodes (Dots) */
        .tech-timeline-node {
            position: absolute;
            right: -10px;
            top: 30px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--white);
            border: 4px solid var(--primary);
            z-index: 3;
            box-shadow: 0 0 20px var(--primary);
            animation: nodePulse 3s infinite;
        }
        .tech-timeline-item:nth-child(even) .tech-timeline-node {
            right: auto;
            left: -10px;
            border-color: #8b5cf6;
            box-shadow: 0 0 20px #8b5cf6;
            animation: nodePulseAlt 3s infinite;
        }

        @keyframes nodePulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(0, 82, 204, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0); }
        }
        @keyframes nodePulseAlt {
            0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
        }

        /* The Content Card */
        .tech-timeline-card {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }
        .tech-timeline-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 82, 204, 0.1);
        }
        [data-bs-theme="dark"] .tech-timeline-card {
            background: rgba(30, 41, 59, 0.5);
        }
        [data-bs-theme="dark"] .tech-timeline-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Giant Year Watermark */
        .tech-year-watermark {
            position: absolute;
            top: -20px;
            right: 10px;
            font-size: 6rem;
            font-weight: 900;
            color: var(--text-main);
            opacity: 0.03;
            z-index: 0;
            pointer-events: none;
            transition: var(--transition);
        }
        .tech-timeline-item:nth-child(even) .tech-year-watermark {
            right: auto;
            left: 10px;
        }
        .tech-timeline-card:hover .tech-year-watermark {
            opacity: 0.08;
            transform: scale(1.05);
            color: var(--primary);
        }

        /* Card Content Layering */
        .tech-timeline-content {
            position: relative;
            z-index: 1;
        }
        .tech-timeline-year {
            display: inline-block;
            font-weight: 800;
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        /* Responsive Mobile Adjustments */
        @media (max-width: 768px) {
            .timeline-tech-container::before {
                left: 30px;
            }
            .tech-timeline-item, .tech-timeline-item:nth-child(even) {
                width: 100%;
                padding-left: 80px;
                padding-right: 0;
                margin-left: 0;
            }
            .tech-timeline-node, .tech-timeline-item:nth-child(even) .tech-timeline-node {
                left: 20px;
                right: auto;
            }
            .tech-year-watermark, .tech-timeline-item:nth-child(even) .tech-year-watermark {
                right: 10px;
                left: auto;
            }
            .tech-timeline-card { padding: 30px 25px; }
        }
        .philosophy-section {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        [data-bs-theme="dark"] .philosophy-section {
            background-color: var(--bg-light);
        }

        /* LOGO SHOWCASE AREA (LEFT COLUMN) */
        .logo-showcase-container {
            position: sticky;
            top: 120px; /* Membuatnya tetap diam saat kolom kanan di-scroll */
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary) 100%);
            border: 1px solid var(--border-color);
            border-radius: 32px;
            padding: 60px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 450px;
            z-index: 2;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.02);
        }
        [data-bs-theme="dark"] .logo-showcase-container {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        /* Efek Cahaya (Glow Aura) di belakang logo */
        .logo-glow {
            position: absolute;
            width: 250px;
            height: 250px;
            background: var(--primary);
            filter: blur(80px);
            opacity: 0.15;
            border-radius: 50%;
            z-index: 0;
            animation: pulseGlow 4s infinite alternate ease-in-out;
        }
        [data-bs-theme="dark"] .logo-glow { opacity: 0.25; }
        
        @keyframes pulseGlow {
            0% { transform: scale(0.8); opacity: 0.1; }
            100% { transform: scale(1.3); opacity: 0.25; }
        }

        /* Area Image Logo */
        .the-actual-logo {
            position: relative;
            z-index: 1;
            max-width: 220px; /* Sesuaikan dengan ukuran logo Anda */
            height: auto;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .logo-showcase-container:hover .the-actual-logo {
            transform: scale(1.08);
        }

        .showcase-label {
            position: relative;
            z-index: 1;
            margin-top: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        /* PHILOSOPHY STACK CARDS (RIGHT COLUMN) */
        .phil-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 35px;
            display: flex;
            gap: 25px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
        }
        .phil-card:last-child {
            margin-bottom: 0;
        }
        .phil-card:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(0, 82, 204, 0.08);
            transform: translateX(15px); /* Bergerak dinamis ke kanan saat di-hover */
        }
        [data-bs-theme="dark"] .phil-card {
            background: #1e293b;
        }
        
        .phil-icon {
            flex-shrink: 0;
            width: 65px;
            height: 65px;
            border-radius: 18px;
            background: var(--bg-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }
        .phil-card:hover .phil-icon {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: rotate(10deg) scale(1.1);
        }

        .phil-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        /* Responsivitas Mobile */
        @media (max-width: 991.98px) {
            .logo-showcase-container {
                position: relative;
                top: 0;
                min-height: 300px;
                margin-bottom: 40px;
            }
            .phil-card {
                flex-direction: column;
                gap: 20px;
                text-align: left;
                padding: 30px 25px;
            }
            .phil-card:hover {
                transform: translateY(-8px); /* Ubah arah hover menjadi ke atas di layar HP */
            }
            .phil-icon {
                margin: 0;
            }
        }
        
        /** client table section **/
        
        .clients-table-section {
            background-color: var(--bg-light);
            padding: 80px 0;
            border-top: 1px solid var(--border-color);
        }
        [data-bs-theme="dark"] .clients-table-section {
            background-color: #0f172a;
        }

        /* Container & Wrapper */
        .table-container {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 82, 204, 0.05);
            overflow: hidden;
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .table-container {
            background: #1e293b;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* Search Input Area */
        .table-toolbar {
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            background: var(--bg-light);
        }
        .search-client-wrapper {
            position: relative;
            width: 100%;
            max-width: 350px;
        }
        .search-client-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }
        .search-client-input {
            width: 100%;
            padding: 10px 15px 10px 45px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            background: var(--white);
            color: var(--text-main);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .search-client-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
        }
        [data-bs-theme="dark"] .search-client-input {
            background: #0f172a;
        }

        /* Scrollable Table Area */
        .table-scroll-wrapper {
            max-height: 500px;
            overflow-y: auto;
            scrollbar-width: thin;
        }
        .table-scroll-wrapper::-webkit-scrollbar { width: 6px; }
        .table-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
        .table-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 10px; }

        /* The Table Itself */
        .custom-client-table {
            width: 100%;
            margin-bottom: 0;
            border-collapse: separate;
            border-spacing: 0;
        }
        .custom-client-table th {
            position: sticky;
            top: 0;
            background: var(--white);
            color: var(--text-muted);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 18px 25px;
            font-weight: 700;
            border-bottom: 2px solid var(--border-color);
            z-index: 10;
        }
        [data-bs-theme="dark"] .custom-client-table th { background: #1e293b; }
        
        .custom-client-table td {
            padding: 16px 25px;
            color: var(--text-main);
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
            transition: var(--transition);
        }
        .custom-client-table tbody tr {
            transition: all 0.2s ease;
        }
        .custom-client-table tbody tr:hover td {
            background-color: var(--bg-light);
        }
        .custom-client-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Data Styling */
        .client-name {
            font-weight: 600;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .client-avatar {
            width: 35px;
            height: 35px;
            border-radius: 10px;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
        }
        .client-industry {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .status-badge {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        
        /* ==========================================
           LEGAL PAGE STYLES
           ========================================== */
        .legal-hero {
            background-color: var(--bg-light);
            padding: 120px 0 60px;
            border-bottom: 1px solid var(--border-color);
        }
        [data-bs-theme="dark"] .legal-hero { background-color: #0f172a; }

        .legal-container {
            padding: 60px 0;
            background-color: var(--white);
        }
        [data-bs-theme="dark"] .legal-container { background-color: var(--bg-light); }

        /* Sidebar Navigation */
        .legal-sidebar {
            position: sticky;
            top: 100px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px;
        }
        [data-bs-theme="dark"] .legal-sidebar { background: #1e293b; }
        
        .legal-nav-link {
            display: block;
            padding: 12px 15px;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 10px;
            margin-bottom: 5px;
            transition: var(--transition);
            text-decoration: none;
        }
        .legal-nav-link:hover, .legal-nav-link.active {
            background: rgba(0, 82, 204, 0.1);
            color: var(--primary);
        }

        /* Content Area */
        .legal-content-section {
            margin-bottom: 50px;
        }
        .legal-content-section:last-child {
            margin-bottom: 0;
        }
        .legal-content-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .legal-text {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .legal-list {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .legal-list li {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 10px;
        }

        @media (max-width: 991.98px) {
            .legal-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 40px;
            }
        }
        
        
        /* ==========================================
           FAQ PAGE SPECIFIC STYLES
           ========================================== */
        .faq-page-hero {
            background-color: var(--bg-light);
            padding: 160px 0 80px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        [data-bs-theme="dark"] .faq-page-hero {
            background-color: #0f172a;
        }

        /* Search Bar */
        .search-container {
            position: relative;
            max-width: 600px;
            margin: 2rem auto 0;
        }
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.2rem;
            z-index: 2;
        }
        .search-input {
            padding: 15px 20px 15px 50px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            background-color: var(--white);
            color: var(--text-main);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: var(--transition);
            font-size: 1rem;
        }
        .search-input:focus {
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15);
            border-color: var(--primary);
        }
        [data-bs-theme="dark"] .search-input {
            background-color: #1e293b;
            color: #f8fafc;
        }

        /* Category Pills */
        .category-pills-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        .btn-category-pill {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .btn-category-pill:hover,
        .btn-category-pill.active {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
        }

        /* CTA Support Banner */
        .support-cta-banner {
            background: linear-gradient(135deg, #0052cc 0%, #002b80 100%);
            border-radius: 20px;
            padding: 40px;
            margin-top: 2rem;
            box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
        }
        
        .press-section {
            background-color: var(--white);
            padding: 50px 0;
            border-bottom: 1px solid var(--border-color);
        }
        [data-bs-theme="dark"] .press-section {
            background-color: var(--bg-light);
        }

        .press-title {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .press-logo-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 20px;
            /* Efek abu-abu transparan secara default */
            filter: grayscale(100%) opacity(50%);
            transition: all 0.4s ease;
        }
        [data-bs-theme="dark"] .press-logo-wrap {
            filter: grayscale(100%) brightness(200%) opacity(40%);
        }

        /* Berubah warna asli saat di-hover */
        .press-logo-wrap:hover {
            filter: grayscale(0%) opacity(100%);
            transform: translateY(-3px);
        }
        [data-bs-theme="dark"] .press-logo-wrap:hover {
            filter: grayscale(0%) brightness(100%) opacity(100%);
        }

        .press-logo-wrap img {
            max-height: 45px;
            max-width: 100%;
            object-fit: contain;
        }
        
        