﻿/* =============================================
   SMK TI BALI GLOBAL BADUNG - HALAMAN UTAMA
   Desain UI/UX Sekolah Teknologi Modern
   ============================================= */

/* Variabel CSS - Palet Warna Tech */
:root {
    /* Warna Utama - Biru Tech yang Gelap */
    --primary-900: #0a1628;
    --primary-800: #0d1f3c;
    --primary-700: #1a365d;
    --primary-600: #2a4365;
    --primary-500: #3182ce;
    --primary-400: #4299e1;
    --primary-300: #63b3ed;
    --primary-200: #90cdf4;
    --primary-100: #bee3f8;
    --primary-1000: #ffffff;
    
    /* Aksen - Cyan/Teal Elektrik */
    --accent-500: #00d4ff;
    --accent-400: #22d3ee;
    --accent-300: #67e8f9;
    --accent-glow: rgba(0, 212, 255, 0.5);
    
    /* Sekunder - Ungu/Violet buat nuansa Tech */
    --secondary-500: #8b5cf6;
    --secondary-400: #a78bfa;
    --secondary-glow: rgba(139, 92, 246, 0.5);
    
    /* Sukses/Berkembang - Hijau */
    --success-500: #10b981;
    --success-400: #34d399;
    
    /* Peringatan - Kuning Emas */
    --warning-500: #f59e0b;
    --warning-400: #fbbf24;
    
    /* Netral */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Gradien */
    --gradient-primary: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-500) 0%, var(--secondary-500) 100%);
    --gradient-dark: linear-gradient(180deg, var(--primary-900) 0%, var(--gray-900) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Bayangan */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow-cyan: 0 0 30px var(--accent-glow);
    --shadow-glow-purple: 0 0 30px var(--secondary-glow);
    
    /* Tipografi */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Fira Code', 'Consolas', monospace;
    
    /* Spasi */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transisi */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ==================================================
       Semantic Tokens (dipakai subpage.css & modul CSS)
       ================================================== */
    --bg-primary: var(--primary-900);
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-primary: var(--gray-100);
    --text-secondary: var(--gray-400);
    --border: rgba(255, 255, 255, 0.10);
}

/* Reset & Dasar */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-900);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Kontainer */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   BACKGROUND ANIMASI - Grid Partikel
   ============================================= */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--accent-500);
    animation: float 8s ease-in-out infinite;
}

.bg-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--secondary-500);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

/* =============================================
   NAVIGASI
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow-cyan);
}

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

.logo-text span:first-child {
    font-size: 0.75rem;
    color: var(--accent-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-300);
    position: relative;
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--accent-400);
}

.btn-cta {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white !important;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all var(--transition-normal) !important;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
}

/* Tombol Menu HP - Dihandle di navbar-submenu.css */
/* Default: hidden on desktop, shown on mobile via navbar-submenu.css */

/* =============================================
   BAGIAN HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-400);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 20px 5px transparent; }
}

.hero-badge i {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.hero-tagline {
    display: block;
    color: #00ffff; /* Warna Cyan cerah agar terlihat menonjol */
    font-size: 1.25rem;
    font-weight: 700; /* Bold */
    font-style: italic; /* Miring */
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* Efek glow/bercahaya */
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-accent);
    color: var(--primary-1000);
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Statistik Hero */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-400);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Visual Hero */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--secondary-glow) 100%);
    opacity: 0.1;
    z-index: 0;
}

/* Container Utama Slide */
.hero-slider-box {
    position: relative;
    width: 100%;
    max-width: 550px; /* Ukuran kotak diperbesar */
    height: 400px;    /* Tinggi kotak */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

/* Pengaturan tiap Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Default tidak terlihat */
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: flex-end;
}

/* Slide yang sedang aktif */
.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption di dalam slide */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animasi tambahan: Sedikit zoom pada gambar */
.slide.active img {
    animation: slowZoom 6s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .hero-slider-box {
        height: 300px;
        max-width: 100%;
    }
}

.code-window {
    background: var(--gray-900);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-title {
    margin-left: 12px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gray-500);
}

.code-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
}

.code-line {
    display: flex;
    gap: 12px;
}

.line-number {
    color: var(--gray-600);
    user-select: none;
    min-width: 24px;
}

.code-keyword { color: var(--secondary-400); }
.code-function { color: var(--accent-400); }
.code-string { color: var(--success-400); }
.code-comment { color: var(--gray-600); font-style: italic; }
.code-variable { color: var(--warning-400); }

/* Animasi Ketik */
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--accent-400);
    animation: blink 0.8s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

/* Elemen Melayang */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.floating-card.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1.5s;
}

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

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-icon.icon-blue {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-400);
}

.floating-icon.icon-purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--secondary-400);
}

.floating-text {
    font-size: 0.85rem;
}

.floating-text span {
    display: block;
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* =============================================
   GAYA BAGIAN
   ============================================= */
.section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-400);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

/* =============================================
   FITUR / KEUNGGULAN
   ============================================= */
.features {
    background: var(--gradient-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.icon-cyan {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-400);
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary-400);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-400);
}

.icon-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-400);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   JURUSAN / PROGRAMS
   ============================================= */
.programs {
    background: var(--primary-900);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.program-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.program-header {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.program-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
}

.program-icon.icon-network {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.program-icon.icon-code {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.program-icon.icon-design {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.program-icon.icon-business {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.program-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--white);
}

.program-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

.program-careers {
    padding: 0 30px 30px;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.career-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-300);
    transition: all var(--transition-fast);
}

.career-tag:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-400);
    color: var(--accent-400);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats-item {
    text-align: center;
}

.stats-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-400);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-mono);
    margin-bottom: 4px;
}

.stats-label {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Animasi Counter */
.stats-number[data-count] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stats-number[data-count].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   TESTIMONI
   ============================================= */
.testimonials {
    background: var(--gradient-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--accent-400);
    opacity: 0.1;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-900);
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--accent-400);
    font-size: 0.85rem;
}

