/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist Sans', sans-serif;
    background-color: #04010a; 
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

[x-cloak] { display: none !important; }

/* ==========================================
   EFEK GRADASI UTAMA
   ========================================== */
.text-gradient {
    background: linear-gradient(90deg, #ff3333, #f43f5e, #be123c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(239, 68, 68, 0.3));
}

/* ==========================================
   NAVBAR STYLES (GARIS TIPIS ELEGAN & GRADASI)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    background-color: rgba(4, 1, 10, 0.75);
    backdrop-filter: blur(20px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 20px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #9ea3ae;
    letter-spacing: 0.01em;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ef4444, #f43f5e, transparent);
    box-shadow: 0 1px 6px rgba(244, 63, 94, 0.8);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   FUTURISTIC CARD BUTTON STYLE (TOMBOL KARTU)
   ========================================== */
.btn-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 
                0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(190, 18, 60, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.btn-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 30px 2px rgba(239, 68, 68, 0.25),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-card:hover::before {
    opacity: 1;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-card:hover .btn-text {
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
    letter-spacing: 0.06em;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
    padding: 14px;
}

/* ==========================================
   HERO SECTION & PATTERN BACKGROUND
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
    background-color: #04010a;
}

/* PATTERN GRID TIPIS ELEGAN */
.tech-pattern {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4, 1, 10, 0.2), #04010a);
    z-index: 2;
}

/* RADIANT OVERLAY DI TENGAH HERO */
.ambient-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6); /* Start posisi kecil untuk animasi */
    width: 700px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, rgba(244, 63, 94, 0.04) 60%, transparent 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-container {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    text-align: center;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 6px 18px;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}

.hero-badge span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #bcbfc6;
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 44px;
    font-size: 18px;
    line-height: 1.65;
    color: #8a8f9c;
}

/* Glassmorphism Floating Cards */
.deco-card {
    position: absolute;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(16px);
    pointer-events: none;
    z-index: 3;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.card-left {
    bottom: 15%;
    left: 7%;
    width: 220px;
    height: 140px;
    transform: rotate(-10deg);
}

.card-right {
    top: 30%;
    right: 7%;
    width: 240px;
    height: 150px;
    border-color: rgba(239, 68, 68, 0.05);
    transform: rotate(12deg);
}

/* Efek Hover Parallax Statis untuk Kartu Melayang */
.hero-section:hover .card-left {
    transform: translateY(-12px) rotate(-10deg);
}
.hero-section:hover .card-right {
    transform: translateY(-12px) rotate(12deg);
}

/* ==========================================
   STATE & TIMING ANIMASI PREMIUM (JS TARGET)
   ========================================== */
.hidden-el {
    opacity: 0;
}

/* Animasi Khusus Glow Tengah */
[data-anim="glow"] {
    transform: translate(-50%, -50%) scale(0.6);
}
.hidden-el.reveal-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Animasi Slide Up untuk Teks & Button */
[data-anim="fade-up"] {
    transform: translateY(25px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hidden-el.reveal-up {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi Fade In Lembut untuk Kartu Dekorasi */
[data-anim="fade"] {
    opacity: 0;
}
.hidden-el.reveal-fade {
    opacity: 0.25; /* Menjaga opacity desaturasi aslinya */
}

/* ==========================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
    .nav-menu, .nav-cta, .deco-card, .hide-on-mobile {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 70px; /* Diturunkan sedikit agar pas dengan tinggi nav mobile yang lebih slim */
        left: 0;
        right: 0;
        bottom: 0;
        min-height: calc(100vh - 70px);
        background-color: #04010a;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        z-index: 40;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 12px; /* Jarak antar link lebih rapat dan rapi */
    }

    .mobile-nav-links a {
        font-size: 16px; /* Diperkecil dari 22px agar lebih elegan & sleek */
        font-weight: 500;
        color: #bcbfc6;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        letter-spacing: 0.02em;
        transition: color 0.3s ease;
    }
    
    .mobile-nav-links a:active {
        color: #f43f5e; /* Feedback instan saat ditekan di HP */
    }

    .mobile-cta {
        margin-top: auto;
        padding-bottom: 20px;
    }
    
    /* Menyesuaikan ukuran tombol di dalam mobile menu agar tidak terlalu jomplang */
    .mobile-cta .btn-card {
        padding: 14px 20px;
        font-size: 14px;
    }

    .ambient-glow-center {
        width: 320px;
        height: 320px;
    }

    .hero-title {
        font-size: 34px; /* Dioptimalkan sedikit lebih slim */
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 14px; /* Standar teks mobile premium */
        line-height: 1.6;
    }
}

/* ==========================================
   PROJECTS SECTION (SLIDER MECHANISM)
   ========================================== */
.projects-section {
    position: relative;
    padding: 100px 0;
    background-color: #04010a;
    overflow: hidden;
}

.projects-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.projects-header {
    max-width: 650px;
    margin-bottom: 50px;
}

.projects-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
}

.projects-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #8a8f9c;
}

