/* ==========================================================================
   4. PREMIUM ASYMMETRIC HERO LAYOUT
   ========================================================================== */
.hero {
    position: relative;
    background: var(--color-surface);
    padding:130px 0 100px;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Hero Content (Left Block) */
.hero-content {
    text-align: left;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    background: var(--color-surface-soft);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 1px solid rgba(67, 56, 202, 0.06);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--color-secondary);
}

.hero-highlight {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-group-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.proof-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(67, 56, 202, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

/* ==========================================================================
   5. AMBIENT MESH GLOWS & HERO VISUAL SHOWCASE (Right Block)
   ========================================================================== */
.hero-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.hero-glow-container {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.65;
}

.glow-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
    top: -5%;
    right: -10%;
    animation: meshPulse 12s ease-in-out infinite alternate;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: meshPulse 9s ease-in-out infinite alternate-reverse;
}

/* ==========================================================================
   6. HIGH-FIDELITY HARDWARE LAPTOP MOCKUP (DENGAN AUTO-SLIDER 3 TAMPILAN)
   ========================================================================== */
.laptop-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    z-index: 2;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    animation: premiumFloat 7s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.laptop-screen {
    position: relative;
    background: #090D16;
    border-radius: 18px 18px 0 0;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: none;
    box-shadow: 
        0 30px 70px -20px rgba(15, 23, 42, 0.3),
        0 15px 35px -15px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

.screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 18%, transparent 35%);
    pointer-events: none;
    z-index: 4;
}

.screen-header {
    display: flex;
    align-items: center;
    background: #151A26;
    padding: 8px 14px;
    border-radius: 12px 12px 0 0;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    opacity: 0.8;
}
.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }

.browser-address {
    flex: 1;
    background: rgba(9, 13, 22, 0.5);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--color-text-light);
    padding: 4px 12px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.02);
    letter-spacing: 0.01em;
}

/* --- Pengaturan Konten Layar & Animasi Pergantian Tampilan --- */
.screen-content {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    background: #090D16;
    aspect-ratio: 16/10; /* Menjaga rasio layar tetap konsisten */
}

.screen-content img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Semua gambar disembunyikan secara default */
    transition: transform 0.4s var(--ease-luxury) var(--motion-delay-md);
    animation: screenSlider 12s infinite; /* Total durasi animasi 12 detik bergantian */
}

/* Efek sedikit zoom-in saat kursor diarahkan ke laptop */
.laptop-wrapper:hover .screen-content img {
    transform: scale(1.03);
}

/* Pengaturan jeda waktu (delay) tampil untuk masing-masing gambar */
.screen-content img:nth-child(1) {
    animation-delay: 0s;
}
.screen-content img:nth-child(2) {
    animation-delay: 4s; /* Muncul setelah gambar pertama selesai (detik ke-4) */
}
.screen-content img:nth-child(3) {
    animation-delay: 8s; /* Muncul setelah gambar kedua selesai (detik ke-8) */
}

/* Keyframes efek memudar (crossfade) untuk 3 Gambar */
@keyframes screenSlider {
    0% { opacity: 0; }
    4% { opacity: 1; }    /* Efek transisi memudar masuk (fade in) selama ~0.5 detik */
    33% { opacity: 1; }   /* Gambar menetap diam selama 3.5 detik berikutnya */
    37% { opacity: 0; }   /* Efek transisi memudar keluar (fade out) */
    100% { opacity: 0; }
}

/* Layered Solid 2.5D Laptop Base Details */
.laptop-base-container {
    position: relative;
    width: 114%;
    margin-left: -7%;
    z-index: 3;
}

.laptop-base-top {
    height: 9px;
    background: linear-gradient(to bottom, #E2E8F0 0%, #CBD5E1 100%);
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #A1AEC1;
}

.laptop-base-lip {
    height: 11px;
    background: linear-gradient(to bottom, #CBD5E1 0%, #64748B 100%);
    border-radius: 0 0 24px 24px;
    box-shadow: 
        0 25px 45px -5px rgba(15, 23, 42, 0.35),
        0 10px 20px -10px rgba(15, 23, 42, 0.25);
}

/* ==========================================================================
   7. GLASSMORPHISM FLOATING CARDS SYSTEM
   ========================================================================== */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 6px -1px rgba(15, 23, 42, 0.02),
        0 20px 40px -12px rgba(15, 23, 42, 0.12);
    z-index: 10;
    transition: var(--ease-luxury), background 0.3s, border 0.3s, box-shadow 0.3s;
    will-change: transform;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.92) ;
    border-color: rgba(67, 56, 202, 0.2) ;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.22);
}

.card-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: 0 4px 10px rgba(15,23,42,0.04);
}

.card-icon-wrapper::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }

.text-primary::after { background: var(--color-primary); }
.text-secondary::after { background: var(--color-secondary); }
.text-accent::after { background: var(--color-accent); }

.pulse-dot {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1.5px solid currentColor;
    animation: indicatorPulse 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    opacity: 0;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1px;
}

.floating-card p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-text-soft);
    font-weight: 500;
    white-space: nowrap;
}

/* Strategic Position & Independent Floating Motions */
.card-1 {
    top: 20%;
    left: -14%;
    animation: cardFloatX1 6s ease-in-out infinite;
}

.card-2 {
    top: -15%;
    right: 12%;
    animation: cardFloatX2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    right: -12%;
    animation: cardFloatX3 8s ease-in-out infinite;
}