/* =============================================
   BERITA
   ============================================= */
.news {
    background: var(--primary-900);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-400);
    opacity: 0.5;
    position: relative;
    overflow: hidden;
}

.news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
}

.news-content {
    padding: 24px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--accent-400);
}

.news-category {
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary-400);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
}

.news-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-400);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.read-more:hover {
    gap: 12px;
}

/* =============================================
   BAGIAN CTA (AJAKAN BERTINDAK)
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--secondary-glow) 0%, transparent 50%);
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-content p {
    color: var(--gray-300);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

/* =============================================
   BAGIAN MITRA/SPONSOR
   ============================================= */
.partners-section {
    background: linear-gradient(180deg, var(--primary-900) 0%, var(--gray-900) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-400), transparent);
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-400), transparent);
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--secondary-400);
    margin-bottom: 20px;
}

.partners-header .section-badge i {
    font-size: 0.85rem;
}

.partners-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.partners-header .section-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slider Mitra - Animasi Scroll Tak Terbatas */
.partners-slider {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin: 0 -20px;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-900) 0%, transparent 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(-90deg, var(--gray-900) 0%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scrollPartners 40s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    transition: all var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--secondary-glow) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: 16px;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent-400);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px var(--accent-glow);
}

.partner-logo:hover::before {
    opacity: 0.1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 12px;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.partner-overlay span {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-300);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-logo:hover .partner-overlay {
    transform: translateY(0);
}

/* Statistik Mitra */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.partner-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.partner-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.partner-stat:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.partner-stat:hover::before {
    opacity: 1;
}

.partner-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-400);
    transition: all var(--transition-normal);
}

.partner-stat:hover .partner-stat-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.partner-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.partner-stat-label {
    font-size: 0.95rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Responsif Mitra */
@media (max-width: 992px) {
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .partners-stats {
        grid-template-columns: 1fr;
    }
    
    .partners-header .section-title {
        font-size: 1.75rem;
    }
    
    .partner-logo {
        width: 150px;
        height: 80px;
        padding: 15px;
    }
    
    .partners-track {
        gap: 24px;
    }
    
    .partner-stat {
        padding: 24px 20px;
    }
    
    .partner-stat-number {
        font-size: 2rem;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--gray-900);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-400);
    color: var(--primary-900);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-400);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: var(--accent-400);
    margin-top: 4px;
}

.contact-item span {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-400);
}

/* =============================================
   ANIMASI & EFEK SCROLL
   ============================================= */

/* Fade In Naik */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi Bertahap */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.stagger-animation.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-animation.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Efek Glitch buat nuansa Tech */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--accent-400);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: var(--secondary-400);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 20% 0); transform: translate(-1px, 1px); }
    80% { clip-path: inset(80% 0 0% 0); transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    25% { clip-path: inset(30% 0 50% 0); transform: translate(1px, -1px); }
    50% { clip-path: inset(50% 0 30% 0); transform: translate(-1px, 1px); }
    75% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
}

/* =============================================
   DESAIN RESPONSIF
   ============================================= */

/* Matiin animasi di HP biar performa lebih bagus */
@media (max-width: 768px) {
    /* Matiin semua animasi hero di HP */
    .hero-text,
    .hero-visual,
    .hero-badge,
    .hero-badge i,
    .floating-card,
    .hero-animation-showcase,
    .animation-stage,
    .stage-bubble,
    .stage-dkv .shutter-overlay,
    .stage-dkv .captured-photo,
    .typing-cursor {
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    /* Sembunyiin elemen animasi kompleks di HP */
    .hero-animation-showcase,
    .animation-story,
    .stage-indicators,
    .floating-card,
    .code-window,
    .hero-image-wrapper,
    .bg-glow {
        display: none !important;
    }
    
    /* Sederhanain visual hero di HP */
    .hero-visual {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        animation: none;
    }
    
    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
        animation: none;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Navbar HP Modern */
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        padding: 0 16px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-text span:first-child {
        font-size: 0.65rem;
    }
    
    /* NOTE: Mobile menu button styling moved to navbar-submenu.css */
    
    /* NOTE: Style nav-link versi HP pindah ke navbar-submenu.css */
    
    /* Perbaikan Hero di HP */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.625rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Padding Kontainer */
    .container {
        padding: 0 16px;
    }
}

/* =============================================
   KELAS UTILITAS
   ============================================= */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 20px var(--accent-glow);
}

.glow-box {
    box-shadow: var(--shadow-glow-cyan);
}

/* =============================================
   SHOWCASE ANIMASI HERO - 4 JURUSAN
   ============================================= */