/* Slider Area */
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
}

.projects-slider {
    width: 100%;
    height: 100%;
    list-style: none;
    position: relative;
}

/* Kartu Project Mentah (Murni Gambar Luar) */
.project-item {
    width: 220px;
    height: 320px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    will-change: transform, left, opacity;
    transition: transform 0.2s, left 0.75s, top 0.75s, width 0.75s, height 0.75s, opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mekanisme Antrean Slider */
.project-item:nth-child(1) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 24px;
    opacity: 0;
    z-index: 0;
    visibility: hidden; /* Mencegah kedipan bayangan hitam di bawah card aktif */
}

.project-item:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 24px;
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.project-item:nth-child(3) { left: 60%; z-index: 3; opacity: 1; }
.project-item:nth-child(4) { left: calc(60% + 250px); z-index: 3; opacity: 1; }
.project-item:nth-child(5) { left: calc(60% + 500px); z-index: 3; opacity: 1; }
.project-item:nth-child(6) { left: calc(60% + 750px); opacity: 0; z-index: 1; }

/* Konten Teks di Dalam Kartu Aktif */
.project-content {
    width: min(42vw, 460px);
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #ffffff;
    opacity: 0;
    display: none;
    z-index: 5;
}

.project-item:nth-child(2) .project-content {
    display: block;
    animation: showProjectContent 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.project-item-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Menjaga keterbacaan teks tanpa bantuan overlay black */
}

.project-item-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes showProjectContent {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(calc(-50% + 40px));
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(-50%);
    }
}

/* Navigasi Tombol */
.projects-nav {
    position: absolute;
    bottom: 30px;
    left: 50px;
    z-index: 10;
    display: flex;
    gap: 12px;
    user-select: none;
}

.proj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #9ea3ae;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-btn:hover {
    border-color: rgba(239, 68, 68, 0.4);
    color: #ffffff;
    background: rgba(239, 68, 68, 0.05);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================== */
@media (max-width: 1024px) {
    .project-item:nth-child(3) { left: 55%; }
    .project-item:nth-child(4) { left: calc(55% + 210px); }
    .project-item:nth-child(5) { left: calc(55% + 420px); }
    .project-item:nth-child(6) { left: calc(55% + 630px); }
}

@media (max-width: 768px) {
    .projects-section { padding: 60px 0; }
    .projects-title { font-size: 32px; }
    .projects-subtitle { font-size: 14px; }
    .slider-wrapper { height: 640px; }

    .project-item {
        width: 140px;
        height: 200px;
        top: 80%;
    }
    .project-item:nth-child(3) { left: 24px; visibility: visible; }
    .project-item:nth-child(4) { left: calc(24px + 160px); }
    .project-item:nth-child(5) { left: calc(24px + 320px); }
    
    .project-item:nth-child(1), 
    .project-item:nth-child(2) {
        height: 65%; 
    }

    .project-content {
        width: calc(100% - 48px);
        left: 24px;
    }
    .project-item-title { font-size: 24px; }
    .project-item-desc { font-size: 14px; }
    
    .projects-nav {
        bottom: auto;
        top: 24px;
        right: 24px;
        left: auto;
    }
}


/* ==========================================
   WORKFLOW SECTION STYLES
   ========================================== */