/* ==========================================================================
   8. SEQUENTIAL FADE REVEAL SYSTEM & KEYFRAMES
   ========================================================================== */

@keyframes meshPulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.15); }
}

@keyframes premiumFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes cardFloatX1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes cardFloatX2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes cardFloatX3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-11px) rotate(1.5deg); }
}

@keyframes indicatorPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* ==========================================================================
   9. PERFECT RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .card-1 { left: -5%; }
    .card-2 { right: 2%; }
    .card-3 { right: -4%; }
}

@media (max-width: 992px) {
    .hero { padding: 100px 0 60px; }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-group-cta { justify-content: center; }
    .hero-proof { justify-content: center; width: 100%; }
    .laptop-wrapper { max-width: 480px; margin: 0 auto; }
    
    /* Reposition cards for clean fluid stack placement */
    .card-1 { top: 12%; left: -6%; }
    .card-2 { top: -8%; right: -2%; }
    .card-3 { bottom: 8%; right: -4%; }
}

@media (max-width: 768px) {
    .hero-layout { gap: 56px; }
    .floating-card { padding: 10px 14px; gap: 10px; border-radius: 14px; }
    .card-icon-wrapper { width: 30px; height: 30px; border-radius: 8px; }
    .card-label { font-size: 0.8rem; }
    .floating-card p { font-size: 0.7rem; }
    .card-1 { top: -2%; left: -2%; }
    .card-2 { top: -14%; right: -2%; }
    .card-3 { bottom: -2%; right: -2%; }
}

@media (max-width: 576px) {
    .hero { padding-top: 85px; }
    .floating-card { display: none; } /* Menyembunyikan card agar UI mobile tetap fokus dan bersih */
    .laptop-base-container { width: 110%; margin-left: -5%; }
    .hero-proof { flex-direction: column; gap: 12px; align-items: flex-start; max-width: 220px; margin: 32px auto 0; }
    .proof-item { width: 100%; }
}


/* ==========================================================================
   TRUST SECTION (PREMIUM REFINED STYLES)
   ========================================================================== */
.trust {
    position: relative;
    background-color: var(--color-surface); /* Sinkron dengan token surface */
    overflow: hidden;
    z-index: 1;
}

/* Dekorasi Ambient Mesh Ringan di Latar Belakang Section */
.trust::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    z-index: -1;
    pointer-events: none;
}

