    /* ============================================
    ONMENU - RESPONSIVE STYLE.CSS
    Website Menu Digital - Fully Responsive
    ============================================ */

    /* CSS Variables - Premium Palette */
    :root {
        /* Colors - More vibrant HSL */
        --color-primary: hsl(24, 95%, 53%);
        --color-primary-dark: hsl(24, 95%, 43%);
        --color-primary-light: hsl(24, 100%, 97%);
        --color-secondary: hsl(262, 83%, 58%);
        --color-white: #ffffff;
        --color-gray-50: #f8fafc;
        --color-gray-100: #f1f5f9;
        --color-gray-200: #e2e8f0;
        --color-gray-300: #cbd5e1;
        --color-gray-400: #94a3b8;
        --color-gray-500: #64748b;
        --color-gray-600: #475569;
        --color-gray-700: #334155;
        --color-gray-800: #1e293b;
        --color-gray-900: #0f172a;
        
        /* Typography */
        --font-family: 'Inter', system-ui, -apple-system, sans-serif;
        
        /* Glassmorphism Defaults */
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.4);
        --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
        
        /* Spacing Scale */
        --space-xs: 0.25rem;
        --space-sm: 0.5rem;
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
        --space-4xl: 6rem;
        
        /* Radii */
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --radius-xl: 24px;
        --radius-2xl: 32px;
        --radius-full: 9999px;
        
        /* Shadows - Deeper and softer */
        --shadow-soft: 0 2px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.05);
        --shadow-premium: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

    /* ============================================
    RESET & BASE
    ============================================ */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        font-size: 16px;
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-family);
        line-height: 1.6;
        color: var(--color-gray-700);
        background-color: var(--color-white);
        overflow-x: hidden;
    }

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

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
    }

    /* ============================================
    UTILITIES & GLASSMORPHISM
    ============================================ */
    .glass {
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        box-shadow: var(--glass-shadow);
    }

    .mesh-gradient {
        background-color: #ffffff;
        background-image: 
            radial-gradient(at 0% 0%, hsla(24, 100%, 95%, 1) 0, transparent 50%), 
            radial-gradient(at 50% 0%, hsla(262, 100%, 97%, 1) 0, transparent 50%), 
            radial-gradient(at 100% 0%, hsla(199, 100%, 95%, 1) 0, transparent 50%);
    }

    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .reveal-on-scroll.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============================================
    CONTAINER - RESPONSIVE
    ============================================ */
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* ============================================
    NAVBAR - RESPONSIVE
    ============================================ */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 1.5rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: transparent;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.75rem 0;
    }

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

    /* Logo */
    /* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    width: 3.7rem;  /* sesuaikan ukuran ini */
    height: 3.7rem; /* sesuaikan ukuran ini */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* agar proporsi gambar tetap terjaga */
}

.logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

    /* Desktop Navigation */
    .nav-menu {
        display: none;
    }

    .nav-auth {
        display: none;
    }

    /* Mobile Menu Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: var(--radius-md);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0,0,0,0.05);
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--color-gray-700);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        padding: 2rem;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--color-gray-700);
        padding: 1rem 2rem;
        border-radius: var(--radius-full);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-primary);
        background: rgba(249, 115, 22, 0.1);
    }

    /* Mobile Auth Buttons */
    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-login-mobile {
        padding: 1rem;
        text-align: center;
        font-weight: 600;
        color: var(--color-gray-700);
        border: 2px solid var(--color-gray-200);
        border-radius: var(--radius-full);
    }

    .btn-signup-mobile {
        padding: 1rem;
        text-align: center;
        font-weight: 600;
        color: var(--color-white);
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        border-radius: var(--radius-full);
        box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    }

    /* Tablet & Desktop Navigation */
    @media (min-width: 1024px) {
        .hamburger {
            display: none;
        }
        
        .nav-menu {
            position: static;
            display: flex;
            flex-direction: row;
            background: rgba(255, 255, 255, 0.6);
            padding: 0.5rem;
            border-radius: var(--radius-full);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: var(--shadow-sm);
            opacity: 1;
            visibility: visible;
            width: auto;
        }
        
        .nav-link {
            font-size: 0.875rem;
            padding: 0.625rem 1.25rem;
            width: auto;
        }
        
        .nav-link.active {
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: var(--color-white);
            box-shadow: 0 4px 15px -3px rgba(249, 115, 22, 0.4);
        }
        
        .nav-auth {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .btn-login {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-gray-700);
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-full);
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background: rgba(0,0,0,0.05);
        }
        
        .btn-signup {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-white);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            padding: 0.625rem 1.5rem;
            border-radius: var(--radius-full);
            box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
            transition: all 0.3s ease;
        }
        
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.5);
        }
        
        .mobile-auth {
            display: none;
        }
    }

    /* ============================================
    ANIMASI LENGKAP - SEMUA CARD BERGERAK NAIK TURUN
    Paste ke bagian bawah style.css Anda
    ============================================ */

    /* Desktop Only - Animasi untuk semua cards */
    @media (min-width: 1024px) {
        
        /* ========================================
        ANIMASI KEYFRAMES - 4 Variasi Berbeda
        ======================================== */
        
        /* Animasi 1 - Naik Turun Pelan (20px) */
        @keyframes floatSlow {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Animasi 2 - Naik Turun Sedang (25px) */
        @keyframes floatMedium {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-25px);
            }
        }
        
        /* Animasi 3 - Naik Turun Cepat (15px) */
        @keyframes floatFast {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        /* Animasi 4 - Naik Turun dengan Slight Rotation */
        @keyframes floatRotate {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(-1deg);
            }
            75% {
                transform: translateY(-20px) rotate(1deg);
            }
        }
        
        
        /* ========================================
        MOCKUP BROWSER - Container Floating
        ======================================== */
        
        .mockup-browser {
            animation: floatSlow 4s ease-in-out infinite;
            animation-delay: 0.5s;
        }
        
        
        /* ========================================
        MENU ITEMS - Bergerak Independent
        ======================================== */
        
        /* Menu Item 1 - Nasi Goreng */
        .menu-item:nth-child(1) {
            animation: floatFast 3.5s ease-in-out infinite;
            animation-delay: 0s;
        }
        
        /* Menu Item 2 - Mie Goreng */
        .menu-item:nth-child(2) {
            animation: floatMedium 4s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        
        /* ========================================
        FLOATING CARDS - Di luar mockup
        ======================================== */
        
        /* Base styling untuk floating cards */
        .floating-card {
            display: block !important;
            position: absolute;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 1.5rem;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        /* Card Stats - Kiri (Peningkatan +340%) */
        .card-stats {
            left: -50px;
            top: 15%;
            width: 180px;
            animation: floatRotate 3s ease-in-out infinite;
            animation-delay: 0s;
        }
        
        /* Card Orders - Kanan (Pesanan +247) */
        .card-orders {
            right: -40px;
            bottom: 15%;
            width: 200px;
            animation: floatMedium 3.5s ease-in-out infinite;
            animation-delay: 1.8s;
        }
        
        
        /* ========================================
        HOVER EFFECTS - Pause saat di hover
        ======================================== */
        
        .mockup-browser:hover,
        .menu-item:hover,
        .floating-card:hover {
            animation-play-state: paused;
        }
        
        .floating-card:hover {
            transform: translateY(-8px) scale(1.03) !important;
            box-shadow: 0 30px 70px -12px rgba(0, 0, 0, 0.35);
            border-color: rgba(249, 115, 22, 0.3);
        }
        
        
        /* ========================================
        CARD STYLING - Icons, Labels, Values
        ======================================== */
        
        .card-icon,
        .card-icon-small {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .card-icon-small {
            width: 44px;
            height: 44px;
        }
        
        .floating-card:hover .card-icon,
        .floating-card:hover .card-icon-small {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.1));
        }
        
        .card-label,
        .card-label-small {
            font-size: 0.8125rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
            font-weight: 500;
            letter-spacing: 0.01em;
        }
        
        .card-label-small {
            font-size: 0.75rem;
        }
        
        .card-value,
        .card-value-small {
            font-size: 2rem;
            font-weight: 800;
            color: #f97316;
            line-height: 1;
            letter-spacing: -0.02em;
        }
        
        .card-value-small {
            font-size: 1.75rem;
        }
        
        
        /* ========================================
        LIVE BADGE - Pulse Animation
        ======================================== */
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }
        
        .live-dot {
            animation: pulse 2s ease-in-out infinite;
        }
        
        
        /* ========================================
        MOCKUP DOTS - Subtle Float
        ======================================== */
        
        @keyframes dotFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-3px);
            }
        }
        
        .mockup-dots span {
            animation: dotFloat 2s ease-in-out infinite;
        }
        
        .mockup-dots span:nth-child(1) {
            animation-delay: 0s;
        }
        
        .mockup-dots span:nth-child(2) {
            animation-delay: 0.3s;
        }
        
        .mockup-dots span:nth-child(3) {
            animation-delay: 0.6s;
        }
    }


    /* ========================================
    LARGE DESKTOP - Posisi Lebih Jauh
    ======================================== */

    @media (min-width: 1280px) {
        .card-stats {
            left: -70px;
            top: 18%;
        }
        
        .card-orders {
            right: -60px;
            bottom: 12%;
        }
        
        /* Animasi lebih dramatis di layar besar */
        @keyframes floatSlow {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-25px);
            }
        }
        
        @keyframes floatMedium {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-30px);
            }
        }
        
        @keyframes floatRotate {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-12px) rotate(-1.5deg);
            }
            75% {
                transform: translateY(-25px) rotate(1.5deg);
            }
        }
    }


    /* ========================================
    ACCESSIBILITY - Reduced Motion
    ======================================== */

    @media (prefers-reduced-motion: reduce) {
        .mockup-browser,
        .menu-item,
        .floating-card,
        .card-stats,
        .card-orders,
        .live-dot,
        .mockup-dots span {
            animation: none !important;
        }
    }


    /* ========================================
    MOBILE - Disable Semua Animasi
    ======================================== */

    @media (max-width: 1023px) {
        .floating-card {
            display: none !important;
        }
        
        .mockup-browser,
        .menu-item {
            animation: none !important;
        }
    }

    /* ============================================
    HERO SECTION - RESPONSIVE
    ============================================ */
    .hero {
        padding: 8rem 0 5rem;
        background: 
            radial-gradient(circle at 0% 0%, hsla(24, 100%, 96%, 1) 0%, transparent 40%),
            radial-gradient(circle at 100% 100%, hsla(262, 100%, 98%, 1) 0%, transparent 40%),
            var(--color-white);
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(249, 115, 22, 0.1);
        color: var(--color-primary);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(249, 115, 22, 0.15);
    }

    .badge-dot {
        width: 6px;
        height: 6px;
        background: var(--color-primary);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

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

    .hero-title {
        font-size: 3rem !important;
        font-weight: 800;
        line-height: 1.1;
        color: var(--color-gray-900);
        margin-bottom: 1rem;
        letter-spacing: -0.0em;
    }

    .text-orange {
        color: var(--color-primary);
        display: block;
        margin-top: 0.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        color: var(--color-gray-600);
        margin-bottom: 2rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: var(--color-white);
        padding: 1.125rem 2rem;
        border-radius: var(--radius-lg);
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 40px -10px hsla(24, 95%, 53%, 0.5);
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 20px 50px -10px hsla(24, 95%, 53%, 0.6);
        background: linear-gradient(135deg, hsl(24, 95%, 58%), var(--color-primary-dark));
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: var(--color-gray-800);
        padding: 1.125rem 2rem;
        border-radius: var(--radius-lg);
        font-weight: 700;
        font-size: 1rem;
        border: 1px solid var(--color-gray-200);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        width: 100%;
    }

    .btn-secondary:hover {
        background: var(--color-white);
        border-color: var(--color-primary);
        transform: translateY(-4px);
        box-shadow: var(--shadow-premium);
    }

    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

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

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
        margin-bottom: 0.25rem;
    }

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

    .stat-divider {
        display: none;
    }

    /* Hero Visual */
    .hero-visual {
        order: 1;
        display: flex;
        justify-content: center;
        padding: 0 1rem;
    }

    .mockup-container {
        position: relative;
        width: 100%;
        max-width: 400px;
    }

    .mockup-browser {
        background: var(--color-white);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-2xl);
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .mockup-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        background: linear-gradient(to bottom, var(--color-gray-50), var(--color-gray-100));
        border-bottom: 1px solid var(--color-gray-200);
    }

    .mockup-dots {
        display: flex;
        gap: 0.5rem;
    }

    .mockup-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .mockup-dots span:first-child { background: #ef4444; }
    .mockup-dots span:nth-child(2) { background: #f59e0b; }
    .mockup-dots span:last-child { background: #22c55e; }

    .live-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: var(--color-gray-500);
        font-weight: 500;
        background: rgba(255,255,255,0.8);
        padding: 0.375rem 0.75rem;
        border-radius: var(--radius-full);
    }

    .live-dot {
        width: 6px;
        height: 6px;
        background: var(--color-green);
        border-radius: 50%;
        animation: pulse-live 2s infinite;
    }

    @keyframes pulse-live {
        0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
        50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    }

    .mockup-content {
        padding: 1.5rem;
        background: linear-gradient(to bottom, var(--color-white), var(--color-gray-50));
    }
    .menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* agar gambar memenuhi kotak tanpa distorsi */
    border-radius: var(--radius-md);
}
    .menu-item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        background: var(--color-white);
        border-radius: var(--radius-lg);
        margin-bottom: 1rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(0,0,0,0.03);
    }

    .menu-image {
    width: 70px;
    height: 70px;
    background-image: url('nasi-goreng.jpg'); /* ← tambahkan path gambar */
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

    .menu-image-2 {
    background-image: url('mie-goreng.jpg'); /* ← tambahkan path gambar */
    }   

    .menu-info h4 {
        font-size: 0.9375rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.25rem;
    }

    .menu-price {
        font-size: 1rem;
        font-weight: 800;
        color: var(--color-primary);
        margin-bottom: 0.25rem;
    }

    .menu-rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .stars {
        color: #fbbf24;
        font-size: 0.75rem;
    }

    .review-count {
        font-size: 0.75rem;
        color: var(--color-gray-400);
    }

    /* Floating Cards - Hidden on mobile */
    .floating-card {
        display: none;
    }

    /* Tablet */
    @media (min-width: 640px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-buttons {
            flex-direction: row;
            justify-content: center;
        }
        
        .btn-primary,
        .btn-secondary {
            width: auto;
        }
        
        .hero-stats {
            flex-direction: row;
            justify-content: center;
            gap: 3rem;
        }
        
        .stat-divider {
            display: block;
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, var(--color-gray-200), transparent);
        }
    }

    /* Desktop */
    @media (min-width: 1024px) {
        .hero {
            padding: 8rem 0 5rem;
        }
        
        .hero-container {
            grid-template-columns: 1fr 1.1fr;
            gap: 5rem;
        }
        
        .hero-content {
            text-align: left;
            order: 1;
            max-width: 600px;
        }
        
        .hero-title {
            font-size: 3.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.125rem;
            max-width: 480px;
        }
        
        .hero-buttons {
            justify-content: flex-start;
        }
        
        .hero-stats {
            justify-content: flex-start;
            border-top: none;
            padding-top: 0;
        }
        
        .stat-item {
            text-align: left;
        }
        
        .hero-visual {
            order: 2;
            justify-content: flex-end;
        }
        
        .mockup-container {
            max-width: 500px;
        }
        
        .floating-card {
            display: block;
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-2xl);
            padding: 1.25rem;
            animation: float 4s ease-in-out infinite;
            backdrop-filter: blur(10px);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .card-stats {
            left: -40px;
            top: 20%;
            animation-delay: 0s;
        }
        
        .card-orders {
            right: -30px;
            bottom: 10%;
            animation-delay: 2s;
        }
        
        .card-icon {
            width: 40px;
            height: 40px;
            background: rgba(249, 115, 22, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
        }
        
        .card-label {
            font-size: 0.75rem;
            color: var(--color-gray-500);
            margin-bottom: 0.25rem;
        }
        
        .card-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-primary);
        }
    }

    /* Large Desktop */
    @media (min-width: 1280px) {
        .hero-container {
            gap: 6rem;
        }
        
        .hero-title {
            font-size: 4rem;
        }
        
        .mockup-container {
            max-width: 550px;
        }
    }

    /* ============================================
    FEATURES SECTION - RESPONSIVE
    ============================================ */
    .features {
        padding: 4rem 0;
        background: var(--color-white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-tag {
        display: inline-block;
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-blue);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        color: var(--color-gray-500);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        background: var(--color-white);
        border: 1px solid var(--color-gray-100);
        border-radius: var(--radius-xl);
        padding: 1.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-4px);
        border-color: var(--color-gray-200);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .icon-orange { background: rgba(249, 115, 22, 0.1); color: var(--color-primary); }
    .icon-blue { background: rgba(59, 130, 246, 0.1); color: var(--color-blue); }
    .icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--color-purple); }

    .feature-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.75rem;
    }

    .feature-desc {
        font-size: 0.875rem;
        color: var(--color-gray-600);
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: var(--color-gray-600);
    }

    /* Tablet */
    @media (min-width: 640px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Desktop */
    @media (min-width: 1024px) {
        .features {
            padding: 6rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
        
        .features-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .feature-card {
            padding: 2rem;
        }
    }

    /* ============================================
    PRICING SECTION - RESPONSIVE
    ============================================ */
    .pricing {
        padding: 4rem 0;
        background: var(--color-gray-50);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .pricing-card {
        background: var(--color-white);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-xl);
        padding: 1.5rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .pricing-card.featured {
        border: 2px solid var(--color-primary);
        order: -1;
    }

    .popular-badge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--color-primary);
        color: var(--color-white);
        padding: 0.375rem 1rem;
        border-radius: var(--radius-full);
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }

    .pricing-header {
        margin-bottom: 1.25rem;
    }

    .pricing-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.25rem;
    }

    .pricing-desc {
        font-size: 0.875rem;
        color: var(--color-gray-500);
    }

    .pricing-price {
        display: flex;
        align-items: baseline;
        gap: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .pricing-price .currency {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--color-gray-900);
    }

    .pricing-price .amount {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--color-gray-900);
        line-height: 1;
    }

    .pricing-price .period {
        font-size: 0.875rem;
        color: var(--color-gray-500);
    }

    .pricing-note {
        font-size: 0.75rem;
        color: var(--color-gray-400);
        margin-bottom: 1.5rem;
    }

    .pricing-features {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        font-size: 0.875rem;
        color: var(--color-gray-600);
    }

    .pricing-btn {
        width: 100%;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .pricing-btn.btn-outline {
        background: transparent;
        border: 1.5px solid var(--color-gray-300);
        color: var(--color-gray-700);
    }

    .pricing-btn.btn-primary {
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: var(--color-white);
        box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    }

    /* How to Use */
    .how-to-use {
        text-align: center;
    }

    .how-to-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 2rem;
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .step-item {
        background: var(--color-white);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        background: rgba(249, 115, 22, 0.1);
        color: var(--color-primary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.875rem;
        margin: 0 auto 0.75rem;
    }

    .step-item h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-gray-900);
        margin-bottom: 0.5rem;
    }

    .step-item p {
        font-size: 0.875rem;
        color: var(--color-gray-500);
        line-height: 1.5;
    }

    .step-arrow {
        display: none;
        color: var(--color-gray-300);
        transform: rotate(90deg);
    }

    /* Tablet */
    @media (min-width: 640px) {
        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .pricing-card.featured {
            order: 0;
            transform: scale(1.02);
        }
    }

    /* Desktop */
    @media (min-width: 1024px) {
        .pricing {
            padding: 6rem 0;
        }
        
        .pricing-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .pricing-card {
            padding: 2rem;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            z-index: 1;
        }
        
        .steps-grid {
            flex-direction: row;
            justify-content: center;
            gap: 1rem;
        }
        
        .step-item {
            min-width: 200px;
        }
        
        .step-arrow {
            display: block;
            transform: none;
        }
    }

    /* ============================================
    CONTACT SECTION - RESPONSIVE
    ============================================ */
    .contact {
        padding: 4rem 0;
        background: var(--color-white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--color-gray-700);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-md);
        font-family: inherit;
        font-size: 0.9375rem;
        transition: all 0.3s ease;
        background: var(--color-white);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .btn-submit {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: var(--color-white);
        border: none;
        padding: 1rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        font-size: 0.9375rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 0.875rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        background: rgba(249, 115, 22, 0.1);
        color: var(--color-primary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-label {
        font-size: 0.75rem;
        color: var(--color-gray-500);
    }

    .info-value {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--color-gray-900);
    }

    /* Testimonials */
    .testimonials-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .testimonials-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-card {
        background: var(--color-white);
        border: 1px solid var(--color-gray-100);
        border-radius: var(--radius-lg);
        padding: 1.25rem;
        transition: all 0.3s ease;
    }

    .testimonial-stars {
        color: #fbbf24;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 0.875rem;
        color: var(--color-gray-600);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
        background: var(--color-primary);
        color: var(--color-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .author-name {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--color-gray-900);
    }

    .author-role {
        font-size: 0.75rem;
        color: var(--color-gray-500);
    }

    /* FAQ */
    .faq-section {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-title {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 2rem;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-item {
        background: var(--color-white);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem;
        background: none;
        border: none;
        text-align: left;
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--color-gray-900);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-icon {
        transition: transform 0.3s ease;
        color: var(--color-gray-400);
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.875rem;
        color: var(--color-gray-600);
        line-height: 1.6;
    }

    /* Tablet */
    @media (min-width: 640px) {
        .testimonials-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Desktop */
    @media (min-width: 1024px) {
        .contact {
            padding: 6rem 0;
        }
        
        .contact-grid {
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-form-wrapper {
            max-width: 100%;
        }
        
        .testimonials-title {
            text-align: left;
        }
        
        .testimonials-list {
            grid-template-columns: 1fr;
        }
        
        .contact-info {
            flex-direction: row;
            gap: 2rem;
        }
    }

    /* ============================================
    FOOTER - RESPONSIVE
    ============================================ */
    .footer {
        background: var(--color-gray-900);
        color: var(--color-gray-300);
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        color: var(--color-white);
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .footer-desc {
        font-size: 0.875rem;
        color: var(--color-gray-400);
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-nav h4,
    .footer-social h4 {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--color-white);
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .footer-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .footer-nav a {
        color: var(--color-gray-400);
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

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

    .social-links {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-gray-300);
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: translateY(-2px);
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.75rem;
        color: var(--color-gray-500);
        text-align: center;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .footer-links a {
        color: var(--color-gray-400);
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--color-white);
    }

    /* Tablet */
    @media (min-width: 640px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            text-align: left;
        }
        
        .footer-logo {
            justify-content: flex-start;
        }
        
        .footer-desc {
            margin: 0;
        }
        
        .social-links {
            justify-content: flex-start;
        }
    }

    /* Desktop */
    @media (min-width: 1024px) {
        .footer {
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
        }
        
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
    }

    /* ============================================
    UTILITY CLASSES
    ============================================ */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

    /* Smooth scroll padding for fixed header */
    html {
        scroll-padding-top: 80px;
    }

    /* Selection color */
    ::selection {
        background: rgba(249, 115, 22, 0.2);
        color: var(--color-gray-900);
    }

    /* Focus visible for accessibility */
    :focus-visible {
        outline: 2px solid var(--color-primary);
        outline-offset: 2px;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

    /* ============================================
    PRICING - SISTEM KOIN (TAMBAHAN)
    Paste kode ini ke BAGIAN PALING BAWAH style.css Anda
    ============================================ */

    /* ========================================
    MEMBERSHIP SECTION
    ======================================== */

    .membership-section {
        margin-bottom: 5rem;
        text-align: center;
    }

    .section-subtitle-2 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.75rem;
    }

    .section-desc {
        font-size: 1rem;
        color: var(--color-gray-500);
        margin-bottom: 2.5rem;
    }

    /* Toggle Bulanan/Tahunan */
    .pricing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .toggle-label {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--color-gray-500);
        transition: color 0.3s;
    }

    .toggle-label.active {
        color: var(--color-primary);
    }

    .save-badge {
        display: inline-block;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: white;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 0.25rem 0.5rem;
        border-radius: 50px;
        margin-left: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Toggle Switch */
    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 52px;
        height: 28px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #cbd5e1;
        transition: 0.4s;
        border-radius: 50px;
    }

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .toggle-switch input:checked + .toggle-slider {
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    }

    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(24px);
    }

    /* Membership Card */
    /* ========================================
    MEMBERSHIP SECTION
    ======================================== */

    .membership-section {
        margin-bottom: 5rem;
        text-align: center;
    }

    .section-subtitle-2 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.75rem;
    }

    .section-desc {
        font-size: 1rem;
        color: var(--color-gray-500);
        margin-bottom: 2.5rem;
    }

    /* Toggle Bulanan/Tahunan */
    .pricing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .toggle-label {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--color-gray-500);
        transition: color 0.3s;
    }

    .toggle-label.active {
        color: var(--color-primary);
    }

    .save-badge {
        display: inline-block;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: white;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 0.25rem 0.5rem;
        border-radius: 50px;
        margin-left: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Toggle Switch */
    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 52px;
        height: 28px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #cbd5e1;
        transition: 0.4s;
        border-radius: 50px;
    }

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .toggle-switch input:checked + .toggle-slider {
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    }

    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(24px);
    }

    /* ========================================
    MEMBERSHIP CARD - LAYOUT VERTIKAL CENTERED
    ======================================== */

    .membership-card {
        max-width: 500px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        padding: 2.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: 2px solid transparent;
        background-clip: padding-box;
        position: relative;
        transition: all 0.3s ease;
    }

    .membership-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .membership-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 70px rgba(249, 115, 22, 0.15);
    }

    .membership-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 1.5rem;
    }

    .membership-content {
        width: 100%;
    }

    .membership-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--color-gray-900);
        margin-bottom: 0.5rem;
    }

    .membership-subtitle {
        font-size: 0.9375rem;
        color: var(--color-gray-500);
        margin-bottom: 1.5rem;
    }

    .membership-price {
        margin-bottom: 2rem;
    }

    .price-wrapper {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .membership-price .currency {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--color-gray-700);
    }

    .membership-price .amount {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
        transition: transform 0.2s ease;
    }

    .membership-price .period {
        font-size: 1rem;
        color: var(--color-gray-500);
    }

    .price-note {
        font-size: 0.8125rem;
        color: var(--color-gray-400);
    }

    .membership-features {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 2rem;
        list-style: none;
        text-align: left;
        width: 100%;
    }

    .membership-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9375rem;
        color: var(--color-gray-700);
        font-weight: 500;
    }

    .membership-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .membership-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    }
    /* ========================================
    COINS SECTION
    ======================================== */

    .coins-section {
        margin-bottom: 4rem;
    }

    .coins-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    /* Coin Card */
    .coin-card {
        background: white;
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: center;
        border: 2px solid var(--color-gray-100);
        transition: all 0.3s ease;
        position: relative;
    }

    .coin-card:hover {
        border-color: var(--color-primary);
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    /* Popular Card */
    .coin-card.popular {
        border-color: var(--color-primary);
        background: linear-gradient(180deg, #fff7ed 0%, #ffffff 40%);
        transform: scale(1.05);
    }

    .coin-card.popular:hover {
        transform: scale(1.05) translateY(-4px);
    }

    .popular-tag {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: white;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 0.375rem 1rem;
        border-radius: 50px;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }

    /* Custom Card */
    .coin-card.custom {
        border-color: var(--color-purple);
        background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 40%);
    }

    .coin-card.custom .coin-icon svg {
        stroke: var(--color-purple);
    }

    .coin-badge {
        display: inline-block;
        background: rgba(249, 115, 22, 0.1);
        color: var(--color-primary);
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0.375rem 0.875rem;
        border-radius: 50px;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .coin-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .coin-amount {
        margin-bottom: 1.5rem;
    }

    .coin-number {
        display: block;
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--color-gray-900);
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .coin-label {
        font-size: 0.875rem;
        color: var(--color-gray-500);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .coin-price {
        margin-bottom: 1.5rem;
        padding: 1.25rem 0;
        border-top: 1px solid var(--color-gray-100);
        border-bottom: 1px solid var(--color-gray-100);
    }

    .price-amount {
        display: block;
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--color-primary);
        margin-bottom: 0.25rem;
    }

    .price-per-coin {
        display: block;
        font-size: 0.8125rem;
        color: var(--color-gray-500);
        margin-bottom: 0.5rem;
    }

    .save-tag {
        display: inline-block;
        background: #22c55e;
        color: white;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 0.25rem 0.625rem;
        border-radius: 50px;
        margin-top: 0.5rem;
    }

    .coin-features {
        list-style: none;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .coin-features li {
        font-size: 0.875rem;
        color: var(--color-gray-700);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--color-gray-50);
    }

    .coin-features li:last-child {
        border-bottom: none;
    }

    /* Coin Buttons */
    .coin-btn {
        width: 100%;
        padding: 0.875rem;
        border-radius: 10px;
        font-weight: 700;
        font-size: 0.9375rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .coin-btn {
        background: var(--color-gray-100);
        color: var(--color-gray-700);
    }

    .coin-btn:hover {
        background: var(--color-gray-200);
        transform: translateY(-2px);
    }

    .coin-btn.primary {
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: white;
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    }

    .coin-btn.primary:hover {
        box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
    }

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

    .coin-btn.outline:hover {
        background: var(--color-purple);
        color: white;
    }

    /* ========================================
    PRICING INFO
    ======================================== */

    /* ✅ KODE BARU YANG RAPI */

    /* ========================================
    PRICING INFO - CARA KERJA KOIN
    ======================================== */

    .pricing-info {
        display: grid;
        grid-template-columns: 1fr;              /* ✅ Mobile-first: 1 kolom */
        gap: 1.5rem;                             /* ✅ Gap lebih kecil di mobile */
        margin-bottom: 4rem;
    }

    .info-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid var(--color-gray-100);
        text-align: center;
        transition: all 0.3s ease;               /* ✅ Smooth transition */
        display: flex;                           /* ✅ Flexbox untuk alignment */
        flex-direction: column;                  /* ✅ Vertikal */
        align-items: center;                     /* ✅ Center semua elemen */
    }

    .info-card:hover {
        border-color: var(--color-primary);      /* ✅ Border orange saat hover */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);             /* ✅ Naik sedikit */
    }

    /* Icon dalam card */
    .info-icon {
        font-size: 3.5rem;                       /* ✅ Ukuran lebih proporsional */
        line-height: 1;                          /* ✅ Hapus space ekstra */
        margin-bottom: 1.25rem;                  /* ✅ Spacing konsisten */
        display: block;
    }

    /* Title dalam card */
    .info-card h4 {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.75rem;
        line-height: 1.4;                        /* ✅ Line-height lebih baik */
    }

    /* Description dalam card */
    .info-card p {
        font-size: 0.9375rem;
        color: var(--color-gray-600);
        line-height: 1.7;                        /* ✅ Spacing antar baris */
        margin: 0;                               /* ✅ Hapus margin default */
    }

    /* ========================================
    RESPONSIVE - TABLET
    ======================================== */

    @media (min-width: 640px) {
        .pricing-info {
            grid-template-columns: repeat(2, 1fr);   /* ✅ 2 kolom di tablet */
            gap: 2rem;
        }
    }

    /* ========================================
    RESPONSIVE - DESKTOP
    ======================================== */

    @media (min-width: 1024px) {
        .pricing-info {
            grid-template-columns: repeat(3, 1fr);   /* ✅ 3 kolom di desktop */
            gap: 2rem;
        }
        
        .info-card {
            padding: 2.5rem 2rem;                    /* ✅ Padding lebih besar */
        }
        
        .info-icon {
            font-size: 4rem;                         /* ✅ Icon lebih besar */
            margin-bottom: 1.5rem;
        }
        
        .info-card h4 {
            font-size: 1.25rem;                      /* ✅ Title lebih besar */
            margin-bottom: 1rem;
        }
        
        .info-card p {
            font-size: 1rem;                         /* ✅ Text lebih besar */
        }
    }

    /* ========================================
    RESPONSIVE - MOBILE KECIL
    ======================================== */

    @media (max-width: 480px) {
        .info-card {
            padding: 1.75rem 1.5rem;                 /* ✅ Padding lebih kecil */
        }
        
        .info-icon {
            font-size: 3rem;                         /* ✅ Icon lebih kecil */
            margin-bottom: 1rem;
        }
        
        .info-card h4 {
            font-size: 1rem;
        }
        
        .info-card p {
            font-size: 0.875rem;
        }
    }

    /* ========================================
    FAQ KOIN
    ======================================== */

    .coin-faq {
        text-align: center;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .faq-coin-item {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid var(--color-gray-100);
        text-align: left;
        transition: all 0.3s ease;
    }

    .faq-coin-item:hover {
        border-color: var(--color-primary);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .faq-coin-item h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 0.75rem;
    }

    .faq-coin-item p {
        font-size: 0.875rem;
        color: var(--color-gray-600);
        line-height: 1.6;
    }

    /* ========================================
    RESPONSIVE - MOBILE
    ======================================== */

    

    
        
        .coins-grid {
            grid-template-columns: 1fr;
        }
        
        .coin-card.popular {
            transform: scale(1);
        }
        
        .coin-card.popular:hover {
            transform: translateY(-4px);
        }
        
        .pricing-info {
            grid-template-columns: 1fr;
        }
        
        .faq-grid {
            grid-template-columns: 1fr;
        }


    /* ========================================
    RESPONSIVE - DESKTOP
    ======================================== */

    @media (min-width: 1024px) {
        .coins-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* ============================================
    COIN CARD CUSTOM - INPUT BEBAS
    Sistem: 1 Koin = Rp 500
    ============================================ */

    /* Input jumlah koin */
    .custom-coin-input-wrap {
        margin-bottom: 1rem;
        text-align: left;
    }

    .custom-coin-input-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-gray-500);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .custom-coin-input-row {
        display: flex;
        align-items: center;
        gap: 0;
        background: #f5f3ff;
        border: 1.5px solid #c4b5fd;
        border-radius: 10px;
        padding: 4px 12px 4px 12px;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .custom-coin-input-row:focus-within {
        border-color: var(--color-purple);
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
    }

    .custom-coin-input-row input[type="number"] {
        flex: 1;
        border: none;
        background: transparent;
        font-family: inherit;
        font-size: 2rem;
        font-weight: 800;
        color: var(--color-purple);
        outline: none;
        padding: 0;
        min-width: 0;
        -moz-appearance: textfield;
    }

    .custom-coin-input-row input[type="number"]::-webkit-outer-spin-button,
    .custom-coin-input-row input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .custom-coin-input-row input[type="number"]::placeholder {
        color: #c4b5fd;
    }

    .custom-coin-input-suffix {
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #a78bfa;
        flex-shrink: 0;
    }

    /* Stepper buttons (+10, +20, dll) */
    .custom-coin-stepper {
        display: flex;
        gap: 0.375rem;
        margin-bottom: 1rem;
    }

    .custom-coin-stepper-btn {
        flex: 1;
        padding: 0.375rem 0;
        border: 1.5px solid #c4b5fd;
        background: #f5f3ff;
        color: var(--color-purple);
        border-radius: 6px;
        font-family: inherit;
        font-size: 0.75rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s ease;
    }

    .custom-coin-stepper-btn:hover {
        background: var(--color-purple);
        color: white;
        border-color: var(--color-purple);
    }

    /* Live price display */
    .custom-coin-live-price {
        background: linear-gradient(135deg, #f5f3ff, #ede9fe);
        border-radius: 10px;
        padding: 0.875rem 1rem;
        margin-bottom: 1rem;
        min-height: 62px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .custom-coin-live-label {
        font-size: 0.6875rem;
        font-weight: 700;
        color: #a78bfa;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .custom-coin-live-amount {
        font-size: 1.375rem;
        font-weight: 800;
        color: var(--color-purple);
        transition: transform 0.2s ease;
        line-height: 1.2;
    }

    .custom-coin-live-amount.empty {
        font-size: 0.875rem;
        font-weight: 500;
        color: #c4b5fd;
    }

    .custom-coin-live-note {
        font-size: 0.75rem;
        color: var(--color-gray-400);
    }

    /* Tombol beli custom */
    .coin-btn.custom-buy-btn {
        background: var(--color-purple);
        color: white;
        border: none;
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
    }

    .coin-btn.custom-buy-btn:hover:not(:disabled) {
        background: #6d28d9;
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
        transform: translateY(-2px);
    }

    .coin-btn.custom-buy-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    /* Hover icon pada card custom */
    .coin-card.custom .coin-icon {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    }

    .coin-card.custom:hover {
        border-color: var(--color-purple);
        box-shadow: 0 15px 40px rgba(139, 92, 246, 0.12);
    }

    .coin-card.custom .coin-badge {
        background: rgba(139, 92, 246, 0.1);
        color: var(--color-purple);
    }

    /* ============================================
    TAMBAHKAN KE BAGIAN PALING BAWAH style.css
    Layout membership + custom coin berdampingan
    ============================================ */

    /* ── Wrapper baris atas ─────────────────────── */
    .pricing-top-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
        margin-bottom: 4rem;
    }

    /* ── Sub-header tiap kolom ──────────────────── */
    .custom-coin-section {
        text-align: center;
    }

    .custom-coin-section .section-subtitle-2,
    .membership-section .section-subtitle-2 {
        font-size: 1.375rem;
    }

    /* ── Membership card: tidak pakai max-width lagi ─ */
    .pricing-top-row .membership-card {
        max-width: 100%;
        /* Reset grid 2 kolom dalam card agar kolom tidak terlalu sempit */
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 2rem 1.75rem;
    }

    /* Fitur 1 kolom agar muat */
    .pricing-top-row .membership-features {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    /* ── Coin card: isi penuh kolom ──────────────── */
    .pricing-top-row .coin-card.custom {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .pricing-top-row .custom-coin-live-price {
        flex: 1;
    }

    /* ── Preset pilihan cepat ────────────────────── */
    .coin-quick-presets {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .coin-preset-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.625rem 1rem;
        border: 1.5px solid #c4b5fd;
        background: #f5f3ff;
        color: #6d28d9;
        border-radius: 8px;
        font-family: inherit;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.18s ease;
        width: 100%;
    }

    .coin-preset-btn span {
        font-size: 0.8125rem;
        font-weight: 700;
        color: #8b5cf6;
    }

    .coin-preset-btn:hover,
    .coin-preset-btn.active {
        background: #8b5cf6;
        border-color: #8b5cf6;
        color: white;
    }

    .coin-preset-btn:hover span,
    .coin-preset-btn.active span {
        color: rgba(255,255,255,0.85);
    }

    /* ── RESPONSIVE ──────────────────────────────── */

    /* Tablet — tumpuk ke atas-bawah */
    @media (max-width: 1023px) {
        .pricing-top-row {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .pricing-top-row .membership-card {
            grid-template-columns: auto 1fr;
        }

        .pricing-top-row .membership-features {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile kecil */
    @media (max-width: 640px) {
        .pricing-top-row .membership-card {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .pricing-top-row .membership-card .membership-icon {
            margin: 0 auto;
        }

        .pricing-top-row .membership-features {
            grid-template-columns: 1fr;
        }
    }

    
   

   /* ============================================
   FIX MOBILE - MEMBERSHIP CARD COMPACT
   ============================================ */

@media (max-width: 768px) {
    /* Reset Global */
    * {
        box-sizing: border-box !important;
    }
    
    body {
        overflow-x: hidden !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 2rem 0 !important;
        overflow-x: hidden !important;
    }
    
    .pricing-top-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    /* Membership Section */
    .membership-section {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .section-subtitle-2 {
        font-size: 1.125rem !important;
    }
    
    .section-desc {
        font-size: 0.8125rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    /* Toggle */
    .pricing-toggle {
        gap: 0.625rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .toggle-label {
        font-size: 0.75rem !important;
    }
    
    .save-badge {
        font-size: 0.5625rem !important;
        padding: 0.125rem 0.3125rem !important;
    }
    
    /* === MEMBERSHIP CARD - FIX UTAMA === */
    .membership-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 1rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .membership-card::before {
        display: none !important;
    }
    
    /* Icon */
    .membership-icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .membership-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    /* Text */
    .membership-title {
        font-size: 0.9375rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .membership-subtitle {
        font-size: 0.6875rem !important;
        margin-bottom: 0.875rem !important;
    }
    
    /* Price */
    .membership-price {
        margin-bottom: 1rem !important;
    }
    
    .price-wrapper {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .membership-price .currency {
        font-size: 0.75rem !important;
    }
    
    .membership-price .amount {
        font-size: 1.5rem !important;
    }
    
    .membership-price .period {
        font-size: 0.6875rem !important;
    }
    
    .price-note {
        font-size: 0.5625rem !important;
    }
    
    /* Features - 2 kolom */
    .membership-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4375rem 0.5rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
    }
    
    .membership-features li {
        font-size: 0.6875rem !important;
        gap: 0.375rem !important;
    }
    
    .membership-features li svg {
        width: 13px !important;
        height: 13px !important;
        flex-shrink: 0 !important;
    }
    
    /* Button */
    .membership-btn {
        padding: 0.6875rem 1rem !important;
        font-size: 0.75rem !important;
        gap: 0.375rem !important;
        width: 100% !important;
    }
    
    .membership-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    /* Custom Coin Section */
    .custom-coin-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .coin-card.custom {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* iPhone SE & Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem !important;
    }
    
    .membership-card {
        padding: 0.875rem !important;
    }
    
    .membership-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .membership-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .membership-title {
        font-size: 0.875rem !important;
    }
    
    .membership-price .amount {
        font-size: 1.375rem !important;
    }
    
    .membership-features {
        grid-template-columns: 1fr !important;
    }
    
    .membership-features li {
        font-size: 0.625rem !important;
    }
}
    /* === MEMBERSHIP CARD - FIX UTAMA === */
    .membership-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }
    
    .membership-card::before {
        display: none !important;
    }
    
    /* Icon */
    .membership-icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .membership-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    /* Text */
    .membership-title {
        font-size: 0.9375rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .membership-subtitle {
        font-size: 0.6875rem !important;
        margin-bottom: 0.875rem !important;
    }
    
    /* Price */
    .membership-price {
        margin-bottom: 1rem !important;
    }
    
    .membership-price .currency {
        font-size: 0.75rem !important;
    }
    
    .membership-price .amount {
        font-size: 1.5rem !important;
    }
    
    .membership-price .period {
        font-size: 0.6875rem !important;
    }
    
    .price-note {
        font-size: 0.5625rem !important;
    }
    
    /* Features */
    .membership-features {
        gap: 0.4375rem !important;
        margin-bottom: 1rem !important;
    }
    
    .membership-features li {
        font-size: 0.6875rem !important;
        gap: 0.375rem !important;
    }
    
    .membership-features li svg {
        width: 13px !important;
        height: 13px !important;
    }
    
    /* Button */
    .membership-btn {
        padding: 0.6875rem 1rem !important;
        font-size: 0.75rem !important;
        gap: 0.375rem !important;
    }
    
    .membership-btn svg {
        width: 14px !important;
        height: 14px !important;
    }


/* iPhone SE & Small Devices */
@media (max-width: 375px) {
    .membership-card {
        padding: 0.875rem !important;
    }
    
    .membership-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .membership-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .membership-title {
        font-size: 0.875rem !important;
    }
    
    .membership-price .amount {
        font-size: 1.375rem !important;
    }
    
    .membership-features li {
        font-size: 0.625rem !important;
    }
}
/* ============================================
   FIX: MEMBERSHIP CARD SAMA BESAR DENGAN COIN CARD
   DESKTOP ONLY (≥ 1024px)
   Tempel kode ini di bagian PALING BAWAH style.css
============================================ */

@media (min-width: 1024px) {

    /* Samakan tinggi kedua kolom */
    .pricing-top-row {
        align-items: stretch !important;
    }

    /* Membership section: isi penuh tinggi kolom */
    .pricing-top-row .membership-section {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Membership card: kembangkan isi penuh */
    .pricing-top-row .membership-card {
        flex: 1 !important;
        max-width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* Membership content: distribusikan isi merata */
    .pricing-top-row .membership-card .membership-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    /* Features list: isi sisa ruang */
    .pricing-top-row .membership-features {
        flex: 1 !important;
    }

    /* Coin card: juga stretch */
    .pricing-top-row .custom-coin-section {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    .pricing-top-row .coin-card.custom {
        flex: 1 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Mobile & Tablet (< 1024px): semua tetap normal, tidak ada perubahan */
/* ============================================
   FIX: MEMBERSHIP CARD SAMA BESAR + TEKS BESAR
   + EFEK BORDER ANIMASI
   DESKTOP ONLY (min-width: 1024px)
   Tempel kode ini di bagian PALING BAWAH style.css
============================================ */

/* Animasi border gradient */
@keyframes borderSpin {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@media (min-width: 1024px) {

    /* Samakan tinggi kedua kolom */
    .pricing-top-row {
        align-items: stretch !important;
    }

    /* Membership section: isi penuh kolom */
    .pricing-top-row .membership-section {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Membership card: penuh + border efek */
    .pricing-top-row .membership-card {
        flex: 1 !important;
        max-width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 2.5rem 2.25rem !important;
        position: relative !important;
        border: none !important;
        background: white !important;
        z-index: 0 !important;
        border-radius: 20px !important;
        overflow: visible !important;
        box-shadow: 0 0 30px rgba(249,115,22,0.15), 0 20px 60px rgba(0,0,0,0.08) !important;
        transition: box-shadow 0.4s ease !important;
    }

    .pricing-top-row .membership-card:hover {
        box-shadow: 0 0 50px rgba(249,115,22,0.3), 0 25px 70px rgba(0,0,0,0.12) !important;
    }

    /* Border gradient berputar */
    .pricing-top-row .membership-card::before {
        content: '' !important;
        position: absolute !important;
        inset: -2px !important;
        border-radius: 22px !important;
        background: linear-gradient(270deg, #f97316, #8b5cf6, #3b82f6, #22c55e, #f97316) !important;
        background-size: 300% 300% !important;
        animation: borderSpin 4s ease infinite, borderGlow 4s ease infinite !important;
        z-index: -1 !important;
        -webkit-mask: none !important;
        mask: none !important;
        pointer-events: none !important;
    }

    /* Lapisan putih dalam agar konten tetap bersih */
    .pricing-top-row .membership-card::after {
        content: '' !important;
        position: absolute !important;
        inset: 2px !important;
        border-radius: 18px !important;
        background: white !important;
        z-index: -1 !important;
        pointer-events: none !important;
    }

    /* Membership content: distribusikan isi */
    .pricing-top-row .membership-card .membership-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    /* Icon lebih besar */
    .pricing-top-row .membership-card .membership-icon {
        width: 80px !important;
        height: 80px !important;
        border-radius: 20px !important;
        margin-bottom: 1.75rem !important;
    }

    .pricing-top-row .membership-card .membership-icon svg {
        width: 40px !important;
        height: 40px !important;
    }

    /* Teks membesar */
    .pricing-top-row .membership-card .membership-title {
        font-size: 1.875rem !important;
        margin-bottom: 0.5rem !important;
    }

    .pricing-top-row .membership-card .membership-subtitle {
        font-size: 1.0625rem !important;
        margin-bottom: 1.75rem !important;
    }

    .pricing-top-row .membership-card .membership-price .currency {
        font-size: 1.375rem !important;
    }

    .pricing-top-row .membership-card .membership-price .amount {
        font-size: 3.25rem !important;
    }

    .pricing-top-row .membership-card .membership-price .period {
        font-size: 1.125rem !important;
    }

    .pricing-top-row .membership-card .price-note {
        font-size: 0.9375rem !important;
    }

    /* Features list */
    .pricing-top-row .membership-features {
        flex: 1 !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .pricing-top-row .membership-features li {
        font-size: 1rem !important;
        gap: 0.75rem !important;
    }

    .pricing-top-row .membership-features li svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Tombol lebih besar */
    .pricing-top-row .membership-card .membership-btn {
        padding: 1.125rem 1.5rem !important;
        font-size: 1.0625rem !important;
        border-radius: 14px !important;
        gap: 0.75rem !important;
    }

    /* Coin card: stretch juga */
    .pricing-top-row .custom-coin-section {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    .pricing-top-row .coin-card.custom {
        flex: 1 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Mobile & Tablet (< 1024px): semua tetap normal */
/* ============================================
   FIX: MOBILE NAVBAR OVERLAY
   Tempel di bagian PALING BAWAH style.css
============================================ */

/* Pastikan body tidak scroll saat menu mobile terbuka */
body.menu-open {
    overflow: hidden !important;
}

/* Mobile nav menu: tutup seluruh layar dengan benar */
@media (max-width: 1023px) {

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100dvh !important;           /* support dynamic viewport */
        background: rgba(255, 255, 255, 0.99) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        z-index: 9999 !important;               /* pastikan di atas semua elemen */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        padding: 5rem 2rem 2rem !important;     /* padding atas untuk logo/close */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
        pointer-events: none !important;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    /* Navbar container tetap di atas overlay */
    .navbar {
        z-index: 10000 !important;
    }

    /* Hamburger & logo tetap kelihatan di atas overlay */
    .logo,
    .hamburger {
        position: relative !important;
        z-index: 10001 !important;
    }

    /* Hamburger saat menu aktif: warna gelap agar kontras */
    .hamburger.active {
        background: rgba(249, 115, 22, 0.1) !important;
        border-color: rgba(249, 115, 22, 0.2) !important;
    }

    .hamburger.active span {
        background: var(--color-primary) !important;
    }

    /* Nav links di mobile: ukuran lebih besar & nyaman diklik */
    .nav-menu .nav-link {
        font-size: 1.375rem !important;
        font-weight: 700 !important;
        padding: 0.875rem 2rem !important;
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        border-radius: 12px !important;
        color: var(--color-gray-800) !important;
        transition: background 0.2s ease, color 0.2s ease !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(249, 115, 22, 0.1) !important;
        color: var(--color-primary) !important;
    }

    /* Auth buttons di mobile */
    .mobile-auth {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.875rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-width: 320px !important;
    }

    .btn-login-mobile,
    .btn-signup-mobile {
        width: 100% !important;
        padding: 0.9375rem !important;
        font-size: 0.9375rem !important;
        border-radius: 12px !important;
    }
}
/* ============================================
   FIX: MOBILE NAVBAR — LOGO + OVERLAY + AUTH BUTTONS
   Tempel di bagian PALING BAWAH style.css
============================================ */

/* Kunci scroll saat menu terbuka */
body.menu-open {
    overflow: hidden !important;
}

@media (max-width: 1023px) {

    /* ── Navbar: pastikan layout benar ─────────── */
    .navbar {
        z-index: 10000 !important;
    }

    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        position: relative !important;
    }

    /* ── Logo: kiri, di atas overlay ───────────── */
    .logo {
        position: relative !important;
        z-index: 10001 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        flex-shrink: 0 !important;
        /* Pastikan tidak bergeser saat menu aktif */
        margin: 0 !important;
        left: auto !important;
        transform: none !important;
    }

    /* ── Hamburger: kanan, di atas overlay ─────── */
    .hamburger {
        position: relative !important;
        z-index: 10001 !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    /* Hamburger aktif → oranye */
    .hamburger.active {
        background: rgba(249, 115, 22, 0.1) !important;
        border-color: rgba(249, 115, 22, 0.2) !important;
    }

    .hamburger.active span {
        background: var(--color-primary) !important;
    }

    /* ── Overlay menu: cover full screen ───────── */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100dvh !important;
        background: rgba(255, 255, 255, 0.99) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        /* padding atas lebih besar agar tidak tertutup navbar */
        padding: 6rem 2rem 3rem !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
        pointer-events: none !important;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    /* ── Nav links ──────────────────────────────── */
    .nav-menu .nav-link {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        padding: 0.875rem 2rem !important;
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        border-radius: 12px !important;
        color: var(--color-gray-800) !important;
        transition: background 0.2s ease, color 0.2s ease !important;
        display: block !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(249, 115, 22, 0.1) !important;
        color: var(--color-primary) !important;
    }

    /* ── Divider sebelum tombol auth ────────────── */
    .mobile-auth {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-width: 320px !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid var(--color-gray-100) !important;
    }

    /* ── Tombol Login ───────────────────────────── */
    .btn-login-mobile {
        display: block !important;
        width: 100% !important;
        padding: 0.9375rem 1.5rem !important;
        font-size: 0.9375rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        border-radius: 12px !important;
        color: var(--color-gray-700) !important;
        background: var(--color-white) !important;
        border: 2px solid var(--color-gray-200) !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
    }

    .btn-login-mobile:hover {
        border-color: var(--color-primary) !important;
        color: var(--color-primary) !important;
        background: rgba(249, 115, 22, 0.05) !important;
    }

    /* ── Tombol Sign Up ─────────────────────────── */
    .btn-signup-mobile {
        display: block !important;
        width: 100% !important;
        padding: 0.9375rem 1.5rem !important;
        font-size: 0.9375rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        border-radius: 12px !important;
        color: var(--color-white) !important;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) !important;
        border: none !important;
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35) !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
    }

    .btn-signup-mobile:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45) !important;
    }
}
/* ============================================
   FIX: CONTACT INFO ICON - Background kotak
   Tempel di bagian PALING BAWAH style.css
============================================ */

.contact-info .info-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;        /* ← cegah icon menyusut */
    background: rgba(249, 115, 22, 0.1) !important;
    color: var(--color-primary) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.contact-info .info-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--color-primary) !important;
}

.contact-info .info-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
}

.contact-info .info-label {
    font-size: 0.75rem !important;
    color: var(--color-gray-500) !important;
    margin-bottom: 0.2rem !important;
    display: block !important;
}

.contact-info .info-value {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: var(--color-gray-900) !important;
    display: block !important;
}

/* ============================================
   MOCKUP MOBILE - POSISI BARU
============================================ */

/* Sembunyikan mockup yang lama di desktop */
@media (min-width: 1024px) {
    .hero-visual-mobile {
        display: none !important;
    }
}

/* Tampilkan mockup baru di mobile */
@media (max-width: 1023px) {
    .hero-visual {
        display: none !important; /* sembunyikan yang lama */
    }
    
    .hero-visual-mobile {
        display: block !important;
        margin: 2rem 0 !important; /* spacing atas bawah */
        padding: 0 !important;
    }
    
    .hero-visual-mobile .mockup-container {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}
/* ============================================
   UBAH WARNA CUSTOM COIN CARD - DARI UNGU KE ORANGE
============================================ */

/* Custom Card - Border & Background */
.coin-card.custom {
    border-color: var(--color-primary) !important; /* ← Dari purple ke orange */
    background: white !important; /* ← Orange gradient */
}

/* Icon SVG */
.coin-card.custom .coin-icon svg {
    stroke: var(--color-primary) !important; /* ← Orange */
}

.coin-card.custom .coin-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05)) !important; /* ← Orange */
}

/* Badge */
.coin-card.custom .coin-badge {
    background: rgba(249, 115, 22, 0.1) !important; /* ← Orange */
    color: var(--color-primary) !important;
}

/* Input Row - Background & Border */
.custom-coin-input-row {
    background: #fff7ed !important; /* ← Orange light background */
    border: 1.5px solid rgba(249, 115, 22, 0.3) !important; /* ← Orange border */
}

.custom-coin-input-row:focus-within {
    border-color: var(--color-primary) !important; /* ← Orange focus */
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12) !important; /* ← Orange shadow */
}

/* Input Text Color */
.custom-coin-input-row input[type="number"] {
    color: var(--color-primary) !important; /* ← Orange text */
}

.custom-coin-input-row input[type="number"]::placeholder {
    color: rgba(249, 115, 22, 0.3) !important; /* ← Orange placeholder */
}

.custom-coin-input-suffix {
    color: #ea580c !important; /* ← Orange dark */
}

/* Stepper Buttons */
.custom-coin-stepper-btn {
    border: 1.5px solid rgba(249, 115, 22, 0.3) !important; /* ← Orange border */
    background: #fff7ed !important; /* ← Orange background */
    color: var(--color-primary) !important; /* ← Orange text */
}

.custom-coin-stepper-btn:hover {
    background: var(--color-primary) !important; /* ← Orange hover */
    border-color: var(--color-primary) !important;
    color: white !important;
}

/* Live Price Display */
.custom-coin-live-price {
    background: linear-gradient(135deg, #fff7ed, #ffedd5) !important; /* ← Orange gradient */
}

.custom-coin-live-label {
    color: #ea580c !important; /* ← Orange label */
}

.custom-coin-live-amount {
    color: var(--color-primary) !important; /* ← Orange amount */
}

.custom-coin-live-amount.empty {
    color: rgba(249, 115, 22, 0.3) !important; /* ← Orange empty */
}

/* Buy Button Custom */
.coin-btn.custom-buy-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) !important; /* ← Orange gradient */
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25) !important; /* ← Orange shadow */
}

.coin-btn.custom-buy-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-primary-dark), #c2410c) !important; /* ← Orange dark hover */
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35) !important;
}

/* Hover Effect */
.coin-card.custom:hover {
    border-color: var(--color-primary) !important; /* ← Orange hover */
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.12) !important; /* ← Orange shadow */
}

/* Preset Buttons */
.coin-preset-btn {
    border: 1.5px solid rgba(249, 115, 22, 0.3) !important; /* ← Orange border */
    background: #fff7ed !important; /* ← Orange background */
    color: var(--color-primary-dark) !important; /* ← Orange text */
}

.coin-preset-btn span {
    color: var(--color-primary) !important; /* ← Orange span */
}

.coin-preset-btn:hover,
.coin-preset-btn.active {
    background: var(--color-primary) !important; /* ← Orange hover */
    border-color: var(--color-primary) !important;
    color: white !important;
}

.coin-preset-btn:hover span,
.coin-preset-btn.active span {
    color: rgba(255,255,255,0.85) !important;
}

/* ============================================
   PARTNERS SECTION - LOGO ONLY (NO CARD)
   ============================================ */

.partners {
    padding: 4rem 0;
    background: rgba(249, 115, 22, 0.05);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-max);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
}

/* Partners Title */
.partners-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;                /* HAPUS SEMUA margin default */
    margin-bottom: 12px;      /* jarak kecil ke subheader */
    line-height: 1.25;
}

/* Scrolling Wrapper dengan Fade Effect */
.partners-logos-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* Track yang bergerak */
.partners-logos-track {
    display: flex;
    gap: 4rem; /* Jarak antar logo diperbesar */
    width: max-content;
    animation: scrollLeftContinuous 30s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: antialiased;
}

/* Animasi scroll dari KANAN KE KIRI */
@keyframes scrollLeftContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Logo Card - HANYA UNTUK WRAPPER, TANPA STYLE CARD */
.partner-logo-card {
    flex-shrink: 0;
    width: 200px;  /* Ukuran container logo */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* Hapus background putih */
    border: none; /* Hapus border */
    box-shadow: none; /* Hapus shadow */
    padding: 0;
    transition: transform 0.3s ease;
}

.partner-logo-card:hover {
    transform: scale(1.15); /* Efek zoom saat hover */
}

/* Logo Image - DIPERBESAR DAN LEBIH JELAS */
.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
    /* Tambahan untuk gambar lebih jelas */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.partner-logo-card:hover .partner-logo-img {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE - DESKTOP (≥1024px)
   ======================================== */

@media (min-width: 1024px) {
    .partners {
        padding: 6rem 0;
    }
    
    .partners-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .partners-logos-track {
        gap: 6rem; /* Jarak lebih lebar di desktop */
    }
    
    /* Logo DIPERBESAR untuk desktop */
    .partner-logo-card {
        width: 280px;   /* Lebih besar */
        height: 160px;  /* Lebih besar */
    }
}

/* ========================================
   RESPONSIVE - TABLET (640px - 1023px)
   ======================================== */

@media (min-width: 640px) and (max-width: 1023px) {
    .partners-title {
        font-size: 1.5rem;
    }
    
    .partners-logos-track {
        gap: 3rem;
    }
    
    .partner-logo-card {
        width: 180px;
        height: 100px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (<640px)
   ======================================== */

@media (max-width: 639px) {
    .partners {
        padding: 3rem 0;
    }
    
    .partners-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .partners-logos-track {
        gap: 2rem;
        animation-duration: 20s; /* Lebih cepat di mobile */
    }
    
    /* Logo size untuk mobile */
    .partner-logo-card {
        width: 140px;
        height: 80px;
    }
}

/* ========================================
   MOBILE KECIL (<480px)
   ======================================== */

@media (max-width: 480px) {
    .partners-logos-track {
        gap: 1.5rem;
        animation-duration: 15s;
    }
    
    .partner-logo-card {
        width: 120px;
        height: 70px;
    }
}

/* ========================================
   ACCESSIBILITY - REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .partners-logos-track {
        animation-duration: 60s;
    }
    
    .partner-logo-card {
        transition: none !important;
    }
}
/* ============================================
   PARTNERS SECTION - LOGO ONLY OVERRIDE
   ============================================ */

/* Hapus semua style card dengan !important */
.partner-logo-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Perbesar gambar */
.partner-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
.partners-subtitle {
    margin: 0;                /* HAPUS margin default */
    margin-bottom: 48px;      /* jarak ke logo */
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}
/* ============================================
   FIX: PARTNERS SECTION - KURANGI JARAK HEADER-SUBHEADER
   Tempel kode ini di PALING BAWAH file style.css Anda
   ============================================ */

/* Kurangi jarak antara title dan subtitle */
.partners-title {
    margin-bottom: 12px !important;  /* Jarak ke subtitle - SUDAH PAS */
}

.partners-subtitle {
    margin: 0 !important;
    margin-bottom: 32px !important;  /* Jarak ke logo - DIKURANGI dari 48px */
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE - Sesuaikan untuk Mobile
   ======================================== */

@media (max-width: 768px) {
    .partners-title {
        margin-bottom: 8px !important;  /* Lebih rapat di mobile */
    }
    
    .partners-subtitle {
        margin-bottom: 24px !important;  /* Lebih rapat di mobile */
        font-size: 0.875rem;
    }
}
/* ============================================
   FIX: MENU PRICE RATA KIRI DI MOBILE
   Tempel kode ini di PALING BAWAH file style.css
   ============================================ */

/* Reset alignment untuk menu info di mobile */
.menu-info {
    text-align: left !important;
}

.menu-info h4 {
    text-align: left !important;
}

.menu-price {
    text-align: left !important;
}

.menu-rating {
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Pastikan menu item align left di semua ukuran */
.menu-item {
    text-align: left !important;
}

/* ========================================
   RESPONSIVE - MOBILE SPECIFIC
   ======================================== */

@media (max-width: 1023px) {
    .menu-info {
        text-align: left !important;
        width: 100% !important;
    }
    
    .menu-info h4 {
        text-align: left !important;
        margin-bottom: 0.25rem !important;
    }
    
    .menu-price {
        text-align: left !important;
        display: block !important;
        margin-bottom: 0.25rem !important;
    }
    
    .menu-rating {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        text-align: left !important;
    }
}
/* ============================================
   FIX FINAL - TANPA SHADOW & FIX MOBILE
   Paste CSS ini untuk replace CSS mockup HP yang lama
   ============================================ */

/* Container Mockup HP */
.mockup-hp-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* Gambar Mockup HP - TANPA SHADOW */
.hp-mockup-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    /* SHADOW DIHAPUS! */
    box-shadow: none !important;
    filter: none !important;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

/* Reset floating cards */
.mockup-hp-wrapper .floating-card {
    position: absolute !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25) !important;
    padding: 1.5rem !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    z-index: 10 !important;
}

/* Card Kiri - Peningkatan */
.mockup-hp-wrapper .card-stats {
    left: -60px;
    top: 20%;
    width: 180px;
}

/* Card Kanan - Pesanan */
.mockup-hp-wrapper .card-orders {
    right: -50px;
    bottom: 20%;
    width: 200px;
}

/* Card Icons */
.mockup-hp-wrapper .card-icon,
.mockup-hp-wrapper .card-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mockup-hp-wrapper .card-icon-small {
    width: 44px;
    height: 44px;
}

/* Card Labels */
.mockup-hp-wrapper .card-label,
.mockup-hp-wrapper .card-label-small {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Card Values */
.mockup-hp-wrapper .card-value,
.mockup-hp-wrapper .card-value-small {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}

.mockup-hp-wrapper .card-value-small {
    font-size: 1.75rem;
}

/* Hover Effects */
.mockup-hp-wrapper .floating-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 70px -12px rgba(0, 0, 0, 0.35) !important;
}

/* ============================================
   FIX: MOBILE VIEW - TAMPILKAN MOCKUP HP
   ============================================ */

/* Hero Visual Mobile - Tampilkan di mobile */
.hero-visual-mobile {
    display: block !important; /* Force display */
    width: 100%;
    padding: 2rem 1rem;
}

.hero-visual-mobile .mockup-hp-wrapper {
    max-width: 100%;
    padding: 0;
}

.hero-visual-mobile .hp-mockup-img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block !important; /* Force display */
}

/* Sembunyikan floating cards di mobile */
.hero-visual-mobile .floating-card {
    display: none !important;
}

/* ============================================
   RESPONSIVE - DESKTOP BESAR
   ============================================ */
@media (min-width: 1280px) {
    .mockup-hp-wrapper {
        max-width: 500px;
    }
    
    .hp-mockup-img {
        max-width: 400px;
    }
    
    .mockup-hp-wrapper .card-stats {
        left: -80px;
    }
    
    .mockup-hp-wrapper .card-orders {
        right: -70px;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px - 1279px)
   ============================================ */
@media (min-width: 1024px) and (max-width: 1279px) {
    .mockup-hp-wrapper {
        max-width: 450px;
    }
    
    .hp-mockup-img {
        max-width: 350px;
    }
    
    /* Hero visual mobile disembunyikan di desktop */
    .hero-visual-mobile {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1023px)
   ============================================ */
@media (max-width: 1023px) and (min-width: 768px) {
    /* Desktop hero visual disembunyikan */
    .hero-visual {
        display: none !important;
    }
    
    /* Mobile hero visual ditampilkan */
    .hero-visual-mobile {
        display: block !important;
    }
    
    .mockup-hp-wrapper {
        max-width: 350px;
    }
    
    .hp-mockup-img {
        max-width: 300px;
    }
    
    .mockup-hp-wrapper .card-stats {
        left: -40px;
        width: 160px;
        padding: 1.25rem !important;
    }
    
    .mockup-hp-wrapper .card-orders {
        right: -35px;
        width: 180px;
        padding: 1.25rem !important;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (<768px)
   ============================================ */
@media (max-width: 767px) {
    /* Desktop hero visual disembunyikan */
    .hero-visual {
        display: none !important;
    }
    
    /* Mobile hero visual ditampilkan */
    .hero-visual-mobile {
        display: block !important;
        padding: 1rem;
    }
    
    .mockup-hp-wrapper {
        max-width: 100%;
        padding: 0;
    }
    
    .hp-mockup-img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block !important;
    }
    
    /* Sembunyikan floating cards di mobile */
    .mockup-hp-wrapper .floating-card {
        display: none !important;
    }
}

/* ============================================
   MOBILE KECIL (<480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-visual-mobile {
        padding: 0.5rem;
    }
    
    .hp-mockup-img {
        max-width: 250px;
    }
}

/* ============================================
   FIX: Hapus animasi & styling lama yang konflik
   ============================================ */
.mockup-hp-wrapper .menu-item {
    animation: none !important;
}

.mockup-browser,
.mockup-container,
.menu-list-container {
    display: none !important;
}

/* Override hero-visual order di mobile */
@media (max-width: 1023px) {
    .hero-content {
        order: 2;
    }
    
    .hero-visual-mobile {
        order: 1;
    }
}
/* ============================================
   FIX FINAL: 
   1. Sembunyikan mockup HP kiri di desktop
   2. Dekatkan floating cards ke mockup HP
   PASTE di PALING BAWAH style.css Anda
   ============================================ */

/* ========================================
   FIX 1: SEMBUNYIKAN MOCKUP KIRI DI DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    /* Sembunyikan hero-visual-mobile di desktop */
    .hero-visual-mobile {
        display: none !important;
    }
    
    /* Pastikan hero-visual (yang kanan) tetap tampil */
    .hero-visual {
        display: flex !important;
    }
}

/* ========================================
   FIX 2: DEKATKAN FLOATING CARDS KE MOCKUP HP
   ======================================== */

@media (min-width: 1024px) {
    /* Card Kiri (Peningkatan +340%) - LEBIH DEKAT */
    .mockup-hp-wrapper .card-stats,
    .hero-visual .card-stats {
        left: -30px !important;      /* Dari -60px jadi -30px */
        top: 20% !important;
    }
    
    /* Card Kanan (Pesanan +247) - LEBIH DEKAT */
    .mockup-hp-wrapper .card-orders,
    .hero-visual .card-orders {
        right: -20px !important;     /* Dari -50px jadi -20px */
        bottom: 20% !important;
    }
}

/* ========================================
   DESKTOP BESAR (≥1280px) - LEBIH DEKAT LAGI
   ======================================== */

@media (min-width: 1280px) {
    .mockup-hp-wrapper .card-stats,
    .hero-visual .card-stats {
        left: -40px !important;      /* Dari -80px jadi -40px */
        top: 18% !important;
    }
    
    .mockup-hp-wrapper .card-orders,
    .hero-visual .card-orders {
        right: -30px !important;     /* Dari -70px jadi -30px */
        bottom: 15% !important;
    }
}

/* ========================================
   MOBILE & TABLET - TETAP SEPERTI SEMULA
   ======================================== */

@media (max-width: 1023px) {
    /* Desktop visual disembunyikan */
    .hero-visual {
        display: none !important;
    }
    
    /* Mobile visual ditampilkan */
    .hero-visual-mobile {
        display: block !important;
    }
    
    /* Cards disembunyikan di mobile */
    .floating-card {
        display: none !important;
    }
}