.workflow-section {
    position: relative;
    padding: 120px 0;
    background-color: #04010a;
    overflow: hidden;
    perspective: 1200px; /* Diperlukan untuk efek transisi gambar 3D */
}

/* 
   WEB3 ABSTRACT PATTERN (SEBELAH KIRI)
   Membuat pola lingkaran konsentris & wave tipis elegan bebas kotak-kotak 
*/
.workflow-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    opacity: 0.025; /* Sangat tipis & mewah */
    background-image: 
        radial-gradient(circle at 20% 30%, transparent 120px, rgba(255, 255, 255, 0.8) 121px, rgba(255, 255, 255, 0.8) 123px, transparent 124px),
        radial-gradient(circle at 20% 30%, transparent 240px, rgba(255, 255, 255, 0.5) 241px, rgba(255, 255, 255, 0.5) 244px, transparent 245px),
        radial-gradient(circle at 20% 30%, transparent 360px, rgba(255, 255, 255, 0.3) 361px, rgba(255, 255, 255, 0.3) 365px, transparent 366px),
        radial-gradient(circle at 70% 60%, transparent 180px, rgba(255, 255, 255, 0.4) 181px, rgba(255, 255, 255, 0.4) 184px, transparent 185px);
    background-size: 100% 100%;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.workflow-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.workflow-header {
    max-width: 650px;
    margin-bottom: 40px;
}

.workflow-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
}


.workflow-content-wrapper {
    display: flex;
    position: relative;
    gap: 60px;
}

.workflow-left-panel {
    position: relative;
    flex: 1;
    padding-left: 60px;
}

