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

        :root {
            --primary-red: #DC2626;
            --dark-red: #DC2626;
            --light-red: #FFE6E6;
            --white: #FFFFFF;
            --gray-50: #F8F9FA;
            --gray-100: #F1F3F5;
            --gray-200: #E9ECEF;
            --gray-300: #DEE2E6;
            --gray-600: #6C757D;
            --gray-800: #343A40;
            --gray-900: #212529;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--gray-50);
            color: var(--gray-800);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero, .section-header, .requirements-grid, .modul-grid, .dept-grid, .template-card {
            animation: fadeIn 0.8s ease-out forwards;
        }

        .requirements-grid, .modul-grid, .dept-grid {
            animation-delay: 0.2s;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar - Professional */
        .navbar {
            background: var(--white);
            border-bottom: 3px solid var(--primary-red);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-box {
            width: 48px;
            height: 48px;
            background: var(--primary-red);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 800;
            font-size: 24px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            letter-spacing: -0.5px;
        }

        .logo-sub {
            font-size: 11px;
            color: var(--gray-600);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--gray-800);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.2s;
            position: relative;
        }

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

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray-800);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .hero p {
            font-size: 20px;
            line-height: 1.8;
            max-width: 750px;
            margin: 0 auto 40px;
            opacity: 0.95;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary-red);
        }

        .btn-primary:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-red);
        }

        .btn-warning {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #1a1a1a;
            border: 2px solid #FFD700;
        }

        .btn-warning:hover {
            background: linear-gradient(135deg, #FFC300 0%, #FF8C00 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
        }

        /* Section */
        section {
            padding: 80px 0;
        }

        /* Section with red background */
        section.bg-red {
            background: var(--primary-red);
        }

        section.bg-red .section-title,
        section.bg-red .section-subtitle {
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Modul Cards */
        .modul-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .modul-card {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modul-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(200, 16, 46, 0.3);
        }

        .modul-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }

        .modul-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .modul-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .modul-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .modul-list li {
            padding: 8px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modul-list li::before {
            content: '?';
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
        }

        /* Persyaratan Section */
        .persyaratan-section {
            background: white;
        }

        .persyaratan-section .section-title {
            color: var(--gray-900);
        }

        .persyaratan-section .section-subtitle {
            color: var(--gray-600);
        }

        .alert-info {
            background: var(--light-red);
            border-left: 4px solid var(--primary-red);
            padding: 20px 24px;
            border-radius: 8px;
            margin-bottom: 40px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .alert-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .alert-content strong {
            color: var(--primary-red);
            font-weight: 700;
            display: block;
            margin-bottom: 4px;
        }

        .alert-content p {
            color: var(--gray-700);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 48px;
        }

        .requirement-item {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 14px;
            padding: 20px;
            display: flex;
            gap: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .requirement-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(220, 38, 38, 0.18);
            border-color: var(--primary-red);
        }

        .requirement-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 17px;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
        }

        .requirement-content {
            flex: 1;
        }

        .requirement-content h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .requirement-content p {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-required {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: var(--white);
        }

        .badge-optional {
            background: #FFA500;
            color: var(--white);
        }

        .badge-info {
            background: #0066CC;
            color: var(--white);
        }

        /* Button Dari Perusahaan */
        .btn-perusahaan {
            background: #0ea5e9;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn-perusahaan:hover {
            background: #0284c7;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
        }

        /* Notes Box */
        .notes-box {
            background: var(--gray-100);
            border: 2px dashed var(--gray-300);
            border-radius: 12px;
            padding: 32px;
            margin-top: 48px;
        }

        .notes-box h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .notes-box ul {
            list-style: none;
        }

        .notes-box li {
            padding: 12px 0;
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .notes-box li::before {
            content: '??';
            font-size: 16px;
            flex-shrink: 0;
        }

        .notes-box strong {
            color: var(--gray-900);
            font-weight: 600;
        }

        /* Template Section */
        .template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .template-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .template-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-red);
        }

        .template-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .template-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .template-card p {
            font-size: 13px;
            color: var(--gray-600);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .btn-download {
            background: var(--primary-red);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-download:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }

        /* Departemen Section */
        .dept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .dept-card {
            background: white;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        }

        .dept-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 12px 30px rgba(220, 38, 38, 0.15);
            transform: translateY(-6px);
        }

        .dept-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
        }

        .dept-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .dept-card p {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
            margin-bottom: 0;
        }

        .dept-quota {
            background: var(--primary-red);
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 14px;
            color: white;
            width: 100%;
            font-weight: 600;
        }

        .dept-quota strong {
            color: white;
            font-weight: 800;
            font-size: 18px;
        }

        /* Contact Section */
        .contact-section {
            background: var(--gray-100);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .contact-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .contact-icon {
            width: 64px;
            height: 64px;
            background: var(--light-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
        }

        .contact-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .contact-card p {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 8px;
        }

        .contact-value {
            color: var(--primary-red);
            font-weight: 600;
            font-size: 15px;
        }

        /* Footer */
        footer {
            background: var(--gray-900);
            color: var(--white);
            padding: 48px 0 32px;
            text-align: center;
        }

        footer h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        footer p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .footer-divider {
            height: 1px;
            background: rgba(255,255,255,0.1);
            margin: 24px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .modul-grid {
                grid-template-columns: 1fr;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .template-grid {
                grid-template-columns: 1fr;
            }

            .dept-grid {
                grid-template-columns: repeat(2, 1fr) !important; /* Paksa 2 Kolom di HP */
                gap: 10px !important;
            }

            /* Penyesuaian Card Departemen di HP */
            .dept-card {
                padding: 12px !important; /* Padding lebih kecil lagi */
                width: 100% !important;
                min-height: 180px; /* Tinggi minimum agar seragam */
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                border-radius: 12px !important;
            }

            .dept-icon {
                width: 40px !important;
                height: 40px !important;
                font-size: 18px !important;
                margin-bottom: 8px !important;
                margin-left: auto;
                margin-right: auto;
            }

            .dept-card h3 {
                font-size: 12px !important;
                margin-bottom: 4px !important;
                line-height: 1.2 !important;
                height: 30px; /* Fixed height for title alignment */
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .dept-card p {
                font-size: 10px !important;
                line-height: 1.3 !important;
                margin-bottom: 8px !important;
                flex-grow: 1;
            }
            
            .dept-quota {
                padding: 6px 8px !important;
                font-size: 10px !important;
                margin-top: auto !important;
                border-radius: 8px !important;
            }

            .dept-quota strong {
                font-size: 12px !important;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 40px 0;
            }

            .hero {
                padding: 40px 0;
            }

            /* Sesuaikan dekorasi pada mobile agar tidak offside tapi tetap tampil */
            .decoration-sawit {
                display: block !important;
                width: 120px !important; /* Ukuran diperkecil */
                opacity: 0.4 !important; /* Transparansi agar tidak mengganggu teks */
                z-index: 0 !important;
            }

            .decoration-sawit.left {
                left: -30px !important; /* Posisikan ulang agar masuk layar */
                transform: translateY(-50%) !important;
            }

            .decoration-sawit.right {
                right: -30px !important; /* Posisikan ulang agar masuk layar */
                transform: translateY(-50%) scaleX(-1) !important;
            }
            
            /* KHUSUS HERO (Engineer): Posisikan di bawah agar rata dan rapi */
            .hero .decoration-sawit {
                top: auto !important;
                bottom: -20px !important; /* Duduk di bagian bawah */
                transform: none !important;
                width: 100px !important;
                opacity: 1 !important;
            }

            .hero .decoration-sawit.left {
                left: -20px !important;
            }

            .hero .decoration-sawit.right {
                right: -20px !important;
                transform: scaleX(-1) !important; /* Hanya mirror, tanpa translate vertical */
            }

            /* Pastikan section meng-handle overflow agar tidak ada scroll horizontal */
            .hero, .persyaratan-section {
                overflow-x: hidden; 
                position: relative;
            }

            /* Fix Modal PDF di HP */
            .modal-dialog {
                margin: 0.5rem;
                height: calc(100vh - 1rem) !important;
            }
            
            .modal-content {
                height: 100%;
            }

            iframe {
                display: block;
                width: 100%;
                height: 100%;
                overflow: scroll !important;
                -webkit-overflow-scrolling: touch;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .requirements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .modul-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