.trust-heading {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-heading h2 {
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.trust-heading .body-lg {
    max-width: 660px;
    margin: 0 auto;
    color: var(--color-text-soft);
    font-weight: 400;
}

/* ==========================================================================
   TRUST GRID LAYOUT
   ========================================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; /* Jarak antar kartu sedikit diperlebar agar bernapas (breathing space) */
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   HIGH-FIDELITY GLASSMORPHISM TRUST CARD
   ========================================================================== */
.trust-card {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Dual Layer Border untuk efek ketebalan kaca nyata */
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 4px 6px -1px rgba(15, 23, 42, 0.02),
        0 10px 30px -10px rgba(15, 23, 42, 0.06);
        
    transition: var(--transition-premium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Garis Border Atas yang menyala saat di-hover (Smooth Accent Bar) */
.trust-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

/* Efek Glow Radial Halus di Sudut Kartu saat Hover */
.trust-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(93, 79, 227, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Interaksi Hover Premium */
.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(67, 56, 202, 0.15); /* Mempertegas border saat aktif */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
    box-shadow: var(--shadow-premium-hover);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover::after {
    opacity: 1;
}

/* ==========================================================================
   CARD ELEMENTS (NUMBER & TYPOGRAPHY)
   ========================================================================== */
.trust-number {
    font-family: var(--font-header);
    font-size: 3.5rem; /* Ukuran diperbesar tipis untuk penegasan */
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.03em;
    
    /* Mengubah warna solid menjadi Gradasi Berwarna Transparan Mewah */
    background: linear-gradient(180deg, rgba(67, 56, 202, 0.2) 0%, rgba(67, 56, 202, 0.03) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    margin-bottom: 28px;
    transition: var(--transition-premium);
}

.trust-card:hover .trust-number {
    /* Menyorot angka saat kartu di-hover */
    background: linear-gradient(180deg, rgba(63, 102, 241, 0.4) 0%, rgba(63, 102, 241, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
    transform-origin: left;
}

.trust-card h3 {
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.trust-card p {
    color: var(--color-text-soft);
    margin-bottom: 0; /* Mengunci estetika bagian bawah kartu tetap simetris */
}

/* ==========================================================================
   STATEMENT QUOTE ROW
   ========================================================================== */
.trust-quote {
    max-width: 740px;
    margin: var(--space-lg) auto 0;
    text-align: center;
    position: relative;
    padding: 0 var(--space-md);
}

.trust-quote p {
    font-family: var(--font-main);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-primary-soft);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.01em;
}

/* Menambahkan aksen pembatas kutipan halus yang elegan */
.trust-quote::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-border);
    margin: 0 auto 24px;
}

/* ==========================================================================
   PERFECT RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .trust-grid {
        gap: 24px; /* Merapatkan grid pada layar medium */
    }
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto var(--space-md);
        gap: 24px;
    }
    
    .trust-card {
        padding: 32px; /* Mengurangi padding internal kartu pada tablet */
    }
    
    .trust-quote p {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .trust-heading {
        margin-bottom: var(--space-md);
    }
    
    .trust-card {
        padding: 28px;
        border-radius: var(--radius-sm);
    }
    
    .trust-number {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .trust-quote p {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   WHY IT MATTERS SECTION (PREMIUM CLEAN STYLES)
   ========================================================================== */
.why {
    position: relative;
    background-color: var(--color-white);
    overflow: hidden;
    z-index: 1;
}

/* Aksentuasi Background: Lampu Sorot Ambient Lembut di Sisi Kanan-Bawah */
.why::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 75%);
    bottom: -15%;
    right: -10%;
    z-index: -1;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 96px; /* Ruang bernapas ekstra lebar untuk estetika premium yang bersih */
    align-items: center;
}

/* ==========================================================================
   LEFT SIDE CONTENT (NARRATIVE)
   ========================================================================== */
.why-content {
    max-width: 540px;
}

.why-content .headline-md {
    max-width: 490px;
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.why-content .body-lg {
    color: var(--color-text-soft);
    font-weight: 500;
}

.why-content .body-md {
    color: var(--color-text-soft);
    opacity: 0.9;
}

/* Tombol CTA dengan pemicu transisi kustom */
.why-content .btn-premium-morph {
    margin-top: 8px;
}

/* ==========================================================================
   RIGHT SIDE CONTENT (INSIGHT CARDS SYSTEM)
   ========================================================================== */
.why-insights {
    display: grid;
    gap: 20px; /* Jarak antar kartu dikunci konstan agar seimbang */
}

/* Why Card: Desain Minimalis Kontemporer
   Kombinasi latar belakang semi-transparan putih solid dengan border tipis tak kentara.
*/
.why-card {
    position: relative;
    display: flex;
    gap: 32px;
    padding: 36px 40px;
    border-radius: var(--radius-md);
    background: rgba(248, 250, 252, 0.6); /* Menggunakan warna surface dengan opasitas */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    border: 1px solid rgba(226, 232, 240, 0.8); /* Warna border token halus */
    box-shadow: var(--shadow-sm);
    
    transition: var(--ease-luxury) var(--motion-cinematic);
    overflow: hidden;
}

/* Garis Indikator Sisi Kiri (Aksen Vertikal Naik dari Bawah ke Atas) */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gradient);
    transform: scaleY(0);
    transform-origin: bottom; /* Berubah arah dari bawah ke atas agar lebih organik */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

/* Efek Sorot Radial Internal Saat Kursor Diarahkan (Spotlight Glow) */
.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 50%, rgba(67, 56, 202, 0.03), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Interaksi Hover Premium - Bergerak Sedikit ke Kanan dan Membentuk Kedalaman */
.why-card:hover {
    transform: translateX(12px);
    background: var(--color-white);
    border-color: rgba(67, 56, 202, 0.12);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-card:hover::after {
    opacity: 1;
}

/* ==========================================================================
   CARD INTERNAL COMPONENTS (INDEX & TEXT)
   ========================================================================== */
.why-index {
    flex-shrink: 0;
    font-family: var(--font-header);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    
    /* Mengubah index padat lama menjadi teks gradasi transparan mewah */
    background: linear-gradient(180deg, rgba(67, 56, 202, 0.25) 0%, rgba(67, 56, 202, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    transition: var(--transition-premium);
}

.why-card:hover .why-index {
    background: linear-gradient(180deg, var(--color-secondary) 0%, rgba(99, 102, 241, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.08);
}

.why-card h3 {
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.why-card:hover h3 {
    color: var(--color-primary); /* Menyorot judul kecil saat kartu aktif */
}

.why-card p {
    color: var(--color-text-soft);
    margin-bottom: 0; /* Mengunci kerapian baris teks bawah */
}

/* ==========================================================================
   PERFECT RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .why-grid {
        gap: 48px;
    }
    
    .why-card {
        padding: 32px;
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .why-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .why-content .headline-md {
        max-width: 600px;
    }
    
    .why-insights {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-card {
        padding: 28px;
        gap: 20px;
        border-radius: var(--radius-sm);
    }

    /* Pada layar sentuh kecil, efek hover diubah ke atas (bukan kanan) agar natural */
    .why-card:hover {
        transform: translateY(-4px);
    }
    
    .why-index {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .why-card {
        flex-direction: column; /* Mengubah tata letak vertikal untuk layar ponsel ultra tipis */
        gap: 14px;
        padding: 24px;
    }
    
    .why-card::before {
        width: 100%;
        height: 3px;
        transform: scaleX(0);
        transform-origin: left;
    }
    
    .why-card:hover::before {
        transform: scaleX(1);
    }
}

/* ==========================================================================
   SERVICES SECTION (PREMIUM INSPIRED SOLUTIONS)
   ========================================================================== */
.services {
    position: relative;
    background-color: var(--color-surface);
    overflow: hidden;
    z-index: 1;
}

/* Pencahayaan Ambient Sudut (Soft Luminous Spot) */
.services::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    top: 20%;
    right: -15%;
    z-index: -1;
    pointer-events: none;
}

.services-heading {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

/* ==========================================================================
   SERVICES DYNAMIC GRID SYSTEM
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Sedikit penyesuaian rasio agar kolom kanan lebih terbaca */
    grid-template-areas:
        "feature branding"
        "feature ppdb"
        "feature digital";
    gap: 24px;
    align-items: stretch;
}

.service-feature {
    grid-area: feature;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Menjaga keseimbangan posisi tombol CTA di bagian bawah */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.5) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.05);
}

/* ==========================================================================
   HIGH-FIDELITY SERVICE CARD
   ========================================================================== */
.service-card {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 4px 6px -1px rgba(15, 23, 42, 0.01), 
        0 10px 20px -10px rgba(15, 23, 42, 0.03);
    transition: var(--ease-luxury) var(--motion-cinematic);
    overflow: hidden;
    z-index: 1;
}

/* Efek Pantulan Cahaya Tipis di Pojok Kartu saat Hover */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-luxury);
    z-index: -1;
}

/* Interaksi Hover Kartu */
.service-card:hover {
    transform: translateY(-6px);
    background: var(--color-white);
    border-color: rgba(67, 56, 202, 0.15);
    box-shadow: 
        0 30px 60px -15px rgba(15, 23, 42, 0.08), 
        0 10px 20px -5px rgba(67, 56, 202, 0.02);
}

.service-card:hover::after {
    opacity: 1;
}

/* ==========================================================================
   COMPONENTS INSIDE CARDS
   ========================================================================== */

/* Badge Sub-Kategori di Kartu Utama */
.service-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    width: fit-content;
}

.service-card h3 {
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-soft);
    line-height: 1.6;
}

/* Transformasi List Proses Menjadi Kapsul Kerja Grid Modern */
.service-framework {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0 36px;
    padding: 0;
    list-style: none;
}

.service-framework li {
    position: relative;
    padding: 10px 14px 10px 36px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    background: rgba(15, 23, 42, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.01);
    transition: var(--transition-premium);
}

.service-card:hover .service-framework li {
    background: rgba(99, 102, 241, 0.02);
    border-color: rgba(99, 102, 241, 0.05);
}

.service-framework li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    transition: var(--transition-premium);
}

.service-card:hover .service-framework li::before {
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.25);
    background: var(--color-secondary);
}

/* ==========================================================================
   DYNAMIC ICON SYSTEM WITH COLOR TRANSITION
   ========================================================================== */
.service-icon-wrapper {
    margin-bottom: 24px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(67, 56, 202, 0.03) 100%);
    color: var(--color-primary);
    border: 1px solid rgba(99, 102, 241, 0.06);
    transition: all var(--ease-smooth) var(--motion-normal);
}