/* Track Line (Sama baik di Desktop maupun Mobile) */
.workflow-progress-track {
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

/* Neon Red Gradient Slightly Orange */
.workflow-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Nanti di-override dengan JS via scroll handler */
    background: linear-gradient(to bottom, #ff3333 0%, #ff0000 70%, #f53f3f 100%);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.8), 0 0 35px rgba(255, 122, 0, 0.4);
    border-radius: 999px;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.workflow-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.workflow-step-item {
    position: relative;
    display: flex;
    flex-direction: column; /* Fleksibel untuk akomodasi gambar mobile */
    gap: 12px;
    cursor: pointer;
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-mobile-img-wrapper {
    display: none; /* Default hidden di desktop */
}

/* Indikator Angka Lingkaran */
.step-indicator {
    position: absolute;
    left: -60px;
    top: 30px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #04010a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-number {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    transition: color 0.4s ease;
}

.step-body {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-bullets li {
    font-size: 15px;
    color: #8a8f9c;
    line-height: 1.6;
}

/* STATE AKTIF (DESKTOP) */
.workflow-step-item.is-active {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0px rgba(255, 255, 255, 0.1);
}

.workflow-step-item.is-active .step-indicator {
    border-color: #ff0800;
    background: linear-gradient(135deg, #ff3333, #fc2d2d);
    box-shadow: 0 0 25px rgba(255, 51, 51, 0.5);
    transform: scale(1.1);
}

.workflow-step-item.is-active .step-number { color: #ffffff; }
.workflow-step-item.is-active .step-title { color: #ffffff; }
.workflow-step-item.is-active .step-details { max-height: 300px; opacity: 1; transform: translateY(0); }


/* PANEL KANAN (DESKTOP VISUAL) */
.workflow-right-panel {
    flex: 1;
    position: relative;
}

.visual-sticky-container {
    position: sticky;
    top: 20vh;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-visual-pure {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 
   PREMIUM CINEMATIC TRANSITION EFFECT 
   Efek transisi gambar dibuat miring (3D Slanted), blur, dan scale-out yang dramatis
*/
.workflow-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    filter: blur(30px) brightness(0.3);
    transform: scale(0.85) rotateY(25px) translateY(40px);
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Saat Gambar Aktif Terpilih */
.workflow-visual-img.is-active {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1) rotateY(0deg) translateY(0);
    z-index: 2;
}

.ambient-glow-workflow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.18) 0%, rgba(255, 122, 0, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLET OPTIMIZED)
   ========================================== */
@media (max-width: 992px) {
    .workflow-bg-pattern {
        width: 100%; /* Pola memenuhi background saat mobile */
        opacity: 0.015;
    }

    .workflow-right-panel {
        display: none; /* Sembunyikan panel sticky desktop */
    }

    .workflow-left-panel {
        padding-left: 45px; /* Ruang presisi untuk timeline di kiri mobile */
    }

    .workflow-progress-track {
        left: 12px; /* Posisi track garis di mobile */
        top: 10px;  /* Disesuaikan agar pas dengan titik awal nomor 01 */
        bottom: 25px; /* Disesuaikan agar berhenti pas di titik akhir nomor 05 */
        width: 2px;
    }

    /* FORCE FULL PROGRESS BAR (CSS ONLY)
       Menghilangkan kontrol JS, langsung menyala penuh 100% dari atas ke bawah
    */
    .workflow-progress-bar {
        height: 100% !important; 
        background: linear-gradient(to bottom, #ff3333 0%, #ff5e00 50%, #ff7a00 100%) !important;
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.6), 0 0 25px rgba(255, 122, 0, 0.3) !important;
    }

    .workflow-steps-list {
        gap: 35px;
    }

    .workflow-step-item {
        padding: 0 0 15px 0;
        cursor: default;
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    /* FORCE ACTIVE STATES FOR NUMBERS & TEXT
       Membuat semua nomor, judul, dan detail langsung menyala & terbuka di mobile
    */
    .step-indicator {
        left: -44px; /* Tarik badge angka pas di atas garis timeline mobile */
        top: 0px;
        width: 28px;
        height: 28px;
        transform: scale(1) !important;
        
        /* Menyala konstan menggunakan gradien revisimu */
        border-color: #ff0800;
    background: linear-gradient(135deg, #ff3333, #fc2d2d);
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.5) !important;
    }

    .step-number {
        font-size: 11px;
        color: #ffffff !important; /* Angka putih menyala */
    }

    .step-title {
        font-size: 20px;
        color: #ffffff !important; /* Judul putih menyala */
        margin-bottom: 8px;
    }

    .step-details {
        max-height: none !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .step-bullets li {
        font-size: 14px;
        color: #8a8f9c; /* Deskripsi dibuat sedikit soft agar hierarki teksnya premium */
    }

    /* Tampilan Image Terintegrasi di dalam baris Mobile */
    .workflow-mobile-img-wrapper {
        display: block;
        width: 100%;
        max-width: 440px;
        height: auto;
        margin: 15px 0 20px 0;
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px;
        backdrop-filter: blur(8px);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    }

    .workflow-mobile-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 8px;
    }
}


/* ==========================================
   SERVIS UTAMA SECTION
   ========================================== */
.services-section {
    position: relative;
    padding: 140px 0;
    background-color: #04010a;
    overflow: hidden;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Moving Ambient Blobs Background */
.services-blob-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.service-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.blob-1 {
    top: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff3333 0%, #be123c 100%);
    animation: floatingBlobOne 22s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #f43f5e 0%, #04010a 100%);
    animation: floatingBlobTwo 18s infinite alternate ease-in-out;
}

@keyframes floatingBlobOne {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.1); }
    100% { transform: translate(-40px, -40px) scale(0.9); }
}

@keyframes floatingBlobTwo {
    0% { transform: translate(0, 0) scale(0.9); }
    50% { transform: translate(60px, -80px) scale(1.15); }
    100% { transform: translate(-20px, 40px) scale(1); }
}

/* Header Styling */
.services-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.services-main-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-main-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #8a8f9c;
}

/* Grid Layout (Desktop) */
.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Premium Bento Cards */
.service-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02), 0 20px 40px rgba(0,0,0,0.4);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 63, 94, 0.2);
}

.card-inner {
    padding: 40px;
    position: relative;
    z-index: 5;
}

/* Dynamic Hover Radial Glow Grid */
.card-glow-element {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 220px at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(244, 63, 94, 0.12), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover .card-glow-element {
    opacity: 1;
}

/* Card Content elements */
.card-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.service-num {
    font-family: monospace;
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.service-tag {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #bcbfc6;
}

.service-card:hover .service-tag {
    border-color: rgba(244, 63, 94, 0.3);
    color: #ffffff;
    background: rgba(244, 63, 94, 0.1);
}

.service-name {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.service-card:hover .service-name {
    color: #f43f5e;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-list li {
    font-size: 15px;
    color: #8a8f9c;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Bullet Custom Menggunakan Kode Gradasi */
.service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #be123c;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-list li {
    color: #e2e8f0;
}

.service-card:hover .service-list li:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.service-card:hover .service-list li:hover::before {
    background: #ff3333;
    transform: scale(1.4);
}

/* ==========================================
   SISTEM REVEAL PREMIUM ANIMATION (BARU)
   ========================================== */
.vlt-reveal-header {
    opacity: 0;
    transform: translateY(40px);
}

.vlt-reveal-grid .service-card {
    opacity: 0;
    transform: translateY(60px);
}

/* Trigger Class Aktif via JS */
.vlt-animate-header {
    animation: vltFadeUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vlt-animate-cards .service-card:nth-child(1) { animation: vltFadeUpSmooth 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; }
.vlt-animate-cards .service-card:nth-child(2) { animation: vltFadeUpSmooth 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards; }
.vlt-animate-cards .service-card:nth-child(3) { animation: vltFadeUpSmooth 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards; }

@keyframes vltFadeUpSmooth {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE: MOBILE HORIZONTAL SLIDER (GESER KANAN)
   ========================================== */
@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-main-title {
        font-size: 32px;
    }

    /* Rombak Grid Menjadi Lintasan Horisontal */
    .services-grid-wrapper {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 20px 24px 40px 24px;
        margin-left: -24px;
        margin-right: -24px;
        gap: 20px;
        
        /* Sembunyikan scrollbar bawaan agar tetap bersih */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .services-grid-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    /* Pengaturan Ukuran Kartu Saat Mode Slider Mobile */
    .service-card {
        flex: 0 0 300px; /* Lebar kartu paten di mobile */
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .card-inner {
        padding: 30px;
    }

    /* Nonaktifkan efek translate hover di mobile agar scroll tidak goyang */
    .service-card:hover {
        transform: none;
    }
    
    /* Radial glow di-center di mobile karena tidak ada mouse pointer */
    .card-glow-element {
        background: radial-gradient(circle at center, rgba(244, 63, 94, 0.08), transparent 75%);
        opacity: 1;
    }
}

.trust-section {
    position: relative;
    padding: 100px 0 140px 0;
    background-color: #04010a;
    overflow: hidden;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.trust-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(190, 18, 60, 0.05) 0%, rgba(244, 63, 94, 0.01) 70%, transparent 100%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.client-ticker-wrapper {
    width: 100%;
    margin-bottom: 80px;
    text-align: center;
}

.ticker-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #5e5e5e;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.ticker-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 80px;
    align-items: center;
    animation: infiniteScrollTicker 30s linear infinite;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.client-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0) opacity(0.85);
    transform: scale(1.05);
}

@keyframes infiniteScrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); }
}

.trust-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.03) 80%, transparent);
    margin-bottom: 90px;
}

.tech-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.tech-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
}

.tech-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #8a8f9c;
}