/* Kontainer Animasi Utama */
.hero-animation-showcase {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deskripsi Cerita - Atas Animasi */
.animation-story {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 200;
}

.story-step {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-400);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-number {
    background: var(--accent-400);
    color: var(--gray-900);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.story-text {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin: 0;
    transition: all 0.5s ease;
}

.animation-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.animation-stage.active {
    opacity: 1;
    visibility: visible;
}

/* Indikator Tahap dengan Label */
.stage-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.stage-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stage-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.stage-dot.active {
    background: var(--accent-400);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.dot-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gray-500);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stage-dot:hover .dot-label,
.stage-dot.active .dot-label {
    opacity: 1;
    color: var(--accent-400);
}

/* Label Tahap */
.stage-label {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 50;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.animation-stage.active .stage-label {
    opacity: 1;
    transform: translateY(0);
}

.stage-label i {
    font-size: 0.9rem;
}

.stage-label.dkv { color: var(--warning-400); border: 1px solid rgba(245, 158, 11, 0.3); }
.stage-label.pplg { color: var(--success-400); border: 1px solid rgba(16, 185, 129, 0.3); }
.stage-label.tjkt { color: var(--accent-400); border: 1px solid rgba(0, 212, 255, 0.3); }
.stage-label.bisdig { color: var(--secondary-400); border: 1px solid rgba(139, 92, 246, 0.3); }
.stage-label.error-label { color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }

/* =============================================
   GELEMBUNG TAHAP - Info Melayang
   ============================================= */
.stage-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-200);
    z-index: 60;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.stage-bubble i {
    font-size: 0.8rem;
    color: var(--accent-400);
}

.animation-stage.active .stage-bubble {
    animation: bubblePop 0.5s ease forwards;
}

/* Posisi Gelembung */
.bubble-right {
    top: 50%;
    right: -10px;
    transform: translateY(-50%) scale(0.8);
}

.bubble-top-right {
    top: 70px;
    right: 20px;
}

.bubble-top-left {
    top: 70px;
    left: 20px;
}

.bubble-bottom-left {
    bottom: 60px;
    left: 20px;
}

.bubble-bottom-right {
    bottom: 60px;
    right: 20px;
}

.bubble-middle-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scale(0.8);
}

/* Gelembung Bisnis Digital - Posisi tersebar DI LUAR mockup HP */
.bubble-bd-1 {
    top: 50px;
    right: -120px;
}

.bubble-bd-2 {
    top: 50px;
    left: -120px;
}

.bubble-bd-3 {
    bottom: 130px;
    right: -110px;
}

.bubble-bd-4 {
    bottom: 70px;
    left: -110px;
}

/* Animasi Gelembung BD - Masuk dari samping */
.stage-bisdig.active .bubble-bd-1 {
    animation: bubbleSlideInRight 0.6s ease forwards;
    animation-delay: 0.5s;
}

.stage-bisdig.active .bubble-bd-2 {
    animation: bubbleSlideInLeft 0.6s ease forwards;
    animation-delay: 0.9s;
}

.stage-bisdig.active .bubble-bd-3 {
    animation: bubbleSlideInRight 0.6s ease forwards;
    animation-delay: 1.3s;
}

.stage-bisdig.active .bubble-bd-4 {
    animation: bubbleSlideInLeft 0.6s ease forwards;
    animation-delay: 1.7s;
}

@keyframes bubbleSlideInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes bubbleSlideInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Animasi Gelembung */
@keyframes bubblePop {
    0% { opacity: 0; transform: scale(0.5); }
    60% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* Warna gelembung per tahap */
.stage-dkv .stage-bubble i { color: var(--warning-400); }
.stage-pplg .stage-bubble i { color: var(--success-400); }
.stage-error .stage-bubble.bubble-error { 
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}
.stage-error .stage-bubble.bubble-error i { color: #ef4444; }
.stage-tjkt .stage-bubble i { color: var(--accent-400); }
.stage-bisdig .stage-bubble.bubble-bisdig i { color: var(--secondary-400); }

/* Delay gelembung buat muncul berurutan */
.animation-stage.active .bubble-top-right { animation-delay: 0.3s; }
.animation-stage.active .bubble-top-left { animation-delay: 0.5s; }
.animation-stage.active .bubble-bottom-left { animation-delay: 0.7s; }
.animation-stage.active .bubble-bottom-right { animation-delay: 0.9s; }
.animation-stage.active .bubble-middle-right { animation-delay: 0.6s; }
.animation-stage.active .bubble-right { animation-delay: 0.5s; }

/* =============================================
   TAHAP 1: DKV - Ambil Foto Kamera
   ============================================= */
.stage-dkv {
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.camera-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.camera-body {
    width: 200px;
    height: 140px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.camera-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 50%;
    border: 4px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-inner {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #1e3a5f 0%, #0a1628 70%);
    border-radius: 50%;
    border: 2px solid #444;
    position: relative;
    overflow: hidden;
}

.lens-reflection {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.camera-flash {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 4px;
}

.camera-viewfinder {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: #222;
    border-radius: 4px 4px 0 0;
}

/* Animasi Shutter */
.shutter-overlay {
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    pointer-events: none;
    border-radius: 24px;
}

.stage-dkv.active .shutter-overlay {
    animation: shutterFlash 4s ease-in-out;
}

@keyframes shutterFlash {
    0%, 100% { opacity: 0; }
    20% { opacity: 0; }
    22% { opacity: 0.9; }
    25% { opacity: 0; }
}

/* Bingkai Foto muncul */
.captured-photo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 90px;
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
}

.stage-dkv.active .captured-photo {
    animation: photoAppear 4s ease-in-out;
}

/* PAUSE animasi DKV pas hover */
.stage-dkv.show-controls .shutter-overlay,
.stage-dkv.show-controls .captured-photo,
.stage-dkv:hover .shutter-overlay,
.stage-dkv:hover .captured-photo {
    animation-play-state: paused !important;
}

@keyframes photoAppear {
    0%, 25% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
    35%, 85% { opacity: 1; transform: scale(1) rotate(-5deg); }
    100% { opacity: 0; transform: scale(0.8) translateX(50px); }
}

.photo-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--accent-400) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-content i {
    font-size: 2rem;
    color: white;
}

/* =============================================
   TAHAP 2: PPLG - Proses Kode
   ============================================= */
.stage-pplg {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.code-editor-container {
    position: relative;
    width: 90%;
    max-width: 450px;
}

.editor-window {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.editor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #323232;
}

.editor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.editor-dot.red { background: #ff5f56; }
.editor-dot.yellow { background: #ffbd2e; }
.editor-dot.green { background: #27c93f; }

.editor-title {
    margin-left: 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #888;
}

.editor-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    min-height: 180px;
}

.code-line-anim {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
}

.stage-pplg.active .code-line-anim {
    animation: codeLineAppear 4s ease-out;
}

.stage-pplg.active .code-line-anim:nth-child(1) { animation-delay: 0s; }
.stage-pplg.active .code-line-anim:nth-child(2) { animation-delay: 0.15s; }
.stage-pplg.active .code-line-anim:nth-child(3) { animation-delay: 0.3s; }
.stage-pplg.active .code-line-anim:nth-child(4) { animation-delay: 0.45s; }
.stage-pplg.active .code-line-anim:nth-child(5) { animation-delay: 0.6s; }

/* PAUSE animasi PPLG pas hover */
.stage-pplg.show-controls .code-line-anim,
.stage-pplg.show-controls .processing-bar,
.stage-pplg:hover .code-line-anim,
.stage-pplg:hover .processing-bar {
    animation-play-state: paused !important;
}

@keyframes codeLineAppear {
    0%, 5% { opacity: 0; transform: translateX(-20px); }
    15%, 85% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0.5; }
}

.line-num {
    color: #555;
    min-width: 20px;
    user-select: none;
}

.code-kw { color: #c586c0; }
.code-fn { color: #dcdcaa; }
.code-str { color: #ce9178; }
.code-var { color: #9cdcfe; }
.code-cm { color: #6a9955; }

/* Indikator Proses */
.processing-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    width: 0;
}

.stage-pplg.active .processing-bar {
    animation: processingProgress 4s ease-in-out;
}

@keyframes processingProgress {
    0% { width: 0; }
    60% { width: 100%; }
    100% { width: 100%; opacity: 0; }
}

/* Preview gambar melayang */
.image-preview-float {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 80px;
    height: 60px;
    background: var(--gray-800);
    border-radius: 8px;
    border: 2px solid var(--success-400);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
}

.stage-pplg.active .image-preview-float {
    animation: previewFloat 4s ease-in-out;
}

@keyframes previewFloat {
    0%, 40% { opacity: 0; transform: scale(0.5) translateY(20px); }
    55%, 85% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0.8) translateY(-10px); }
}

.image-preview-float i {
    font-size: 1.5rem;
    color: var(--success-400);
}

/* =============================================
   TAHAP 3: ERROR - Glitch & Kabel
   ============================================= */
.stage-error {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

.error-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.broken-image-frame {
    width: 200px;
    height: 150px;
    background: var(--gray-800);
    border: 3px dashed #ef4444;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.broken-image-frame i {
    font-size: 3rem;
    color: #ef4444;
}

.stage-error.active .broken-image-frame i {
    animation: glitchIcon 0.15s ease-in-out infinite;
}

@keyframes glitchIcon {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-3px, 2px); }
    50% { transform: translate(3px, -2px); }
    75% { transform: translate(-2px, -1px); }
}

.error-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #ef4444;
}

/* Garis glitch */
.glitch-line {
    position: absolute;
    height: 2px;
    background: #ef4444;
    opacity: 0;
}

.stage-error.active .glitch-line {
    animation: glitchLine 0.5s ease-in-out infinite;
}

.glitch-line:nth-child(1) { top: 20%; left: 10%; width: 30%; animation-delay: 0s; }
.glitch-line:nth-child(2) { top: 50%; right: 10%; width: 40%; animation-delay: 0.1s; }
.glitch-line:nth-child(3) { top: 80%; left: 20%; width: 25%; animation-delay: 0.2s; }

@keyframes glitchLine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Visual Kabel Error (Tanpa interaksi) */
.error-cables {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.cable-visual {
    width: 50px;
    height: 6px;
    background: linear-gradient(90deg, #64748b, #94a3b8);
    border-radius: 3px;
}

.cable-visual.right-cable.disconnected {
    transform: translateX(15px) rotate(10deg);
    animation: cableShake 0.3s ease-in-out infinite;
}

.cable-spark-visual {
    width: 20px;
    height: 20px;
    position: relative;
}

.cable-spark-visual::before,
.cable-spark-visual::after {
    content: 'âš¡';
    position: absolute;
    font-size: 0.9rem;
    animation: sparkFlash 0.2s ease-in-out infinite alternate;
}

.cable-spark-visual::before { top: -5px; left: 0; }
.cable-spark-visual::after { top: 5px; left: 5px; animation-delay: 0.1s; }

@keyframes cableShake {
    0%, 100% { transform: translateX(15px) rotate(10deg); }
    50% { transform: translateX(15px) rotate(-5deg); }
}

@keyframes sparkFlash {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

.error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    color: #fca5a5;
    font-size: 0.75rem;
    animation: errorPulse 1s ease-in-out infinite;
}

@keyframes errorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.error-message i {
    animation: wifiOff 0.5s ease-in-out infinite alternate;
}

@keyframes wifiOff {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* =============================================
   TAHAP 4: TJKT - Perbaikan Jaringan (DESAIN BARU)
   ============================================= */
.stage-tjkt {
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.network-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

/* Rak Server */
.server-rack {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.server-unit {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.server-leds {
    display: flex;
    gap: 8px;
}

.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #374151;
}

.led-power {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: ledPulse 2s ease-in-out infinite;
}

.led-activity {
    background: #f59e0b;
    animation: ledBlink 0.5s ease-in-out infinite;
}

.led-network {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

.stage-tjkt.connected .led-network,
.led.connected {
    background: #10b981 !important;
    box-shadow: 0 0 8px #10b981 !important;
}

@keyframes ledPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes ledBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.server-ports {
    display: flex;
    gap: 6px;
}

.port {
    width: 20px;
    height: 12px;
    background: #0f172a;
    border: 1px solid #374151;
    border-radius: 2px;
}

.port.active {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--accent-400);
    box-shadow: 0 0 5px var(--accent-400);
}

/* Garis Jaringan */
.network-line {
    width: 4px;
    height: 60px;
    background: #374151;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.stage-tjkt.connected .network-line,
.network-line.connected {
    background: linear-gradient(180deg, var(--accent-400), var(--secondary-400));
    box-shadow: 0 0 10px var(--accent-400);
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stage-tjkt.connected .data-flow,
.data-flow.active {
    opacity: 1;
}

.packet {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: packetFlow 1s linear infinite;
}

.packet:nth-child(2) { animation-delay: 0.33s; }
.packet:nth-child(3) { animation-delay: 0.66s; }

@keyframes packetFlow {
    0% { transform: translateY(-10px); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

/* Perangkat Client */
.client-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.client-device i {
    font-size: 2.5rem;
    color: #64748b;
    transition: all 0.5s ease;
}

.stage-tjkt.connected .client-device i {
    color: var(--accent-400);
    filter: drop-shadow(0 0 10px var(--accent-400));
}

.device-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 500;
    transition: all 0.3s ease;
}

.stage-tjkt.connected .status-indicator,
.status-indicator.connected {
    color: #10b981;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.stage-tjkt.connected .status-label {
    color: #10b981;
}

/* Tombol Connect */
.tjkt-connect-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-400), var(--secondary-400));
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    margin-top: 10px;
    z-index: 200;
    position: relative;
    pointer-events: auto;
}

.tjkt-connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.tjkt-connect-btn:active {
    transform: translateY(-1px);
}

.tjkt-connect-btn.connecting {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    pointer-events: none;
}

.tjkt-connect-btn.connecting i {
    animation: spin 1s linear infinite;
}

.stage-tjkt.connected .tjkt-connect-btn,
.tjkt-connect-btn.connected {
    background: linear-gradient(135deg, #10b981, #059669);
    pointer-events: none;
}

/* Hint Hover TJKT */
.tjkt-hover-hint {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    color: var(--accent-300);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.tjkt-hover-hint i {
    animation: bounceIcon 1.5s ease-in-out infinite;
}

.stage-tjkt.show-controls .tjkt-hover-hint,
.stage-tjkt:hover .tjkt-hover-hint {
    opacity: 1;
}

/* Sembunyiin kontrol TJKT lama */
.tjkt-controls {
    display: none !important;
}

/* =============================================
   TAHAP 5: BISNIS DIGITAL - DESAIN HP BARU
   ============================================= */
.stage-bisdig {
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

/* Kontainer HP Baru */
.phone-mockup-new {
    position: relative;
    width: 200px;
    height: 380px;
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Tombol samping HP */
.phone-mockup-new::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 100px;
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
    border-radius: 0 3px 3px 0;
}

.phone-mockup-new::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 80px;
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
    border-radius: 3px 0 0 3px;
}

/* Layar HP */
.phone-screen-new {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    z-index: 15;
}

/* Dynamic Island / Notch */
.phone-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.phone-dynamic-island::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 1px solid #333;
}

/* Header Aplikasi */
.app-header {
    padding: 48px 14px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-logo {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-icons {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.app-icons i {
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-icons i:hover {
    color: var(--accent-400);
    transform: scale(1.1);
}

/* Kartu Postingan */
.post-card {
    padding: 14px;
    opacity: 0;
    transform: translateY(30px);
}

.stage-bisdig.active .post-card {
    animation: postCardAppear 4s ease-out forwards;
}

@keyframes postCardAppear {
    0%, 10% { opacity: 0; transform: translateY(30px); }
    30%, 100% { opacity: 1; transform: translateY(0); }
}

.post-user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.post-time {
    font-size: 0.6rem;
    color: var(--gray-500);
}

.post-menu {
    font-size: 0.8rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
}

/* Gambar Postingan */
.post-image-new {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--secondary-500) 0%, var(--accent-500) 50%, var(--primary-500) 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-image-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: imageShine 3s ease-in-out infinite;
}

@keyframes imageShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.post-image-new i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Interaksi Postingan - TOMBOL INTERAKTIF */
.post-interactions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 150;
}

.interact-btn-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-400);
    position: relative;
    z-index: 200;
    pointer-events: auto;
}

.interact-btn-phone:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.1);
}

.interact-btn-phone:active {
    transform: scale(0.95);
}

.interact-btn-phone i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.interact-btn-phone span {
    font-size: 0.55rem;
    font-weight: 500;
}

/* State Tombol Like */
.interact-btn-phone.like-active {
    color: #ef4444;
}

.interact-btn-phone.like-active i {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* State Tombol Komentar */
.interact-btn-phone.comment-active {
    color: var(--accent-400);
    background: rgba(0, 212, 255, 0.15);
}

/* State Tombol Share */
.interact-btn-phone.share-active {
    color: var(--success-400);
}

.interact-btn-phone.share-active i {
    animation: shareWiggle 0.5s ease;
}

@keyframes shareWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* State Tombol Simpan */
.interact-btn-phone.save-active {
    color: var(--secondary-400);
}

.interact-btn-phone.save-active i {
    animation: savePop 0.4s ease;
}

@keyframes savePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3) translateY(-3px); }
    100% { transform: scale(1); }
}

/* Bagian Komentar */
.comment-section {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: relative;
    z-index: 150;
}

.comment-section.active {
    max-height: 100px;
    opacity: 1;
    padding-top: 10px;
}

.comment-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.comment-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.65rem;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 200;
}

.comment-input:focus {
    border-color: var(--accent-400);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.comment-input::placeholder {
    color: var(--gray-500);
}

.comment-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-400), var(--secondary-400));
    border: none;
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 200;
    position: relative;
    pointer-events: auto;
}

.comment-send-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.comment-send-btn:active {
    transform: scale(0.9);
}

.comment-send-btn.sent {
    background: linear-gradient(135deg, var(--success-400), #059669);
}

/* Statistik Melayang */
.floating-stat {
    position: absolute;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 20;
    pointer-events: none;
}

.floating-stat.show {
    opacity: 1;
    transform: scale(1);
}

.floating-stat.like-stat {
    top: -50px;
    left: 10px;
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.floating-stat.comment-stat {
    top: -50px;
    right: 10px;
    color: var(--accent-400);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Hint Hover Bisnis Digital */
.bisdig-hover-hint {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    color: var(--secondary-300);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.bisdig-hover-hint i {
    animation: bounceIcon 1.5s ease-in-out infinite;
    color: var(--secondary-400);
}

.animation-stage:hover .bisdig-hover-hint,
.animation-stage.show-controls .bisdig-hover-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Sembunyiin elemen lama */
.bisdig-controls,
.social-container,
.phone-mockup {
    display: none !important;
}

/* Overlay sukses buat BD */
.bd-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border-radius: 32px;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 50;
}

.bd-success-overlay.show {
    opacity: 1;
}

.bd-success-overlay i {
    font-size: 3rem;
    color: var(--success-400);
    animation: checkPop 0.5s ease-out;
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Animasi hati melayang buat like BD */
@keyframes floatHeartUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-80px) scale(0.8);
        opacity: 0;
    }
}

/* =============================================
   KONTROL INTERAKTIF - SEMUA TAHAP
   ============================================= */

/* Tahap animasi - ukuran original */
.animation-stage {
    /* No padding extension - use hover trigger zone instead */
}

/* Zona trigger hover - elemen invisible yang overlap sama stage dan extend ke bawah */
.hover-trigger-zone {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: calc(100% + 380px);
    z-index: 1;
    pointer-events: auto;
    /* Debug: uncomment buat liat trigger zone */
    /* background: rgba(255, 0, 0, 0.1); */
}

/* Kontrol Interaktif Dasar */
.interactive-controls {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 50;
    transform: translateY(20px);
}

/* Tampilkan kontrol pas stage atau trigger zone di-hover */
.animation-stage.show-controls .interactive-controls {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Fallback CSS hover (JS yang handle logic utama) */
.animation-stage.interactive-mode .interactive-controls {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Panel Glassmorphism Dasar */
.interactive-panel {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px -20px rgba(0, 212, 255, 0.15);
}

.interact-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-300);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.interact-hint::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.interact-hint i {
    font-size: 1.1rem;
    animation: bounceIcon 1.5s ease-in-out infinite;
}

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

/* =============================================
   KONTROL INTERAKTIF DKV - DITINGKATKAN
   ============================================= */
.dkv-controls {
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 280px;
}

.animation-stage:hover .dkv-controls,
.animation-stage.interactive-mode .dkv-controls {
    transform: translateX(-50%) translateY(0);
}

.capture-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 50%, #ff8e8e 100%);
    border: 5px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 4px rgba(255, 107, 107, 0.3),
        0 10px 40px rgba(255, 107, 107, 0.4),
        0 0 60px rgba(255, 107, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.capture-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    border-radius: 50%;
}

.capture-btn::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: captureRing 2s ease-in-out infinite;
}

@keyframes captureRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

.capture-btn:hover {
    transform: scale(1.15);
    box-shadow: 
        0 0 0 6px rgba(255, 107, 107, 0.4),
        0 15px 50px rgba(255, 107, 107, 0.5),
        0 0 100px rgba(255, 107, 107, 0.3);
}

.capture-btn:hover::after {
    animation: none;
    transform: scale(1.2);
}

.capture-btn:active {
    transform: scale(0.9);
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 0.6),
        0 5px 30px rgba(255, 107, 107, 0.6);
}

.capture-btn i {
    color: white;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    z-index: 1;
}

.capture-btn.capturing {
    animation: captureFlash 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes captureFlash {
    0% { 
        background: white;
        transform: scale(1);
        box-shadow: 0 0 100px 50px rgba(255, 255, 255, 0.8);
    }
    50% { transform: scale(1.1); }
    100% { 
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 50%, #ff8e8e 100%);
        transform: scale(1);
    }
}

.filter-controls {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-400), var(--secondary-400));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    border-color: var(--accent-400);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-400), var(--secondary-400));
    border-color: transparent;
    color: white;
    font-weight: 600;
    box-shadow: 
        0 5px 25px rgba(0, 212, 255, 0.4),
        0 0 0 2px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active::before {
    opacity: 1;
}

/* Efek Filter di Preview Kamera - Ditingkatkan */
.camera-body.filter-vintage {
    filter: sepia(0.7) contrast(1.1) brightness(0.95);
    transition: filter 0.5s ease;
}

.camera-body.filter-cool {
    filter: hue-rotate(200deg) saturate(1.3) brightness(1.05);
    transition: filter 0.5s ease;
}

.camera-body.filter-warm {
    filter: sepia(0.35) saturate(1.5) hue-rotate(-15deg) brightness(1.05);
    transition: filter 0.5s ease;
}

/* =============================================
   INTERAKTIF PPLG - EDITOR CODE INLINE
   ============================================= */
.pplg-hover-hint {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    color: var(--accent-300);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1);
}

.pplg-hover-hint i {
    animation: bounceIcon 1.5s ease-in-out infinite;
    color: var(--accent-400);
}

.animation-stage:hover .pplg-hover-hint,
.animation-stage.interactive-mode .pplg-hover-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Style baris kode yang bisa diedit */
.code-line-anim.editable-line {
    transition: all 0.3s ease;
}

.code-line-anim.user-code-line {
    background: rgba(0, 212, 255, 0.05);
    border-left: 2px solid var(--accent-400);
    margin-left: -2px;
    position: relative;
}

.code-line-anim.user-code-line::before {
    content: 'âœŽ';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-400);
    font-size: 0.7rem;
    opacity: 0.7;
    animation: pulseEdit 2s ease-in-out infinite;
}

@keyframes pulseEdit {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.inline-code-input {
    background: transparent;
    border: none;
    color: #a5f3fc;
    font-family: var(--font-mono);
    font-size: inherit;
    width: 100%;
    padding: 2px 4px;
    outline: none;
    caret-color: var(--accent-400);
    transition: all 0.3s ease;
}

.inline-code-input::placeholder {
    color: rgba(148, 163, 184, 0.4);
    font-style: italic;
}

.inline-code-input:focus {
    background: rgba(0, 212, 255, 0.08);
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--accent-400);
}

/* Footer Editor sama Tombol Run */
.editor-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.run-code-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.run-code-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.run-code-btn:active {
    transform: translateY(0);
}

.run-code-btn.running {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.run-code-btn.running i {
    animation: spin 0.8s linear infinite;
}

.run-output {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.7);
    overflow: hidden;
}

.output-prefix {
    color: var(--gray-500);
    flex-shrink: 0;
}

.output-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.run-output.success .output-text {
    color: #34d399;
}

.run-output.error .output-text {
    color: #f87171;
}

/* Hapus Kontrol PPLG lama */
.pplg-controls {
    display: none !important;
}

/* =============================================
   TAHAP ERROR - PERBAIKAN KABEL INLINE (DITINGKATKAN)
   ============================================= */
.cable-fix-area {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cable-fix-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cable-fix-title i {
    color: #f59e0b;
    animation: pulse 2s ease-in-out infinite;
}

.cable-zone-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    position: relative;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 12px;
}

.cable-end {
    display: flex;
    align-items: center;
}

.cable-wire {
    width: 40px;
    height: 8px;
    background: linear-gradient(180deg, #64748b 0%, #475569 50%, #64748b 100%);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.connector {
    width: 30px;
    height: 24px;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.connector-pins {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 14px;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
}

.left-connector .connector-pins {
    right: -4px;
}

.right-connector .connector-pins {
    left: -4px;
}

/* Indikator Drag - Keliatan Banget */
.drag-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: #f59e0b;
    animation: dragPulse 1.5s ease-in-out infinite;
}

.drag-indicator i {
    font-size: 1.5rem;
    animation: dragArrow 1s ease-in-out infinite;
}

.drag-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes dragArrow {
    0%, 100% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
}

@keyframes dragPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Kabel yang Bisa Di-drag */
.right-end.draggable {
    cursor: grab;
    transition: transform 0.1s ease;
    transform: translateX(30px);
    position: relative;
    z-index: 10;
}

.right-end.draggable:hover {
    transform: translateX(30px) scale(1.1);
}

.right-end.draggable:hover .connector {
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3);
}

.right-end.dragging {
    cursor: grabbing;
}

.right-end.connected {
    transform: translateX(0) !important;
    cursor: default;
}

.right-end.connected .connector {
    background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(16, 185, 129, 0.5);
}

/* Percikan Api */
.spark-zone {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    pointer-events: none;
}

.spark-zone .spark {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 50%, transparent 70%);
    border-radius: 50%;
    animation: sparkBlink 0.3s ease-in-out infinite;
    box-shadow: 0 0 8px #fbbf24;
}