.service-icon svg {
    transition: transform 0.4s var(--ease-luxury) var(--motion-cinematic);
}

/* Efek Pendaran Ikon Saat Kartu Di-Hover (Inversi Warna ke Gradasi Komplit) */
.service-card:hover .service-icon {
    background: var(--color-gradient);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(67, 56, 202, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.service-card:hover .service-icon svg {
    transform: scale(1.05);
}

/* Gaya Tautan Tombol Inline (CTA Website) */
.service-card .btn-ghost {
    align-self: start;
    padding: 0;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: none;
    font-size: 0.95rem;
    transition: var(--transition-premium);
}

.service-card .btn-ghost:hover {
    color: var(--color-secondary);
    background: transparent;
    transform: translateX(4px);
}

/* ==========================================================================
   CLEAN RESPONSIVE LAYOUT SYSTEM
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        gap: 20px;
    }
    .service-card {
        padding: 32px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "feature"
            "branding"
            "ppdb"
            "digital";
        gap: 20px;
    }
    
    .service-feature {
        justify-content: block;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 24px;
        border-radius: var(--radius-sm);
    }
    
    .service-framework {
        grid-template-columns: 1fr; /* Berubah satu kolom pada mobile agar tidak sempit */
        gap: 10px;
        margin: 24px 0;
    }
    
    .service-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-sm);
    }
}

/* ==========================================================================
   FEATURED TRANSFORMATIONS (PORTFOLIO & CASE STUDIES)
   ========================================================================== */
.transformations-heading {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.transformations-heading .body-lg {
    max-width: 660px;
    margin: 0 auto;
    color: var(--color-text-soft);
}

/* ==========================================================================
   CASE STUDY ROW LAYOUT SYSTEM
   ========================================================================== */
.case-study {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 96px; /* Jarak lebar elegan yang memisahkan konten naratif dan visual */
    align-items: center;
    margin-bottom: 120px;
}

/* Pengatur Alternating Susunan Kiri-Kanan */
.case-study.reverse {
    grid-template-columns: 1.15fr 1fr;
}

.case-study.reverse .case-content {
    order: 2;
}

.case-study.reverse .case-image {
    order: 1;
}

/* ==========================================================================
   CASE STUDY CONTENT NARRATIVE
   ========================================================================== */
.case-content {
    position: relative;
}

.case-number {
    display: block;
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Badge Kategori Kapsul Premium Sesuai Token */
.case-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.case-content h3 {
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Struktur Tiga Pilar Studi Kasus (Challenge, Approach, Outcome) */
.case-section {
    position: relative;
    margin-bottom: 28px;
    padding-left: 20px; /* Memberi ruang untuk garis aksen */
}

/* Garis Indikator Vertikal Halus di Sebelah Kiri Teks */
.case-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 2px;
    height: 14px;
    background-color: rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-premium);
}

/* Mengubah warna indikator vertikal menjadi menyala secara bertahap saat baris didekati */
.case-study:hover .case-section:nth-of-type(1)::before { background-color: #EF4444; } /* Red for Challenge */
.case-study:hover .case-section:nth-of-type(2)::before { background-color: #F59E0B; } /* Orange for Approach */
.case-study:hover .case-section:nth-of-type(3)::before { background-color: #10B981; } /* Green for Outcome */

.case-section h4 {
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
}

.case-section p {
    color: var(--color-text-soft);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Tautan Studi Kasus Eksploratif Dengan Efek Geser Panah */
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-top: 12px;
    transition: var(--transition-premium);
    text-decoration: none;
}

.case-link:hover {
    color: var(--color-secondary);
    transform: translateX(6px);
}

/* ==========================================================================
   HIGH-FIDELITY BROWSER MOCKUP WINDOW (CSS ARTWORK)
   ========================================================================== */
.case-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-text-soft);
    /* Memberikan ruang di bagian atas untuk bar simulasi window browser */
    padding-top: 28px; 
    border: 1px solid var(--color-border);
    box-shadow: 
        0 30px 60px -15px rgba(15, 23, 42, 0.08),
        0 10px 25px -10px rgba(15, 23, 42, 0.04);
    transition: var(--transition-premium);
}

/* Simulasi Top Bar Browser (Garis Kepala Jendela) */
.case-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background-color: #F8FAFC;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    z-index: 3;
}

/* Tiga Titik Navigasi Mac-Style (Red, Yellow, Green Dots) */
.case-image::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #EF4444;
    /* Duplikasi titik menggunakan box-shadow agar hemat kode HTML */
    box-shadow: 14px 0 0 #F59E0B, 28px 0 0 #10B981; 
    z-index: 4;
}