.tech-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tech-card-wide {
    grid-column: span 2;
}

.tech-bento-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01), 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-bento-card:hover {
    border-color: rgba(239, 68, 68, 0.15);
    transform: translateY(-4px);
}

.tech-card-content {
    padding: 40px;
    position: relative;
    z-index: 5;
}

.tech-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 250px at var(--tech-m-x, 0px) var(--tech-m-y, 0px), rgba(239, 68, 68, 0.08), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.tech-bento-card:hover .tech-card-glow {
    opacity: 1;
}

.tech-category-tag {
    font-family: monospace;
    font-size: 11px;
    color: #be123c;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.tech-category-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.tech-icons-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-icon-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-icon-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: filter 0.4s ease;
}

.tech-icon-item span {
    font-size: 14px;
    font-weight: 500;
    color: #bcbfc6;
    transition: color 0.4s ease;
}

.tech-icon-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.1);
    transform: translateY(-2px);
}

.tech-icon-item:hover img {
    filter: opacity(1) grayscale(0);
}

.tech-icon-item:hover span {
    color: #ffffff;
}

@media (max-width: 992px) {
    .trust-section {
        padding: 60px 0 100px 0;
    }

    .tech-title {
        font-size: 32px;
    }

    .ticker-track {
        gap: 50px;
    }

    .tech-bento-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 10px 24px 30px 24px;
        margin-left: -24px;
        margin-right: -24px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tech-bento-grid::-webkit-scrollbar {
        display: none;
    }

    .tech-bento-card {
        flex: 0 0 320px;
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
        transform: none !important;
    }

    .tech-card-wide {
        grid-column: auto;
    }

    .tech-card-content {
        padding: 30px;
    }

    .tech-card-glow {
        background: radial-gradient(circle at center, rgba(239, 68, 68, 0.05), transparent 75%);
        opacity: 1;
    }

    .tech-icons-flex {
        gap: 12px;
    }

    .tech-icon-item {
        padding: 10px 14px;
        width: calc(50% - 6px);
    }
}

