/* --- VARIABLES --- */
        :root {
            /* Palette Warna Corporate Modern (Deep Blue/Slate) */
            --bg-black: #020617;
            --bg-dark: #0f172a;       /* Slate 900 */
            --bg-card: #1e293b;       /* Slate 800 */
            --primary: #3b82f6;       /* Blue 500 */
            --primary-dark: #2563eb;  /* Blue 600 */
            --accent: #06b6d4;        /* Cyan 500 (untuk detail kecil) */
            --text-main: #f8fafc;     /* Slate 50 */
            --text-muted: #94a3b8;    /* Slate 400 */
            
            --radius: 8px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        svg .primary { fill: var(--primary-dark); }   /* Main accent */
        svg .secondary { fill: var(--accent); } /* Lighter tone */

        .bg-card {
            background: var(--bg-card);
        }

        .bg-dark {
            background: var(--bg-dark);
        }

        .bg-primary-dark {
            background: var(--primary-dark);
        }

        /* --- RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- UTILITIES --- */
        .container-fluid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-50 {
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (min-width: 800px) {
            .container-50 {
                max-width: 60%;
            }
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.9); /* Sedikit transparan */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            z-index: 1000;
            padding: 20px 0;
        }

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

        .logo {
            display: flex;
            flex-direction: row;
            gap: 10px;
            align-items: center;
        }

        .company {
            width: 40%;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Logo Icon Sederhana dengan CSS */
        .company-icon {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            width: 30px;
            height: 30px;
            border-radius: 6px;
        }

        .company-title {
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .company-address {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            padding: 10px 24px;
            border-radius: var(--radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta {
            padding-top: 100px;
            padding-bottom: 200px;
            text-align: center;
            position: relative;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
        }

        .cta-card {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 40px;
            border: 1px solid var(--primary-dark);
            border-radius: var(--radius);
            padding: 20px;
        }

        .cta-card:hover {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 40px;
            border: 1px solid var(--accent);
            box-shadow: 0px 10px 20px var(--primary-dark);
            border-radius: var(--radius);
            padding: 20px;
            transition: all 0.3s ease;
        }

        .cta p {
            margin: 0 auto 20px auto;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid var(--text-muted);
            color: var(--text-main);
            padding: 10px 24px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .btn-secondary:hover {
            border-color: var(--text-main);
            background: rgba(255,255,255,0.05);
        }

        /* --- HERO SECTION --- */
        .hero {
            padding-top: 160px;
            padding-bottom: 100px;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        /* Efek Gradient pada Teks Judul Utama */
        .text-gradient {
            background: linear-gradient(to right, #fff, #94a3b8);
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 40px auto;
        }

        /* --- STATS SECTION --- */
        .stats {
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 40px 0;
            background: rgba(30, 41, 59, 0.3);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- SERVICES SECTION --- */
        .services {
            padding: 100px 0;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        @media (min-width: 1000px) {
            .list {
                display: flex;
                flex-direction: row;
                gap: 20px;
            }
        }

        .horizontal {
            flex-direction: row;
            align-items: center;
            gap: 20px;
        }

        .vertical {
            flex-direction: column;
        }

        .card {
            display: flex;
            padding: 32px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
        }

        .card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .card p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .icon-box-s {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
        }

        .icon-box-m {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            font-size: 1.5rem;
        }

        /* --- FOOTER --- */
        footer {
            background: #020617; /* Lebih gelap dari bg utama */
            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            width: 40%;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .nav-links { display: none; } /* Hide menu on mobile for simplicity */
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .hero p { font-size: 1rem; }
            .btn-secondary { margin-left: 0; margin-top: 10px; display: block; width: 100%; }
            .btn-primary { width: 100%; display: block; }
            .footer-content {flex-direction: column; gap: 50px;}
            .company {width: 100%;}
            .copyright {width: 100%;}
        }