.case-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Interaksi Hover Premium pada Mockup Web */
.case-study:hover .case-image {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 45px 80px -20px rgba(15, 23, 42, 0.12),
        0 15px 35px -10px rgba(67, 56, 202, 0.04);
    border-color: rgba(99, 102, 241, 0.15);
}

.case-study:hover .case-image img {
    transform: scale(1.03); /* Sedikit membesar halus ke dalam */
}

/* ==========================================================================
   CLEAN RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .case-study,
    .case-study.reverse {
        gap: 48px;
    }
}

@media (max-width: 992px) {
    .case-study,
    .case-study.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    /* Mengembalikan urutan layout normal pada tablet ke bawah agar konsisten */
    .case-study.reverse .case-content,
    .case-study.reverse .case-image {
        order: initial;
    }
}

@media (max-width: 768px) {
    .transformations-heading {
        margin-bottom: var(--space-md);
    }

    .case-study {
        margin-bottom: 60px;
    }
    
    .case-section {
        padding-left: 16px;
    }
    
    .case-image {
        border-radius: var(--radius-sm);
    }
}

/* ==========================================================================
   THE ANTONIFY EXPERIENCE SECTION (CLEAN & UNIFORM MINIMALIST)
   ========================================================================== */
.experience {
    position: relative;
    background-color: var(--color-surface);
    overflow: hidden;
}

.experience-heading {
    max-width: 900px;
    margin: 0 auto 96px;
}

.experience-heading .body-lg {
    max-width: 660px;
    margin: 0 auto;
    color: var(--color-text-soft);
}

/* ==========================================================================
   JOURNEY TRACK & LAYOUT SYSTEM
   ========================================================================== */
.experience-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Konektor Jalur Proses Ultra-Sleek */
.experience-journey::before {
    content: "";
    position: absolute;
    top: 32px; /* Presisi di tengah-tengah diameter simpul (64px / 2) */
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(99, 102, 241, 0.05) 0%,
        rgba(99, 102, 241, 0.3) 50%,
        rgba(99, 102, 241, 0.05) 100%
    );
    z-index: 1;
}

/* ==========================================================================
   JOURNEY NODE
   ========================================================================== */
.journey-node {
    position: relative;
    text-align: center;
    z-index: 2;
    transition: var(--transition-premium);
}

.journey-node h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.journey-node p {
    max-width: 260px;
    margin: 0 auto;
    color: var(--color-text-soft);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* ==========================================================================
   PRECISION SYMBOL CONTAINER (MICRO-GLASSMORPHISM)
   ========================================================================== */
.node-symbol {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 
        0 4px 10px -2px rgba(15, 23, 42, 0.02),
        0 12px 24px -6px rgba(15, 23, 42, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

/* Inti Simbol Internal (Sekaruh Seragam Menjadi Lingkaran Sempurna) */
.node-symbol span {
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Mengunci bentuk menjadi bulat penuh */
    background: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   HIGH-FIDELITY INTERACTIVE HOVER STATES
   ========================================================================== */
.journey-node:hover .node-symbol {
    transform: translateY(-6px);
    background: var(--color-white);
    border-color: rgba(67, 56, 202, 0.25);
    box-shadow: 
        0 20px 32px -10px rgba(67, 56, 202, 0.12),
        0 8px 16px -6px rgba(15, 23, 42, 0.04);
}

.journey-node:hover .node-symbol span {
    transform: scale(1.25); /* Efek membesar simpul tengah secara simetris */
    background: var(--color-gradient, var(--color-secondary));
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.12); /* Efek halo pendaran cahaya */
}

.journey-node:hover h3 {
    color: var(--color-primary);
}

/* ==========================================================================
   CLEAN RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media (max-width: 1024px) {
    .experience-journey {
        gap: 24px;
    }
    .journey-node p {
        font-size: 0.88rem;
    }
}

@media (max-width: 992px) {
    .experience-journey {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 64px;
        column-gap: 40px;
    }

    .experience-journey::before {
        display: none; 
    }
    
    .journey-node {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .node-symbol {
        margin: 0 0 20px 0;
    }
    
    .journey-node p {
        margin: 0;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .experience-heading {
        margin-bottom: 64px;
    }

    .experience-journey {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Jalur vertikal tipis khusus tampilan mobile */
    .experience-journey::after {
        content: "";
        position: absolute;
        top: 32px;
        left: 32px;
        width: 1px;
        height: calc(100% - 64px);
        background: linear-gradient(to bottom, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.02));
        z-index: 1;
    }
    
    .journey-node {
        padding-left: 88px;
    }
    
    .node-symbol {
        position: absolute;
        left: 0;
        top: 24px;
    }
}

/* ==========================================================================
   ABOUT & MANIFESTO SECTION
   ========================================================================== */
.about {
    position: relative;
    background-color: var(--color-surface);
}

/* ==========================================================================
   MANIFSTO TYPOGRAPHY & LAYOUT
   ========================================================================== */
.about-manifesto {
    max-width: 880px;
    margin: 0 auto 112px;
    text-align: center;
}

.about-manifesto .headline-md {
    max-width: 800px;
    margin: 0 auto 48px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--color-text);
}