.impact-section {
    position: relative;
    padding: 140px 0;
    background-color: #04010a;
    overflow: hidden;
}

.impact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
}

.impact-left {
    flex: 1;
    position: sticky;
    top: 20vh;
    height: fit-content;
}

.impact-tag {
    font-family: monospace;
    font-size: 11px;
    color: #be123c;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.impact-main-title {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.impact-main-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: #8a8f9c;
    max-width: 460px;
}

.impact-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.metric-row {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    transition: border-color 0.4s ease;
}

.metric-row:first-child {
    padding-top: 0;
}

.metric-row:hover {
    border-color: rgba(244, 63, 94, 0.2);
}

.metric-number-wrapper {
    flex: 0 0 200px;
}

.metric-number {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff, #8a8f9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.metric-row:hover .metric-number {
    background: linear-gradient(90deg, #ff3333, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05) translateX(5px);
    filter: drop-shadow(0 0 20px rgba(244, 63, 94, 0.3));
}

.metric-text-wrapper {
    flex: 1;
    padding-left: 20px;
}

.metric-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transition: color 0.4s ease;
}

.metric-row:hover .metric-title {
    color: #f43f5e;
}

.metric-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #8a8f9c;
    transition: color 0.4s ease;
}

.metric-row:hover .metric-desc {
    color: #e2e8f0;
}

/* ==========================================
   SISTEM ANIMASI BARU: VORTEX CASCADE
   ========================================== */
.vtx-cascade-left {
    opacity: 0;
    transform: translateX(-50px);
}

.vtx-cascade-right .metric-row {
    opacity: 0;
    transform: translateY(40px);
}