.spark-zone .spark:nth-child(2) {
    animation-delay: 0.1s;
}

.spark-zone .spark:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes sparkBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.5); }
}

.right-end.connected ~ .spark-zone,
.right-end.connected ~ .drag-indicator {
    display: none;
}

/* Status Koneksi */
.connection-status-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
}

.status-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-400), var(--success-400));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.status-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #f87171;
    transition: color 0.3s ease;
}

.connection-status-inline.connected .status-fill {
    width: 100%;
}

.connection-status-inline.connected .status-label {
    color: #34d399;
}

/* Sembunyiin kontrol error lama */
.error-controls {
    display: none !important;
}

/* =============================================
   KONTROL INTERAKTIF TAHAP ERROR - DITINGKATKAN
   ============================================= */
.error-controls {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 280px;
}

.animation-stage:hover .error-controls,
.animation-stage.interactive-mode .error-controls {
    transform: translateX(-50%) translateY(0);
}

.cable-zone {
    position: relative;
    width: 240px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cable-plug {
    width: 60px;
    height: 35px;
    background: linear-gradient(180deg, #475569 0%, #334155 100%);
    border-radius: 6px;
    position: relative;
    cursor: grab;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.cable-plug:hover {
    box-shadow: 
        0 6px 20px rgba(0, 212, 255, 0.3),
        0 0 0 2px rgba(0, 212, 255, 0.3);
}

.cable-plug:active {
    cursor: grabbing;
    transform: scale(1.05);
}

.plug-head {
    position: absolute;
    width: 18px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent-400) 0%, #0891b2 100%);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.plug-left .plug-head {
    right: -18px;
    border-radius: 0 6px 6px 0;
}

.plug-right .plug-head {
    left: -18px;
    border-radius: 6px 0 0 6px;
}

.plug-right.disconnected {
    transform: translateX(40px);
    animation: disconnectedPulse 1.5s ease-in-out infinite;
}

@keyframes disconnectedPulse {
    0%, 100% { 
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% { 
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.3),
            0 0 0 8px rgba(239, 68, 68, 0);
    }
}

.plug-right.connected {
    transform: translateX(0);
    animation: plugConnectBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes plugConnectBounce {
    0% { transform: translateX(40px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

.cable-sparks {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.cable-sparks .spark {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 50%, transparent 70%);
    border-radius: 50%;
    animation: electricSpark 0.2s ease-in-out infinite;
    box-shadow: 0 0 10px #fbbf24, 0 0 20px #f59e0b;
}

.cable-sparks .spark:nth-child(2) {
    animation-delay: 0.07s;
    width: 8px;
    height: 8px;
}

.cable-sparks .spark:nth-child(3) {
    animation-delay: 0.14s;
    width: 12px;
    height: 12px;
}

@keyframes electricSpark {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
    25% { 
        opacity: 0.3; 
        transform: scale(0.5) rotate(90deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
    75% { 
        opacity: 0.5; 
        transform: scale(0.8) rotate(270deg); 
    }
}

.plug-right.connected ~ .cable-sparks {
    display: none;
}

.connection-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-400), var(--success-400));
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 1.5s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.connection-progress.connected .progress-text {
    color: var(--success-400);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* =============================================
   KONTROL INTERAKTIF TJKT - DITINGKATKAN
   ============================================= */
.tjkt-controls {
    position: absolute;
    bottom: -290px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.animation-stage:hover .tjkt-controls,
.animation-stage.interactive-mode .tjkt-controls {
    transform: translateX(-50%) translateY(0);
}

.network-panel {
    width: 100%;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.ip-config {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ip-config label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    white-space: nowrap;
}

.ip-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: var(--accent-300);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.ip-input:focus {
    border-color: var(--accent-400);
    box-shadow: 
        0 0 0 3px rgba(0, 212, 255, 0.1),
        0 0 20px rgba(0, 212, 255, 0.15);
}

.network-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.network-btn {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.network-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.network-btn:active::before {
    width: 300px;
    height: 300px;
}

.ping-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.ping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        0 0 0 2px rgba(139, 92, 246, 0.2);
}

.connect-btn {
    background: linear-gradient(135deg, var(--accent-400) 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 0 2px rgba(0, 212, 255, 0.2);
}

.ping-result {
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    line-height: 1.6;
    min-height: 50px;
}

.ping-status {
    color: var(--gray-400);
    display: block;
}

.ping-status.success {
    color: var(--success-400);
}

.ping-status.pinging {
    color: var(--warning-400);
    animation: pingBlink 0.8s ease-in-out infinite;
}

@keyframes pingBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ping-status.error {
    color: #f87171;
}

/* =============================================
   KONTROL INTERAKTIF BISNIS DIGITAL - DITINGKATKAN
   ============================================= */
.bisdig-controls {
    position: absolute;
    bottom: -310px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.animation-stage:hover .bisdig-controls,
.animation-stage.interactive-mode .bisdig-controls {
    transform: translateX(-50%) translateY(0);
}

.social-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.social-btn {
    padding: 14px 22px;
    border: none;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.like-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.like-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.4),
        0 0 0 3px rgba(255, 107, 107, 0.2);
}

.like-btn.liked {
    animation: likeHeartBeat 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.like-btn.liked i {
    animation: heartPop 0.4s ease-out;
}

@keyframes likeHeartBeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(0.95); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); color: #fff; }
    100% { transform: scale(1); }
}

.comment-btn {
    background: linear-gradient(135deg, var(--accent-400) 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.comment-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.4),
        0 0 0 3px rgba(0, 212, 255, 0.2);
}

.share-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.4),
        0 0 0 3px rgba(139, 92, 246, 0.2);
}

.share-btn.shared {
    animation: shareWiggle 0.5s ease;
}

@keyframes shareWiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
}

.comment-input-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.comment-input-wrapper.active {
    opacity: 1;
    max-height: 60px;
    margin-top: 12px;
    transform: translateY(0);
}

.comment-input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.comment-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.comment-input:focus {
    border-color: var(--accent-400);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.send-comment-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-400) 0%, #0891b2 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.send-comment-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.5),
        0 0 0 3px rgba(0, 212, 255, 0.2);
}

.send-comment-btn:active {
    transform: scale(0.95);
}

.send-comment-btn.sent {
    background: linear-gradient(135deg, var(--success-400) 0%, #059669 100%);
    animation: sendPop 0.4s ease;
}

@keyframes sendPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.engagement-stats {
    display: flex;
    gap: 16px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-200);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.stat-item:first-child i {
    color: #ff6b6b;
}

.stat-item:first-child:hover i {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

.stat-item:nth-child(2) i {
    color: var(--accent-400);
}

.stat-item:last-child i {
    color: var(--secondary-400);
}

/* Animasi bounce buat statistik */
.stat-item span.updated {
    animation: statPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: white;
}

@keyframes statPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* Animasi kamera goyang buat capture DKV */
@keyframes cameraShake {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    10% { transform: translate(-5px, -3px) rotate(-2deg); }
    20% { transform: translate(5px, 2px) rotate(2deg); }
    30% { transform: translate(-4px, 3px) rotate(-1deg); }
    40% { transform: translate(4px, -2px) rotate(1deg); }
    50% { transform: translate(-3px, 2px) rotate(-0.5deg); }
    60% { transform: translate(3px, -1px) rotate(0.5deg); }
    70% { transform: translate(-2px, 1px) rotate(0); }
    80% { transform: translate(2px, -1px) rotate(0); }
    90% { transform: translate(-1px, 0) rotate(0); }
}

/* LED Server kedip buat TJKT */
@keyframes serverBlink {
    0%, 100% { 
        background: var(--warning-400); 
        box-shadow: 0 0 10px var(--warning-400);
    }
    50% { 
        background: var(--accent-400); 
        box-shadow: 0 0 15px var(--accent-400);
    }
}

/* Partikel hati melayang buat like */
@keyframes floatHeart {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.5) rotate(20deg);
    }
}

/* Animasi fade in ke atas */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi pulse sukses */
@keyframes successPulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    50% { 
        box-shadow: 0 0 30px 10px rgba(52, 211, 153, 0.2);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

/* Efek glow sukses buat jaringan */
@keyframes successGlow {
    0% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 0 20px rgba(52, 211, 153, 0.5));
    }
    100% { 
        filter: brightness(1);
    }
}

/* Animasi goyang buat validasi */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

/* Animasi capture foto */
@keyframes photoCapture {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animasi titik-titik ngetik */
.typing-dots::after {
    content: '';
    animation: typingDots 1.5s infinite;
}

@keyframes typingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* =============================================
   INDIKATOR MODE INTERAKTIF
   ============================================= */
.interactive-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--accent-400);
    border-radius: 15px;
    font-size: 0.65rem;
    color: var(--accent-300);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.animation-stage:hover .interactive-badge,
.animation-stage.interactive-mode .interactive-badge {
    opacity: 1;
}

.interactive-badge i {
    margin-right: 5px;
}

/* Overlay flash buat capture DKV */
.flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 100;
}

/* =============================================
   SHOWCASE ANIMASI RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .hero-animation-showcase {
        max-width: 100%;
        aspect-ratio: 1/1;
    }
    
    .animation-story {
        top: -50px;
    }
    
    .story-step {
        font-size: 0.6rem;
    }
    
    .story-text {
        font-size: 0.75rem;
    }
    
    .camera-body {
        width: 150px;
        height: 100px;
    }
    
    .camera-lens {
        width: 60px;
        height: 60px;
    }
    
    .phone-mockup {
        width: 140px;
        height: 240px;
    }
    
    .stage-bubble {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .stage-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot-label {
        display: none;
    }
}

/* =============================================
   ANIMASI TAMBAHAN
   ============================================= */
@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}