.about-copy {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.about-copy p {
    color: var(--color-text-soft);
    line-height: 1.85;
    font-size: 1.05rem;
}

/* ==========================================================================
   VALUES GRID SYSTEM & INLINE SVGs
   ========================================================================== */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 64px 0;
    margin-bottom: 112px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.value-item {
    text-align: center;
    padding: 0 16px;
    transition: var(--transition-premium);
}

/* Wadah Kapsul Ikon Minimalis Berkelas */
.value-symbol {
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.06);
    color: var(--color-primary);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Kontrol Ukuran dan Transisi SVG */
.value-symbol svg {
    width: 24px;
    height: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-item h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.value-item p {
    color: var(--color-text-soft);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* INTERAKSI HOVER VALUE */
.value-item:hover .value-symbol {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(67, 56, 202, 0.4);
}

.value-item:hover .value-symbol svg {
    transform: scale(1.1) rotate(4deg);
}

/* ==========================================================================
   HUMAN / FOUNDER ARCHITECTURE (EDITORIAL ART STYLE)
   ========================================================================== */
.about-human {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

/* Pembingkai Foto Eksklusif */
.about-photo {
    width: 152px;
    height: 152px;
    margin: 0 auto 36px;
    overflow: hidden;
    border-radius: 50%; /* Bulat sempurna tipikal portfolio eksekutif senior */
    border: 4px solid var(--color-white);
    box-shadow: 
        0 0 0 1px rgba(15, 23, 42, 0.08),
        0 20px 48px -12px rgba(15, 23, 42, 0.12);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efek Hover Foto Bingkai */
.about-human:hover .about-photo {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 
        0 0 0 1px rgba(99, 102, 241, 0.2),
        0 24px 56px -10px rgba(67, 56, 202, 0.15);
}

.about-human:hover .about-photo img {
    transform: scale(1.06);
}

.about-caption {
    max-width: 580px;
    margin: 0 auto;
}

.about-caption p {
    margin-bottom: 28px;
    color: var(--color-text-soft);
    line-height: 1.8;
    font-size: 0.975rem;
}

/* Tautan Kontak Dengan Animasi Panah Bergeser */
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-premium);
}

.about-link .link-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--color-secondary);
}

.about-link:hover .link-arrow {
    transform: translateX(6px);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .about-values {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .about-manifesto {
        margin-bottom: 80px;
    }

    .about-manifesto .headline-md {
        margin-bottom: 36px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 48px 0;
        margin-bottom: 80px;
    }
    
    .value-item {
        max-width: 460px;
        margin: 0 auto;
    }

    .about-photo {
        width: 132px;
        height: 132px;
        margin-bottom: 28px;
    }
}

/* ==========================================================================
   INSIGHTS SECTION ARCHITECTURE
   ========================================================================== */
.insights {
    position: relative;
    background-color: var(--color-surface);
}

.insights-heading {
    max-width: 800px;
    margin: 0 auto 88px;
}

.insights-heading .headline-md {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.insights-heading .body-lg {
    max-width: 660px;
    margin: 0 auto;
    color: var(--color-text-soft);
}

/* ==========================================================================
   ASYNCHRONOUS EDITORIAL LAYOUT SYSTEM
   ========================================================================== */
.insights-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 96px;
    align-items: start;
}

/* ==========================================================================
   FEATURED INSIGHT PRESTIGE CARD
   ========================================================================== */
.featured-insight {
    position: relative;
    height: 100%;
}

.featured-card-content {
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        0 4px 20px -2px rgba(15, 23, 42, 0.02),
        0 20px 40px -12px rgba(15, 23, 42, 0.04);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-label {
    display: inline-block;
    margin-bottom: 28px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.06);
    color: var(--color-primary);
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.featured-insight h3 {
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.featured-insight p {
    margin-bottom: 36px;
    color: var(--color-text-soft);
    line-height: 1.85;
    font-size: 1.025rem;
}

/* Featured Card Interaction Mechanics */
.featured-insight:hover .featured-card-content {
    transform: translateY(-6px);
    background: var(--color-white);
    border-color: rgba(99, 102, 241, 0.18);
    box-shadow: 
        0 32px 64px -16px rgba(67, 56, 202, 0.1),
        0 16px 32px -10px rgba(15, 23, 42, 0.04);
}

.featured-insight:hover h3 {
    color: var(--color-primary);
}

/* ==========================================================================
   EDITORIAL LATEST FEED LIST
   ========================================================================== */
.latest-insights {
    position: relative;
}

.latest-heading {
    margin-bottom: 32px;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 12px;
}

.latest-heading h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--color-text);
}

.latest-insight-item {
    padding: 28px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
}

.latest-insight-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.latest-insight-item:last-child {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.latest-insight-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    text-decoration: none;
    color: inherit;
}

.latest-insight-content {
    flex: 1;
}

.latest-insight-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.45;
    transition: color 0.3s ease;
}

.latest-insight-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.01em;
}