.vtx-run-left {
    animation: vtxSlideRightSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vtx-run-right .metric-row:nth-child(1) { animation: vtxSlideUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; }
.vtx-run-right .metric-row:nth-child(2) { animation: vtxSlideUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards; }
.vtx-run-right .metric-row:nth-child(3) { animation: vtxSlideUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.vtx-run-right .metric-row:nth-child(4) { animation: vtxSlideUpSmooth 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards; }

@keyframes vtxSlideRightSmooth {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vtxSlideUpSmooth {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================== */
@media (max-width: 992px) {
    .impact-section {
        padding: 80px 0;
    }

    .impact-container {
        flex-direction: column;
        gap: 56px;
    }

    .impact-left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .impact-main-title {
        font-size: 36px;
    }

    .impact-main-subtitle {
        margin: 0 auto;
    }

    /* Tampilan Mobile Tetap List Elegant Bukan Card, Tapi Menyesuaikan Lebar Layar */
    .metric-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 0;
    }

    .metric-row:first-child {
        padding-top: 0;
    }

    .metric-number-wrapper {
        flex: none;
        margin-bottom: 12px;
    }

    .metric-number {
        font-size: 48px;
    }

    .metric-text-wrapper {
        padding-left: 0;
    }
    
    .metric-row:hover .metric-number {
        transform: scale(1.02);
    }
}

.faq-section {
    position: relative;
    padding: 160px 0;
    background-color: #04010a;
    overflow: hidden;
}

.faq-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}

.faq-tag {
    font-family: monospace;
    font-size: 11px;
    color: #be123c;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.faq-main-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.faq-main-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #8a8f9c;
    max-width: 540px;
    margin: 0 auto;
}

.faq-list-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f43f5e, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover::before,
.faq-item.is-active::before {
    transform: scaleX(1);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    padding: 38px 0;
    cursor: pointer;
    outline: none;
}

.faq-question {
    font-size: 20px;
    font-weight: 500;
    color: #a3a8b4;
    letter-spacing: -0.01em;
    padding-right: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-question {
    color: #ffffff;
    transform: translateX(6px);
}

.faq-icon-box {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon-box::before,
.faq-icon-box::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon-box::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 1px;
}

.faq-icon-box::after {
    top: 0;
    left: 9px;
    width: 1px;
    height: 20px;
}

.faq-item:hover .faq-icon-box::before,
.faq-item:hover .faq-icon-box::after {
    background-color: #ffffff;
}

.faq-item.is-active .faq-question {
    color: #f43f5e;
    transform: translateX(6px);
}

.faq-item.is-active .faq-icon-box::before {
    transform: rotate(135deg);
    background-color: #f43f5e;
}

.faq-item.is-active .faq-icon-box::after {
    transform: rotate(135deg);
    background-color: #f43f5e;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 40px 38px 6px;
}

.faq-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #8a8f9c;
}

.vlt-faq-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(30px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vlt-faq-run {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 992px) {
    .faq-section {
        padding: 90px 0;
    }

    .faq-container {
        padding: 0 24px;
    }

    .faq-header {
        margin-bottom: 48px;
    }

    .faq-main-title {
        font-size: 36px;
    }

    .faq-trigger {
        padding: 28px 0;
    }

    .faq-question {
        font-size: 18px;
        padding-right: 24px;
    }

    .faq-content {
        padding: 0 24px 28px 0;
    }

    .faq-item:hover .faq-question,
    .faq-item.is-active .faq-question {
        transform: none;
    }
}

.cta-section {
    position: relative;
    padding: 120px 0 160px 0;
    background-color: #04010a;
    overflow: hidden;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-bento-card {
    position: relative;
    width: 100%;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 30px 70px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.cta-mesh-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 12, 60, 0.12) 0%, rgba(244, 63, 94, 0.02) 60%, transparent 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.cta-grid-layout {
    display: flex;
    align-items: center;
    padding: 80px;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.cta-text-side {
    flex: 1.2;
}

.cta-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(214, 214, 214, 0.1);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #4ef43f;
    border-radius: 50%;
    animation: ctaDotPulse 2s infinite;
}

@keyframes ctaDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(116, 250, 75, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(244, 63, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.badge-text {
    font-family: monospace;
    font-size: 11px;
    font-weight: 600;
    color: #f43f5e;
    letter-spacing: 0.1em;
}

.cta-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: #8a8f9c;
    max-width: 520px;
}

.cta-action-side {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.cta-glass-box {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.box-micro-text {
    font-family: monospace;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.box-main-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.cta-whatsapp-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-radius: 14px;
    background: #ffffff;
    color: #04010a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-whatsapp-btn:hover {
    background: #f43f5e;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.3);
    transform: translateY(-2px);
}

.cta-whatsapp-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-guarantee {
    display: block;
    font-size: 12px;
    color: rgba(138, 143, 156, 0.6);
    text-align: center;
    margin-top: 20px;
}

.vlt-cta-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(40px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vlt-cta-run {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 992px) {
    .cta-section {
        padding: 60px 0 100px 0;
    }

    .cta-grid-layout {
        flex-direction: column;
        padding: 40px 24px;
        gap: 48px;
    }

    .cta-text-side {
        text-align: center;
        width: 100%;
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-subtitle {
        margin: 0 auto;
    }

    .cta-action-side {
        width: 100%;
        justify-content: center;
    }

    .cta-glass-box {
        max-width: 100%;
        padding: 32px 20px;
    }
}

.blog-section {
    position: relative;
    padding: 140px 0;
    background-color: #04010a;
    overflow: hidden;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-header {
    text-align: center;
    margin-bottom: 72px;
}

.blog-tag {
    font-family: monospace;
    font-size: 11px;
    color: #be123c;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.blog-main-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.blog-main-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #8a8f9c;
    max-width: 540px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    margin-bottom: 64px;
}

.blog-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    border-color: rgba(244, 63, 94, 0.2);
    transform: translateY(-6px);
}

.blog-thumb-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
}

.blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) opacity(0.85);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.05);
    filter: grayscale(0) opacity(1);
}

.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.blog-author {
    color: #bcbfc6;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.blog-card:hover .blog-title {
    color: #f43f5e;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #8a8f9c;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    width: fit-content;
}

.blog-read-more span {
    position: relative;
}

.blog-read-more span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f43f5e;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-read-more span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.blog-read-more svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
    color: #f43f5e;
}

.blog-footer-action {
    width: 100%;
    display: flex;
    justify-content: center;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-view-all-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: scaleX(0.6);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
}

.blog-view-all-btn:hover {
    color: #ffffff;
}

.blog-view-all-btn:hover::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, transparent, #f43f5e, transparent);
}

.vlt-blog-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(25px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vlt-blog-run {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 992px) {
    .blog-section {
        padding: 90px 0;
    }

    .blog-main-title {
        font-size: 36px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-content {
        padding: 24px;
    }
}

.footer-section {
    position: relative;
    padding: 100px 0 60px 0;
    background-color: #04010a;
    /* Garis tipis premium di atas footer */
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    overflow: hidden;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #8a8f9c;
    max-width: 340px;
    text-align: left;
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-title {
    font-family: monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-align: left;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-link {
    font-size: 14px;
    font-weight: 500;
    color: #bcbfc6;
    text-decoration: none;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.footer-link:hover {
    color: #f43f5e;
    transform: translateX(4px);
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-direct-wa {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.wa-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 4px;
}

.status-pulse {
    width: 4px;
    height: 4px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.footer-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.footer-wa-link svg {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-wa-link:hover {
    color: #f43f5e;
}

.footer-wa-link:hover svg {
    transform: translateX(4px);
    color: #f43f5e;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    text-align: left;
}

.copyright-text {
    font-size: 13px;
    color: rgba(138, 143, 156, 0.5);
    text-align: left;
}

.footer-signature {
    font-family: monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.1em;
    text-align: right;
}

/* RESPONSIVE MODE: TETAP AMAN RATA KIRI */
@media (max-width: 992px) {
    .footer-section {
        padding: 60px 0 40px 0;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand-block,
    .footer-links-block,
    .footer-contact-block {
        align-items: flex-start;
        text-align: left;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-title {
        margin-bottom: 16px;
    }

    .footer-link:hover {
        transform: translateX(4px); /* Efek geser tetap aktif di mobile */
    }

    .footer-direct-wa {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding-top: 32px;
    }

    .footer-signature {
        text-align: left;
    }
}
.wa-floating-premium {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    filter: drop-shadow(0 4px 24px rgba(244, 63, 94, 0.12));
}

.wa-capsule-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 99px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.wa-glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244, 63, 94, 0.2) 0%, transparent 90%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.wa-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 12px #22c55e;
    position: relative;
}

.wa-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid #22c55e;
    animation: waPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.wa-status-text {
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.wa-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-capsule-link:hover {
    border-color: rgba(244, 63, 94, 0.4);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 50px rgba(244, 63, 94, 0.15);
}

.wa-capsule-link:hover .wa-glow-overlay {
    opacity: 1;
}

.wa-capsule-link:hover .wa-status-text {
    color: #ffffff;
}

.wa-capsule-link:hover .wa-icon-box {
    background: #f43f5e;
    border-color: #f43f5e;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
    transform: rotate(12deg);
}

@keyframes waPing {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .wa-floating-premium {
        bottom: 24px;
        right: 24px;
    }
    
    .wa-status-text {
        display: none;
    }
    
    .wa-capsule-link {
        padding: 8px;
        gap: 0;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .wa-status-indicator {
        position: absolute;
        top: 6px;
        right: 6px;
        z-index: 2;
    }
    
    .wa-pulse-dot {
        width: 8px;
        height: 8px;
    }
    
    .wa-icon-box {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}