.latest-insight-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Latest Feed Item Hover Mechanics */
.latest-insight-item:hover .latest-insight-title {
    color: var(--color-primary);
}

.latest-insight-item:hover .latest-insight-arrow {
    color: var(--color-primary);
    transform: translateX(6px) scale(1.1);
}

/* ==========================================================================
   REUSABLE VECTOR ICONS & TIMELINE LOADING GRAPHICS
   ========================================================================== */
.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.insight-link .icon-arrow {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.insight-link:hover {
    color: var(--color-secondary);
}

.insight-link:hover .icon-arrow {
    transform: translateX(6px);
}

/* Premium Minimalist Loading Spinner */
.insight-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.spinner-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulseLoader 1.6s infinite ease-in-out;
}

@keyframes pulseLoader {
    0%, 100% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ==========================================================================
   FOOTER ZONE
   ========================================================================== */
.insights-footer {
    margin-top: 80px;
}

/* ==========================================================================
   CLEAN RESPONSIVE LAYOUT RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1200px) {
    .insights-layout {
        gap: 56px;
    }
}

@media (max-width: 992px) {
    .insights-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .featured-card-content {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .insights-heading {
        margin-bottom: 56px;
    }

    .featured-card-content {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .featured-insight h3 {
        font-size: 1.5rem;
    }

    .latest-insight-link {
        gap: 16px;
    }
    
    .latest-insight-title {
        font-size: 1rem;
    }
}

/* ==========================================================================
   CTA (CALL TO ACTION) SECTION SYSTEM
   ========================================================================== */
.cta {
    position: relative;
    background-color: var(--color-surface);
}

/* Immersive Modern Accent Card */
.cta-card {
    max-width: var(--container-xxl);
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 30px rgba(15, 23, 42, 0.01),
        0 30px 60px -15px rgba(67, 56, 202, 0.03);
}

/* Subtle Premium Ambient Glow Behind Content */
.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 990px;
    margin: 0 auto;
    text-align: center;
}

.cta-content .hero-badge {
    margin-bottom: 28px;
}

.cta-content .headline-lg {
    max-width: 900px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--color-text);
}

.cta-content .body-lg {
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--color-text-soft);
    line-height: 1.85;
    font-size: 1.05rem;
}

/* ==========================================================================
   PREMIUM HIGH-FIDELITY WHATSAPP BUTTON
   ========================================================================== */
.cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 16px 32px 16px 20px;
    text-decoration: none;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 36px -8px rgba(67, 56, 202, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

/* Kontainer Ikon Kaca Minimalis */
.cta-whatsapp-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-whatsapp-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white); /* Mengikuti kesatuan palet premium putih, bukan hijau mencolok */
}

.cta-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-btn-content strong {
    font-size: 1.025rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.cta-btn-content small {
    margin-top: 3px;
    font-size: 0.825rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.01em;
}

/* Vektor Panah Dinamis */
.cta-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* INTERAKSI MIKRO HOVER BUTTON */
.cta-whatsapp-btn:hover {
    transform: translateY(-5px);
    background: var(--color-primary-dark, #3730a3); /* Inklinasi warna indigo pekat */
    box-shadow: 0 24px 48px -10px rgba(67, 56, 202, 0.45);
}

.cta-whatsapp-btn:hover .cta-whatsapp-icon {
    background: #25D366; /* Warna khas WhatsApp diaktifkan hanya saat interaksi aktif */
    border-color: rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}

.cta-whatsapp-btn:hover .cta-btn-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ==========================================================================
   METADATA NOTE & FOOTNOTE
   ========================================================================== */
.cta-note {
    max-width: 540px;
    margin: 32px auto 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ==========================================================================
   RESPONSIVE LAYOUT SYSTEMS
   ========================================================================== */
@media (max-width: 992px) {
    .cta-card {
        padding: 64px 32px;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 48px 20px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .cta-card::before {
        display: none;
    }

    .cta-content .headline-lg {
        font-size: 2rem;
    }

    .cta-content .body-lg {
        margin-bottom: 40px;
    }

    .cta-whatsapp-btn {
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    .cta-btn-arrow {
        display: none; /* Menyembunyikan panah di mobile untuk menghemat ruang fokus teks */
    }
}

/* ========================================
   BACK TO TOP
======================================== */

.back-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: var(--color-primary);
    background:
        rgba(255, 255, 255, .65);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border:
        1px solid rgba(67, 56, 202, .12);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .08);
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(16px);
    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease,
        background .3s ease,
        box-shadow .3s ease;
    z-index: 999;
}


/* Visible */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
}


/* Icon */
.back-to-top svg {
    width: 22px;
    height: 22px;
    transition:
        transform .3s ease;
}


/* Hover */
.back-to-top:hover {
    background:
        rgba(255, 255, 255, .82);
    transform:
        translateY(-4px);
    box-shadow:
        0 16px 40px rgba(67, 56, 202, .12);
}

.back-to-top:hover svg {
    transform:
        translateY(-2px);
}


/* Active */
.back-to-top:active {
    transform:
        translateY(-1px) scale(.96);
}


/* Mobile */
@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 52px;
        height: 52px;
    }

}

/* ==========================================================================
   HIGH-END OVERLAY & SCREEN LOCK
   ========================================================================== */
.contact-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2000;
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   PREMIUM MODAL CARD CONTAINER
   ========================================================================== */
.contact-modal-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 44px 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(67, 56, 202, 0.08);
    box-shadow: 0 32px 80px -16px rgba(15, 23, 42, 0.15);
    transform: scale(0.95) translateY(16px);
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: calc(100vh - 48px); 
    overflow-y: auto;
}

.contact-modal.is-open .contact-modal-card {
    transform: scale(1) translateY(0);
}

/* Kustomisasi Scrollbar untuk Modal Card */
.contact-modal-card::-webkit-scrollbar {
    width: 6px;
}

.contact-modal-card::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0; /* Memberi jarak agar tidak mentok ke ujung atas/bawah */
}

.contact-modal-card::-webkit-scrollbar-thumb {
    background: rgba(67, 56, 202, 0.2); /* Menggunakan warna primary dengan transparansi */
    border-radius: 10px;
}

.contact-modal-card::-webkit-scrollbar-thumb:hover {
    background: rgba(67, 56, 202, 0.4);
}

/* ==========================================================================
   INTERIOR TYPOGRAPHY & MICRO BADGES
   ========================================================================== */
.contact-modal-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: var(--space-sm) 0 8px;
    line-height: 1.35;
}

.contact-modal-card .modal-description {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    line-height: 1.6;
    margin-bottom: 8px;
}


/* ==========================================================================
   MINIMALIST SVG CLOSE BUTTON INTERACTION
   ========================================================================== */
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(67, 56, 202, 0.06);
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: var(--color-white, #ffffff);
    color: var(--color-text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-close svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

.modal-close:hover {
    color: var(--color-text);
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}

.modal-close:hover svg {
    transform: rotate(90deg);
}

/* ==========================================================================
   FORM INPUT CONTROLS SYSTEM
   ========================================================================== */
.form-group {
    margin-top: var(--space-sm);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border, rgba(0, 0, 0, 0.1));
    background: var(--color-surface, #f8fafc);
    color: var(--color-text);
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Form Interactivity Glow States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary, #6366f1);
    background: var(--color-white, #ffffff);
    box-shadow: 0 0 0 4px var(--color-accent-light, rgba(99, 102, 241, 0.08));
}

.form-group textarea {
    resize: none; /* Mengunci estetika layout agar tidak bisa ditarik manual rusak */
    line-height: 1.6;
}

/* Kustom Dropdown Wrapper Mechanics */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px; /* Space prevent text crash icon */
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--color-text-light);
    pointer-events: none; /* Mencegah bug klik macet di atas ikon */
    transition: color 0.3s ease;
}

.form-group select:focus + .select-arrow {
    color: var(--color-primary);
}

/* ==========================================================================
   SUBMIT BUTTON MICRO-INTERACTION
   ========================================================================== */
.btn-block {
    width: 100%;
    margin-top: 32px;
    padding: 15px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    background: var(--color-primary, #4338ca);
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(99, 102, 241, 0.35);
}

.btn-block:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive Scaling optimization */
@media (max-width: 576px) {
    .contact-modal-card {
        padding: 32px 24px;
    }
    .modal-close {
        top: 16px;
        right: 16px;
    }
}

/* ==========================================================================
   PREMIUM LIQUID GLOW SURFACE
   ========================================================================== */
.liquid-glow {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 20px; /* Opsional: Menjaga keselarasan sudut kartu */
    background: var(--color-white, #ffffff);
    border: 1px solid var(--color-border, rgba(67, 56, 202, 0.08));
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Interaksi Border Saat Hover */
.liquid-glow:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: var(--shadow-soft, 0 12px 36px rgba(0, 0, 0, 0.05));
}

/* KONDISI DARK MODE AUTOMATION */
body.dark-mode .liquid-glow {
    background: rgba(9, 15, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
body.dark-mode .liquid-glow:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   HIGH-FIDELITY LIQUID LIGHT LAYER (Pseudo-Element)
   ========================================================================== */
.liquid-glow::before {
    content: "";
    position: absolute;
    /* Koordinat dikontrol penuh oleh sistem Lerp JavaScript */
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
    
    /* Dimensi pendaran yang lebih sinematik */
    width: 420px;
    height: 420px;
    
    /* Transformasi transisi masuk elastis */
    transform: translate(-50%, -50%) scale(0.85);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: -1;
    
    /* Transisi khusus untuk Opacity dan Scaling (Bukan untuk posisi X & Y) */
    transition: 
        opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        
    /* Dual-Tone Cyber Ambient Glow: Perpaduan Indigo & Accent Orange */
    background: radial-gradient(
        circle closest-side,
        rgba(85, 87, 233, 0.171) 0%,     /* Indigo Inti */
        rgba(107, 172, 247, 0.09) 45%,    /* Aksen Transisi Orange Antonify */
        rgba(255, 232, 129, 0.02) 70%,    /* Pendaran Luar */
        transparent 100%
    );
}

/* Intensitas Glow yang Lebih Tinggi Khusus Dark Mode */
body.dark-mode .liquid-glow::before {
    background: radial-gradient(
        circle closest-side,
        rgba(87, 89, 233, 0.3) 0%,     /* Indigo Inti */
        rgba(107, 144, 247, 0.09) 45%,    /* Aksen Transisi Orange Antonify */
        rgba(255, 232, 129, 0.02) 70%,    /* Pendaran Luar */
        transparent 100%
    );
}

/* Trigger Animasi Mengembang Saat Kursor Masuk Area */
.liquid-glow:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}