/* ============================================================
   SISA+ — STYLE.CSS
   Berisi seluruh CSS: Landing Page, Web Customer, dan Web Admin
   (digabung dari beberapa blok <style> asli, urutan dipertahankan)
   ============================================================ */



        :root {
            /* Tema Biru Navy Baru */
            --c-primary: #0A192F;       /* Biru Navy Gelap */
            --c-primary-light: #172A45; /* Navy sedikit lebih terang */
            --c-accent: #2563EB;        /* Biru terang untuk tombol/aksen */
            --c-bg-light: #F3F6F9;
            --c-white: #FFFFFF;
            --c-text: #334155;
            --c-text-light: #64748B;
            
            --font-heading: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            min-width: 0; /* prevent flex/grid items from overflowing */
        }

        body {
            font-family: var(--font-body);
            color: var(--c-text);
            background-color: var(--c-white);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100vw;
        }

        #landing-wrapper {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        /* Ensure all sections stack above the fixed texture */
        .navbar, .hero, .slider-section, .case-study-section,
        .stats-section, .features-section, .maggot-section, .cta-section, .footer {
            position: relative;
            z-index: 1;
        }
        /* Navbar harus di atas semua section */
        .navbar { z-index: 100; }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--c-primary);
            line-height: 1.2;
        }

        /* ISOLASI h-tags untuk Landing Page — JANGAN override .hero-title yang sudah putih */
        body.landing-mode h2, body.landing-mode h3, body.landing-mode h4, body.landing-mode h5, body.landing-mode h6 {
            font-family: var(--font-heading) !important;
            line-height: 1.2 !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        /* h2/h3/h4 di luar hero tetap navy */
        body.landing-mode .slider-section h2,
        body.landing-mode .case-study-section h2,
        body.landing-mode .case-study-section h3,
        body.landing-mode .stats-section h2,
        body.landing-mode .features-section h2,
        body.landing-mode .features-section h3,
        body.landing-mode .maggot-section h2,
        body.landing-mode .maggot-section h3,
        body.landing-mode .footer h4 {
            color: var(--c-primary) !important;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

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

        #landing-wrapper .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        /* Tombol CTA di dalam mobile nav — tersembunyi secara default, muncul saat menu aktif */
        .nav-mobile-cta {
            display: none;
        }

        .btn-primary {
            background-color: var(--c-accent);
            color: var(--c-white);
            box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            background-color: #1D4ED8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .btn-outline {
            background-color: rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
            border-color: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
        }

        .btn-outline:hover {
            border-color: #FFFFFF;
            background-color: rgba(255, 255, 255, 0.25);
            color: #FFFFFF;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: all 0.3s ease;
            padding: 1.25rem 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            overflow: visible; /* logo tidak perlu clip lagi */
        }

        .navbar.scrolled {
            padding: 0.75rem 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-sm);
        }

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

        /* Tombol CTA di navbar desktop — ukuran tetap, tidak stretch */
        .nav-cta-desktop {
            flex-shrink: 0;
            width: auto !important;
            min-width: unset !important;
            max-width: fit-content !important;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 2.25rem;
            overflow: visible;
            flex-shrink: 0;
        }

        .brand img {
            height: 120px;
            width: 120px;
            object-fit: contain;
            transition: height 0.3s ease, width 0.3s ease;
        }

        .navbar.scrolled .brand img {
            height: 96px;
            width: 96px;
        }

        .brand-text {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--c-primary);
            letter-spacing: -0.025em;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center
font-family:Roboto Condensed; 
        }

        .nav-link {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            color: var(--c-text-light);
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--c-accent);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--c-accent);
            transition: width 0.3s ease;
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--c-primary);
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding-top: 100px;
            padding-bottom: 100px;
            background-image:
             url('https://i.ibb.co.com/Hf2F07zR/Whats-App-Image-2026-07-06-at-09-39-29-1.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: none;
            border-radius: 0;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 5; /* BUGFIX: di atas hero::before overlay */
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: transparent;
            color: var(--c-accent);
            border-radius: 9999px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* ISOLASI badge untuk Landing Page */
        body.landing-mode .badge {
            display: inline-block !important;
            padding: 0.5rem 1rem !important;
            background-color: transparent !important;
            color: var(--c-accent) !important;
            border-radius: 9999px !important;
            font-family: var(--font-heading) !important;
            font-weight: 700 !important;
            font-size: 0.875rem !important;
            letter-spacing: 0.05em !important;
            margin-bottom: 1.5rem !important;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 0.01em;
            margin-bottom: 1.5rem;
            color: #434043;
            text-transform: uppercase;
        }

        .hero-desc {
            font-size: 1.125rem;
            color: #434043;
            margin-bottom: 2.5rem;
            max-width: 90%;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            position: relative;
            z-index: 5; /* BUGFIX: pastikan tombol hero di atas overlay ::before */
        }
	.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    width: fit-content;
}
.visitor-counter svg {
    flex-shrink: 0;
}

        /* Hero Visual */
        .hero-visual {
            position: relative;
        }

.hero-img-wrapper {
    background: linear-gradient(
        145deg,
        #fdfeff,
        #ffffff
    );
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: calc(var(--radius-lg) - 2px);
    display: block;
}

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

        /* Partner Section — Static Grid Layout */
        .slider-section {
            padding: 8rem 0;
            background-color: var(--c-white);
            border-bottom: 1px solid #F1F5F9;
        }

        .partner-section-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .slider-title {
            font-family: var(--font-heading);
            color: var(--c-primary);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1.25rem;
        }

        .partner-desc {
            font-size: 1.0625rem;
            color: var(--c-text-light);
            line-height: 1.75;
            max-width: 720px;
            margin: 0 auto 3rem;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .partner-card {
            background: var(--c-white);
            border: 1.5px solid #E2E8F0;
            border-radius: var(--radius-xl);
            padding: none !important;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            cursor: default;
        }

        .partner-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
            border-color: var(--c-accent);
        }

        .partner-card-emoji {
            font-size: 2.25rem;
            margin-bottom: 0.875rem;
            display: block;
            line-height: 1;
        }
.partner-item {
    text-align: center;
}

.partner-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.partner-card-label {
    margin-top: 0.75rem;
}
	     .partner-card-label {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9375rem;
            color: var(--c-primary);
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .partner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .slider-title {
                font-size: 1.625rem;
            }
        }

        /* ===== ISOLASI CSS LANDING PAGE - DESKTOP MODE ===== */
        /* Gunakan body.landing-mode untuk mencegah CSS Web Utama bocor ke Landing Page */
        
        @media (min-width: 1024px) {
            /* TABLET & DESKTOP BESAR - ADDITIONAL FIXES */
            body.landing-mode .hero-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 4rem !important;
            }

            body.landing-mode .hero-title {
                font-size: 3.5rem !important;
            }

            body.landing-mode .carousel-container {
                max-width: 75% !important;
            }

            body.landing-mode .biokonversi-grid {
                grid-template-columns: repeat(4, 1fr) !important;
            }

            body.landing-mode .features-grid {
                grid-template-columns: repeat(4, 1fr) !important;
            }

            body.landing-mode .stats-grid {
                grid-template-columns: repeat(4, 1fr) !important;
            }

            body.landing-mode .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr !important;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            /* TABLET FIX - Responsive grid untuk tablet */
            body.landing-mode .hero-grid {
                grid-template-columns: 1fr !important;
                gap: 3rem !important;
            }

            body.landing-mode .hero-title {
                font-size: 3rem !important;
            }

            body.landing-mode .features-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            body.landing-mode .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            body.landing-mode .biokonversi-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            body.landing-mode .footer-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            body.landing-mode .partner-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        
        @media (min-width: 769px) {
            body.landing-mode {
                font-family: var(--font-body, 'Nunito', sans-serif) !important;
                background-color: #FFFFFF !important;
                background-image: radial-gradient(circle, rgba(148,163,184,0.035) 1px, transparent 1px) !important;
                background-size: 28px 28px !important;
                background-attachment: local !important;
                padding-bottom: 0 !important;
                color: #334155 !important;
                font-size: 16px !important;
            }

            /* Reset padding/margin global di Desktop */
            body.landing-mode #landing-wrapper {
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
            }

            /* ===== NAVBAR DESKTOP FIX ===== */
            body.landing-mode .navbar {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                z-index: 100 !important;
                height: auto !important;
                padding: 0rem 0 !important;
                background: rgba(255, 255, 255, 0.8) !important;
                backdrop-filter: blur(12px) !important;
                border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
                box-shadow: none !important;
                margin: 0 !important;
            }

            body.landing-mode .navbar.scrolled {
                padding: 0.75rem 0 !important;
                background: rgba(255, 255, 255, 0.95) !important;
                box-shadow: var(--shadow-sm) !important;
            }

            body.landing-mode .nav-container {
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                gap: 0 !important;
                max-width: 1280px !important;
                margin: 0 auto !important;
                padding: 0 2rem !important;
            }

            /* Tombol CTA navbar — jangan stretch */
            body.landing-mode .nav-cta-desktop {
                flex-shrink: 0 !important;
                width: auto !important;
                min-width: unset !important;
                max-width: fit-content !important;
                display: inline-flex !important;
            }

            body.landing-mode .brand {
                display: flex !important;
                align-items: center !important;
                gap: 2.25rem !important;
                overflow: visible !important;
                flex-shrink: 0 !important;
            }

            body.landing-mode .brand img {
                height: 80px !important;
                width: 80px !important;
                object-fit: contain !important;
                transform: none !important;
                transform-origin: unset !important;
            }

            body.landing-mode .brand-text {
                font-family: var(--font-heading) !important;
                font-weight: 800 !important;
                font-size: 1.5rem !important;
                color: var(--c-primary) !important;
                letter-spacing: -0.025em !important;
            }

            body.landing-mode .nav-links {
                display: flex !important;
                gap: 2.5rem !important;
                align-items: center !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            body.landing-mode .nav-link {
                font-family: var(--font-heading) !important;
                font-weight: 600 !important;
                font-size: 1rem !important;
                color: var(--c-text-light) !important;
                position: relative !important;
            }

            body.landing-mode .nav-link:hover, body.landing-mode .nav-link.active {
                color: var(--c-accent) !important;
            }

            body.landing-mode .mobile-menu-btn {
                display: none !important;
            }

            /* ===== HERO SECTION DESKTOP FIX ===== */
            body.landing-mode .hero {
                padding-top: 100px !important;
                padding-bottom: 160px !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                background-image: 
                   
                    url('https://i.ibb.co.com/Hf2F07zR/Whats-App-Image-2026-07-06-at-09-39-29-1.webp') !important;
                background-size: cover !important;
                background-position: center center !important;
                background-repeat: no-repeat !important;
                background-attachment: scroll !important;
            }

            body.landing-mode .hero-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 4rem !important;
                align-items: center !important;
                position: relative !important;
                z-index: 5 !important;
                max-width: 1280px !important;
                margin: 0 auto !important;
                padding: 0 2rem !important;
            }

            body.landing-mode .hero-title {
                font-size: 3.5rem !important;
                font-weight: 900 !important;
                line-height: 1.1 !important;
                letter-spacing: 0.01em !important;
                margin-bottom: 1.5rem !important;
                color: #434043!important;
                text-transform: uppercase !important;
            }

            body.landing-mode .hero-desc {
                font-size: 1.125rem !important;
                color: #434043 !important;
                margin-bottom: 2.5rem !important;
                max-width: 90% !important;
                line-height: 1.6 !important;
            }

            body.landing-mode .hero-actions {
                display: flex !important;
                gap: 1rem !important;
                position: relative !important;
                z-index: 5 !important;
            }

            body.landing-mode .hero-visual {
                position: relative !important;
            }

            body.landing-mode .hero-img-wrapper {
                background: linear-gradient(
                    145deg,
                    #fdfeff,
                    #ffffff
                ) !important;
                border-radius: var(--radius-xl) !important;
                padding: 0.5rem !important;
                box-shadow: var(--shadow-lg) !important;
                position: relative !important;
                z-index: 10 !important;
                border: 1px solid rgba(255, 255, 255, 0.25) !important;
            }

            body.landing-mode .hero-img-wrapper img {
                width: 100% !important;
                height: auto !important;
                max-height: 380px !important;
                object-fit: cover !important;
                object-position: center !important;
                border-radius: calc(var(--radius-lg) - 2px) !important;
                display: block !important;
            }

            /* ===== BUTTONS DESKTOP FIX ===== */
            body.landing-mode .btn {
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                padding: 0.875rem 1.75rem !important;
                font-family: var(--font-heading) !important;
                font-weight: 600 !important;
                font-size: 1rem !important;
                border-radius: 9999px !important;
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                border: 2px solid transparent !important;
            }

            body.landing-mode .btn-primary {
                background-color: var(--c-accent) !important;
                color: var(--c-white) !important;
                box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3) !important;
            }

            body.landing-mode .btn-primary:hover {
                background-color: #1D4ED8 !important;
                transform: translateY(-2px) !important;
                box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
            }

            body.landing-mode .btn-outline {
                background-color: rgba(255, 255, 255, 0.15) !important;
                color: #434043 !important;
                border-color: #9c9c9c !important;
            }

            body.landing-mode .btn-outline:hover {
                border-color: #FFFFFF !important;
                background-color: rgba(255, 255, 255, 0.25) !important;
                color: #FFFFFF !important;
            }

            /* ===== GRID SECTIONS DESKTOP FIX ===== */
            body.landing-mode .slider-section,
            body.landing-mode .case-study-section,
            body.landing-mode .stats-section,
            body.landing-mode .features-section,
            body.landing-mode .maggot-section,
            body.landing-mode .cta-section,
            body.landing-mode .footer {
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
            }

            body.landing-mode .container {
                width: 100% !important;
                max-width: 1280px !important;
                margin: 0 auto !important;
                padding: 0 2rem !important;
            }

            /* ===== PARTNER GRID DESKTOP ===== */
            body.landing-mode .partner-grid {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 1.5rem !important;
            }

        body.landing-mode .partner-card {
    background: var(--c-white) !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: var(--radius-xl) !important;
    padding: 0 !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    text-align: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    cursor: default !important;
}

            /* ===== FEATURES GRID DESKTOP ===== */
            body.landing-mode .features-grid {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 2rem !important;
            }

            body.landing-mode .stats-grid {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 2rem !important;
            }

            body.landing-mode .biokonversi-grid {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 2rem !important;
                margin-top: 3rem !important;
            }

            /* ===== FOOTER DESKTOP ===== */
            body.landing-mode .footer-grid {
                display: grid !important;
                grid-template-columns: 2fr 1fr 1fr 1fr !important;
                gap: 4rem !important;
                margin-bottom: 4rem !important;
            }

            /* ===== SECTIONS PADDING DESKTOP ===== */
            body.landing-mode .slider-section {
                padding: 8rem 0 !important;
                background-color: var(--c-white) !important;
                border-bottom: 1px solid #F1F5F9 !important;
            }

            body.landing-mode .case-study-section {
                padding: 8rem 0 !important;
                background-color: var(--c-bg-light) !important;
            }

            body.landing-mode .stats-section {
                padding: 8rem 0 !important;
                background-color: var(--c-white) !important;
            }

            body.landing-mode .features-section {
                padding: 8rem 0 !important;
                background-color: var(--c-white) !important;
            }

            body.landing-mode .maggot-section {
                padding: 8rem 0 !important;
                background-color: var(--c-bg-light) !important;
            }

            body.landing-mode .cta-section {
                padding: 8rem 0 !important;
                background: var(--c-primary) !important;
                position: relative !important;
                overflow: hidden !important;
                text-align: center !important;
            }

            body.landing-mode .cta-content {
                position: relative !important;
                z-index: 10 !important;
                max-width: 800px !important;
                margin: 0 auto !important;
                padding: 0 2rem !important;
            }

            body.landing-mode .cta-content h2 {
                color: var(--c-white) !important;
                font-size: 3rem !important;
                margin-bottom: 1.5rem !important;
            }

            body.landing-mode .cta-content p {
                color: rgba(255,255,255,0.8) !important;
                font-size: 1.25rem !important;
                margin-bottom: 2.5rem !important;
            }

            /* ===== FOOTER DESKTOP ===== */
            body.landing-mode .footer {
                background-color: #050C17 !important;
                padding: 6rem 0 2rem !important;
                color: rgba(255,255,255,0.7) !important;
            }

            /* ===== RESPONSIVE OVERRIDES UNTUK DESKTOP ===== */
            body.landing-mode .carousel-wrapper {
                flex-direction: column !important;
                align-items: center !important;
            }

            body.landing-mode .carousel-controls {
                display: flex !important;
                flex-direction: row !important;
                gap: 1rem !important;
                justify-content: center !important;
                order: 2 !important;
                width: 100% !important;
                margin-top: 1.5rem !important;
            }

            body.landing-mode .carousel-container {
                flex: unset !important;
                order: 1 !important;
                width: 100% !important;
                max-width: 75% !important;
                margin: 0 auto !important;
            }

            body.landing-mode .cs-content {
                width: 70% !important;
            }

            /* ===== SECTION TITLES & TEXT DESKTOP ===== */
            body.landing-mode .section-header {
                text-align: center !important;
                max-width: 700px !important;
                margin: 0 auto 3rem !important;
            }

            body.landing-mode .section-title {
                font-size: 2.5rem !important;
                margin-bottom: 1rem !important;
                letter-spacing: -0.02em !important;
                color: var(--c-primary) !important;
                font-family: var(--font-heading) !important;
                font-weight: 800 !important;
            }

            body.landing-mode .section-subtitle {
                font-size: 1.125rem !important;
                color: var(--c-text-light) !important;
                font-weight: 400 !important;
            }

            body.landing-mode .slider-title {
                font-family: var(--font-heading) !important;
                color: var(--c-primary) !important;
                font-size: 2rem !important;
                font-weight: 800 !important;
                letter-spacing: -0.02em !important;
                margin-bottom: 1.25rem !important;
            }

            body.landing-mode .partner-desc {
                font-size: 1.0625rem !important;
                color: var(--c-text-light) !important;
                line-height: 1.75 !important;
                max-width: 720px !important;
                margin: 0 auto 3rem !important;
            }

            /* ===== FEATURE CARDS DESKTOP ===== */
            body.landing-mode .feature-card {
                background: var(--c-white) !important;
                border: 1px solid #E2E8F0 !important;
                border-radius: var(--radius-xl) !important;
                padding: 2.5rem 2rem !important;
                transition: all 0.3s ease !important;
                position: relative !important;
                overflow: hidden !important;
                z-index: 1 !important;
            }

            body.landing-mode .feature-title {
                font-size: 1.5rem !important;
                margin-bottom: 1rem !important;
                color: var(--c-primary) !important;
                font-family: var(--font-heading) !important;
                font-weight: 700 !important;
            }

            body.landing-mode .feature-desc {
                color: var(--c-text-light) !important;
                font-size: 1rem !important;
                line-height: 1.6 !important;
            }

            /* ===== STAT CARDS DESKTOP ===== */
            body.landing-mode .stat-card {
                background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
                padding: 2.5rem 2rem !important;
                border-radius: var(--radius-xl) !important;
                text-align: center !important;
                box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35), 0 2px 8px rgba(37, 99, 235, 0.2) !important;
                transition: transform 0.3s ease, box-shadow 0.3s ease !important;
                border: 1px solid rgba(255,255,255,0.15) !important;
            }

            body.landing-mode .stat-num {
                font-family: var(--font-heading) !important;
                font-size: 3rem !important;
                font-weight: 800 !important;
                color: var(--c-white) !important;
                line-height: 1 !important;
                margin-bottom: 0.5rem !important;
            }

            body.landing-mode .stat-text {
                color: rgba(255,255,255,0.7) !important;
                font-weight: 600 !important;
                font-size: 1rem !important;
            }

            /* ===== BIOKONVERSI CARDS DESKTOP ===== */
            body.landing-mode .biokonversi-card {
                background: var(--c-white) !important;
                border: 1.5px solid #E2E8F0 !important;
                border-radius: var(--radius-xl) !important;
                padding: 2.5rem 2rem !important;
                text-align: center !important;
                transition: all 0.3s ease !important;
                position: relative !important;
            }

            body.landing-mode .biokonversi-step-number {
                font-family: var(--font-heading) !important;
                font-size: 3rem !important;
                font-weight: 800 !important;
                color: var(--c-accent) !important;
                margin-bottom: 1rem !important;
                line-height: 1 !important;
            }

            body.landing-mode .biokonversi-step-title {
                font-family: var(--font-heading) !important;
                font-size: 1.25rem !important;
                font-weight: 700 !important;
                color: var(--c-primary) !important;
                margin-bottom: 1rem !important;
            }

            body.landing-mode .biokonversi-step-desc {
                font-size: 0.95rem !important;
                color: var(--c-text-light) !important;
                line-height: 1.6 !important;
            }

            body.landing-mode .biokonversi-connector {
                position: absolute !important;
                top: 50% !important;
                right: -2rem !important;
                width: 2rem !important;
                height: 2px !important;
                border-top: 2px dashed var(--c-accent) !important;
                display: none !important;
            }

            body.landing-mode .biokonversi-card:not(:last-child) .biokonversi-connector {
                display: block !important;
            }

            /* ===== CASE STUDY CAROUSEL DESKTOP ===== */
            body.landing-mode .carousel-container {
                max-width: 75% !important;
                margin: 0 auto !important;
            }

            body.landing-mode .cs-card {
                background-color: transparent !important;
                border-radius: var(--radius-xl) !important;
                flex: 0 0 100% !important;
                min-width: 100% !important;
            }

            body.landing-mode .cs-img-wrapper {
                width: 100% !important;
                height: 500px !important;
                border-radius: var(--radius-xl) !important;
                overflow: hidden !important;
                position: relative !important;
                z-index: 1 !important;
            }

            body.landing-mode .cs-content {
                background: var(--c-white) !important;
                padding: 2rem !important;
                border-radius: var(--radius-lg) !important;
                width: 85% !important;
                min-height: 200px !important;
                margin: -40px auto 0 !important;
                position: relative !important;
                z-index: 2 !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
                display: flex !important;
                flex-direction: column !important;
            }

            body.landing-mode .cs-title {
                font-size: 1.5rem !important;
                margin-bottom: 1rem !important;
                color: var(--c-primary) !important;
                font-family: var(--font-heading) !important;
                font-weight: 700 !important;
            }

            body.landing-mode .cs-desc {
                color: var(--c-text-light) !important;
                font-size: 0.95rem !important;
                margin-bottom: 1.5rem !important;
                line-height: 1.6 !important;
            }

            body.landing-mode .carousel-btn {
                width: 50px !important;
                height: 50px !important;
                border-radius: 50% !important;
                border: 2px solid var(--c-accent) !important;
                background: var(--c-white) !important;
                color: var(--c-accent) !important;
                font-size: 1.5rem !important;
                cursor: pointer !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                transition: all 0.3s ease !important;
                flex-shrink: 0 !important;
            }
        }

        /* Aksi Nyata (Case Studies) Section */
        .case-study-section {
            padding: 8rem 0;
            background-color: var(--c-bg-light);
        }

        /* Carousel Styles */
        .carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .carousel-container {
            flex: 1;
            overflow: hidden;
            border-radius: var(--radius-xl);
            /* Desktop: limit width for premium look */
        }

        .case-study-grid {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        /* Desktop carousel narrowing */
        @media (min-width: 769px) {
            .carousel-container {
                max-width: 75%;
                margin: 0 auto;
            }

            .cs-img-wrapper {
                width: 100%;
                margin: 0 auto;
            }

            .cs-content {
                width: 70%;
            }
        }

        .cs-card {
            background-color: transparent;
            border-radius: var(--radius-xl);
            flex: 0 0 100%;
            min-width: 100%;
            /* Prevent hover from affecting carousel translation */
        }

        /* Separate hover from carousel transform */
        .cs-card-inner {
            transition: transform 0.3s ease;
        }

        .cs-card:hover .cs-card-inner {
            transform: translateY(-8px);
        }

        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--c-accent);
            background: var(--c-white);
            color: var(--c-accent);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .carousel-btn:hover {
            background: var(--c-accent);
            color: var(--c-white);
            transform: scale(1.1);
        }

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

        .carousel-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-btn.disabled:hover {
            background: var(--c-white);
            color: var(--c-accent);
            transform: scale(1);
        }

        /* Carousel Indicators */
        .carousel-indicators {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #CBD5E1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: var(--c-accent);
            width: 30px;
            border-radius: 5px;
        }

        /* Desktop: Tombol di BAWAH card, horizontal center */
        @media (min-width: 769px) {
            .carousel-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .carousel-controls {
                display: flex;
                flex-direction: row;
                gap: 1rem;
                justify-content: center;
                order: 2;
                width: 100%;
                margin-top: 1.5rem;
            }
            
            .carousel-container {
                flex: unset;
                order: 1;
                width: 100%;
            }
        }

        .cs-img-wrapper {
            width: 100%;
            height: 280px;
            border-radius: var(--radius-xl);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .cs-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .cs-card:hover .cs-img-wrapper img {
            transform: scale(1.05);
        }

        .cs-content {
            background: var(--c-white);
            padding: 2rem;
            border-radius: var(--radius-lg);
            width: 85%;
            min-height: 200px;
            margin: -40px auto 0;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
        }

        .cs-label {
            font-size: 0.75rem;
            color: var(--c-text-light);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .cs-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--c-primary);
        }

        .cs-desc {
            color: var(--c-text-light);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .cs-date {
            display: inline-flex;
            align-items: center;
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--c-accent);
            font-size: 1rem;
        }

        .cs-date::before {
            content: '';
            margin-right: 0px;
        }

        /* Stats Section */
        .stats-section {
            padding: 8rem 0;
            background-color: var(--c-white);
        }

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

        .stat-card {
            background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-xl);
            text-align: center;
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35), 0 2px 8px rgba(37, 99, 235, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 48px rgba(37, 99, 235, 0.45), 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .stat-num {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--c-white);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-text {
            color: rgba(255,255,255,0.7);
            font-weight: 600;
            font-size: 1rem;
        }

        /* Features Section */
        .features-section {
            padding: 8rem 0;
            background-color: var(--c-white);
        }

        /* Biokonversi Maggot Section */
        .maggot-section {
            padding: 8rem 0;
            background-color: var(--c-bg-light);
        }

        .biokonversi-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .biokonversi-card {
            background: var(--c-white);
            border: 1.5px solid #E2E8F0;
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .biokonversi-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
            border-color: var(--c-accent);
        }

        .biokonversi-step-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: var(--c-accent);
            margin-bottom: 1rem;
            line-height: 1;
        }

        .biokonversi-step-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--c-primary);
            margin-bottom: 1rem;
        }

        .biokonversi-step-desc {
            font-size: 0.95rem;
            color: var(--c-text-light);
            line-height: 1.6;
        }

        .biokonversi-connector {
            position: absolute;
            top: 50%;
            right: -2rem;
            width: 2rem;
            height: 2px;
            border-top: 2px dashed var(--c-accent);
            display: none;
        }

        @media (min-width: 769px) {
            .biokonversi-card:not(:last-child) .biokonversi-connector {
                display: block;
            }
        }

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

        @media (max-width: 768px) {
            .biokonversi-grid {
                grid-template-columns: 1fr;
            }
        }

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

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--c-text-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--c-white);
            border: 1px solid #E2E8F0;
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, var(--c-bg-light) 0%, rgba(255,255,255,0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-card:hover {
            border-color: var(--c-accent);
            box-shadow: var(--shadow-xl);
            transform: translateY(-10px);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon-wrapper {
            width: 56px;
            height: 56px;
            background: var(--c-bg-light);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--c-accent);
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon-wrapper {
            background: var(--c-accent);
            color: var(--c-white);
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-desc {
            color: var(--c-text-light);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: var(--c-primary);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: var(--c-white);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .btn-large {
            padding: 1.25rem 2.5rem;
            font-size: 1.125rem;
            background: var(--c-white);
            color: var(--c-primary);
            border-radius: 9999px;
            font-family: var(--font-heading);
            font-weight: 700;
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-large:hover {
            background: var(--c-bg-light);
            color: var(--c-accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,255,255,0.2);
        }

        /* Footer */
        .footer {
            background-color: #050C17;
            padding: 6rem 0 2rem;
            color: rgba(255,255,255,0.7);
        }

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

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .footer-brand img {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            border-radius: 8px;
        }

        .footer-brand .brand-text {
            color: var(--c-white);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .footer-title {
            color: var(--c-white);
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
        }

       /* Animations - dinonaktifkan */
.fade-up {
    opacity: 1;
    transform: none;
}

        /* Responsive Fixes */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
            .hero-title { font-size: 3rem; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cs-card {
                min-width: calc(50% - 1.25rem);
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 1.25rem;
            }
        }

        /* ISOLASI: Responsive fixes untuk Landing Page di tablet */
        @media (max-width: 1024px) {
            body.landing-mode .hero-grid { 
                grid-template-columns: 1fr !important; 
                gap: 3rem !important; 
            }
            body.landing-mode .hero-title { 
                font-size: 3rem !important; 
            }
            body.landing-mode .features-grid { 
                grid-template-columns: repeat(2, 1fr) !important; 
            }
            body.landing-mode .stats-grid { 
                grid-template-columns: repeat(2, 1fr) !important; 
            }
            body.landing-mode .footer-grid { 
                grid-template-columns: repeat(2, 1fr) !important; 
            }
            body.landing-mode .partner-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            body.landing-mode .biokonversi-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 768px) {

            /* ============================================
               GLOBAL MOBILE OVERFLOW PROTECTION
               ============================================ */
            html, body {
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
            }
            #landing-wrapper,
            #landing-wrapper * {
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            /* ============================================
               NAVBAR MOBILE
               ============================================ */
            .float-card { display: none !important; }
            .nav-links, .nav-cta-desktop { display: none !important; }
            .mobile-menu-btn { display: block !important; }
            .nav-links { pointer-events: none; }

            /* Logo mobile — ukuran proporsional, tidak pakai scale() */
            .brand {
                gap: 0.75rem !important;
                overflow: visible !important;
            }
            .brand img {
                height: 64px !important;
                width: 64px !important;
                transform: none !important;       /* hapus scale(3) penyebab overflow */
                transform-origin: unset !important;
                object-fit: contain !important;
                flex-shrink: 0 !important;
            }
            .navbar.scrolled .brand img {
                height: 52px !important;
                width: 52px !important;
                transform: none !important;
            }
            .brand-text {
                font-size: 1.1rem !important;
            }

            /* Mobile menu dropdown */
            .nav-links.active {
                display: flex !important;
                flex-direction: column !important;
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                width: 100% !important;
                background: var(--c-white) !important;
                padding: 1.5rem !important;
                box-shadow: var(--shadow-md) !important;
                gap: 1.25rem !important;
                z-index: 60 !important;
                pointer-events: auto !important;
            }
            .nav-mobile-cta { display: none; }
            .nav-links.active .nav-mobile-cta {
                display: flex !important;
                width: 100% !important;
            }
            .nav-links.active .nav-mobile-cta a {
                width: 100% !important;
            }

            /* ============================================
               HERO SECTION MOBILE
               ============================================ */
            .hero {
                padding-top: 100px !important;
                padding-bottom: 50px !important;
                background-position: center center !important;
                background-attachment: scroll !important; /* fixed tidak support mobile */
                width: 100% !important;
                overflow: hidden !important;
            }
/* Overlay tipis, konsisten dengan desktop */
.hero:before {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 100%
    ) !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
}
            /* Single column, no right gap */
            .hero-grid {
                display: block !important;
                width: 100% !important;
                padding: 0 1.25rem !important;
                margin: 0 !important;
            }
            /* Sembunyikan gambar kanan — penyebab ruang putih */
            .hero-visual { display: none !important; }

            .hero-title {
                font-size: 1.9rem !important;
                letter-spacing: 0.01em !important;
                line-height: 1.15 !important;
                color: #434043 !important;
            }
            .hero-desc {
                font-size: 1rem !important;
                max-width: 100% !important;
                color: #434043 !important;
            }
            .hero-actions {
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 0.75rem !important;
                width: 100% !important;
            }
            .hero-actions .btn {
                width: 100% !important;
                text-align: center !important;
                white-space: normal !important;
                font-size: 0.9rem !important;
                padding: 0.9rem 1rem !important;
            }
            .hero-actions .btn-outline {
                background-color: rgba(255,255,255,0.18) !important;
                border-color: rgba(255,255,255,0.9) !important;
                color: #FFFFFF !important;
                font-weight: 700 !important;
            }

            /* ============================================
               PARTNER / FOKUS UMKM SECTION
               ============================================ */
            .slider-section {
                padding: 3rem 0 !important;
            }
            .partner-section-inner {
                max-width: 100% !important;
                padding: 0 !important;
            }
            .slider-title {
                font-size: 1.4rem !important;
                padding: 0 1rem !important;
            }
            .partner-desc {
                font-size: 0.9375rem !important;
                padding: 0 1rem !important;
                max-width: 100% !important;
            }
            .partner-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 0.75rem !important;
                padding: 0 1rem !important;
            }
            .partner-card {
                padding: 0!important;
                width: 100% !important;
            }

            /* ============================================
               CASE STUDY / AKSI NYATA CAROUSEL
               ============================================ */
            .case-study-section {
                padding: 3rem 0 !important;
            }
            .carousel-wrapper {
                flex-direction: column !important;
                gap: 1rem !important;
                width: 100% !important;
                overflow: hidden !important;
            }
            .carousel-container {
                width: 100% !important;
                max-width: 100% !important;
                order: 1 !important;
                overflow: hidden !important;
            }
            .case-study-grid {
                width: 100% !important;
            }
            .cs-card {
                min-width: 100% !important;
                width: 100% !important;
            }
            .cs-img-wrapper {
                height: 200px !important;
                width: 100% !important;
            }
            .cs-content {
                width: 92% !important;
                padding: 1.25rem !important;
                min-height: unset !important;
            }
            .cs-title {
                font-size: 1.15rem !important;
            }
            .carousel-controls {
                display: flex !important;
                flex-direction: row !important;
                gap: 0.75rem !important;
                justify-content: center !important;
                order: 2 !important;
                width: 100% !important;
                margin-top: 1rem !important;
            }
            .carousel-btn {
                width: 40px !important;
                height: 40px !important;
                font-size: 1rem !important;
                flex-shrink: 0 !important;
            }
            .carousel-indicators { order: 3 !important; }

            /* ============================================
               BIOKONVERSI / MAGGOT SECTION
               ============================================ */
            .maggot-section {
                padding: 3rem 0 !important;
            }
            .biokonversi-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
                margin-top: 1.5rem !important;
            }
            .biokonversi-card {
                padding: 1.5rem !important;
                width: 100% !important;
            }
            .biokonversi-connector { display: none !important; }

            /* ============================================
               STATS SECTION
               ============================================ */
            .stats-section {
                padding: 3rem 0 !important;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 1rem !important;
            }
            .stat-card {
                padding: 1.5rem 1rem !important;
                width: 100% !important;
            }
            .stat-num {
                font-size: 2rem !important;
            }

            /* ============================================
               FEATURES SECTION
               ============================================ */
            .features-section {
                padding: 3rem 0 !important;
            }
            .features-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }
            .feature-card {
                padding: 1.5rem !important;
                width: 100% !important;
            }

            /* ============================================
               CTA SECTION
               ============================================ */
            .cta-section {
                padding: 3.5rem 0 !important;
            }
            .cta-content h2 {
                font-size: 1.75rem !important;
            }
            .cta-content p {
                font-size: 1rem !important;
            }
            .btn-large {
                width: 100% !important;
                font-size: 1rem !important;
                padding: 1rem !important;
            }

            /* ============================================
               SECTION HEADERS (universal)
               ============================================ */
            .section-title {
                font-size: 1.6rem !important;
            }
            .section-subtitle {
                font-size: 0.9375rem !important;
            }
            .section-header {
                padding: 0 0.5rem !important;
                margin-bottom: 1.5rem !important;
            }

            /* ============================================
               FOOTER MOBILE
               ============================================ */
            .footer {
                padding: 3rem 0 1.5rem !important;
            }
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
                margin-bottom: 2rem !important;
            }
            .footer-brand img {
                width: 40px !important;
                height: 40px !important;
            }
            .footer-bottom {
                flex-direction: column !important;
                gap: 0.5rem !important;
                text-align: center !important;
                font-size: 0.8rem !important;
            }

            /* ============================================
               CONTAINER PADDING MOBILE
               ============================================ */
            #landing-wrapper .container {
                padding: 0 1rem !important;
            }

        } /* end @media (max-width: 768px) */
    
    

/* ===== next block ===== */


        /* Critical inline CSS untuk instant render */
        *{margin:0;padding:0;box-sizing:border-box}
        body{font-family:-apple-system,BlinkMacSystemFont,sans-serif;background:#0d1b2a;padding-bottom:90px;overflow-x:hidden;width:100%}
        
        /* ISOLASI: Jangan tambah padding-bottom untuk body.landing-mode */
        body.landing-mode { padding-bottom: 0 !important; }
        
        #app-wrapper .container{width:100%;max-width:100%;margin:0 auto;padding:0 20px 20px;position:relative;z-index:1}
        
        /* Simple glass tanpa backdrop-filter yang berat */
        .glass{background:rgba(255,255,255,0.97);border:1px solid rgba(255,255,255,0.12);border-radius:20px;box-shadow:0 4px 24px rgba(0,0,0,0.4)}
        
        /* Animasi GPU-accelerated only */
@keyframes fadeInScale{
    from { 
        opacity: 0;
        transform: scale(0.98);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp{
    from { 
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }
    to { 
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
        @keyframes navDotIn{from{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}
        @keyframes navItemIn{from{transform:translateY(0)}to{transform:translateY(-3px)}}
        
.fade-in {
    animation: fadeIn 0.25s ease-out forwards;
    will-change: opacity;
}

.fade-up {
    animation: fadeUp 0.3s ease-out forwards;
    opacity: 0;
    will-change: opacity, transform;
}

.fade-scale {
    animation: fadeInScale 0.3s ease-out forwards;
    opacity: 0;
    will-change: opacity, transform;
}
        
        /* Page visibility system */
        .page-section{display:none}
        .page-section.active{display:block;padding-top:4px;}

        /* ============ LOGIN LAYER STYLES ============ */
        #login-layer {
    position: fixed; inset: 0; z-index: 100;
    display: flex; 
    justify-content: center; 
    align-items: flex-start; 
    padding-top: 8vh;
    padding-bottom: 8vh;
    background: #e5e7eb; /* abu-abu polos */
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
        @keyframes loginBgShift {
            0%   { opacity: 0.85; }
            100% { opacity: 1; }
        }

        /* Pastikan card login di atas pseudo-element */
        .login-card-intro { position: relative; z-index: 1; }

        .login-card-intro {
            background: #ffffff;
            width: 92%;
            max-width: 420px; 
            padding: 28px 22px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            animation: slideUp 0.5s ease-out forwards;
            max-height: calc(100vh - 48px); /* keep some space top/bottom */
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }

        .logo-main { 
            width: 160px; 
            height: auto;
            aspect-ratio: 16/9;
            margin-bottom: 30px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Wider screens: center vertically */
        @media (min-width: 900px) {
            #login-layer { align-items: center; }
            .login-card-intro { padding: 36px 30px; border-radius: 24px; }
        }

        /* Small screens: reduce paddings to keep content visible */
        @media (max-width: 420px) {
            .login-card-intro { width: 94%; padding: 18px 14px; max-width: 380px; }
            #login-layer { padding-top: 4vh; padding-bottom: 4vh; }
            #login-layer button not(.auth-eye-btn) { padding: 12px; font-size: 15px; }
            #login-layer input { padding: 12px; font-size: 15px; }
        }

        .login-field {
            text-align: left;
            margin-bottom: 16px;
        }

        .login-field label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 8px;
            padding-left: 4px;
        }

        #login-layer input {
            width: 100%; 
            padding: 15px; 
            border: 1px solid #e2e8f0; 
            border-radius: 14px;
            background: #f8fafc; 
            font-size: 16px; 
            outline: none;
            transition: all 0.2s;
        }

        #login-layer input:focus {
            border-color: #4A90E2;
            background: #ffffff;
        }

        #login-layer button:not(.auth-eye-btn) {
            width: 100%; 
            padding: 16px; 
            background: #2563EB;
            color: #fff; 
            border: none; 
            border-radius: 14px;
            font-weight: 700; 
            font-size: 16px; 
            cursor: pointer;
            margin-top: 8px;
            transition: background 0.2s;
        }

       #login-layer button:not(.auth-eye-btn):hover {
            background: #1d4ed8;
        }

        /* Tombol ganti akun — tampil transparan, link style */
        .btn-ganti-akun {
            background: transparent !important;
            color: #94a3b8 !important;
            border: none !important;
            font-size: 12px !important;
            width: auto !important;
            margin: 8px auto 0 !important;
            padding: 6px 12px !important;
            display: block !important;
            text-decoration: underline !important;
            font-weight: 500 !important;
            cursor: pointer !important;
            border-radius: 6px !important;
            transition: color 0.2s !important;
        }

        .btn-ganti-akun:hover {
            color: #64748b !important;
            background: transparent !important;
        }

        /* ============ ANIMASI DAUN ============ */
               /* VIEW SWITCHER */
        .main-view {
            display: none;s
        }
        .main-view.active {
            display: block;
        }

        /* ============ ANIMASI SUKSES (UNTUK PESAN SEKARANG) ============ */
        @keyframes checkmark {
            0% { transform: scale(0) rotate(45deg); opacity: 0; }
            50% { transform: scale(1.2) rotate(45deg); opacity: 1; }
            100% { transform: scale(1) rotate(45deg); opacity: 1; }
        }

        .success-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(3px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .success-overlay.active {
            display: flex;
            animation: fadeIn 0.2s ease-out;
        }

        .success-popup {
            position: relative;
            width: 340px;
            max-width: 92vw;
            min-height: 430px;
            background: #ffffff;
            border-radius: 26px;
            padding: 80px 26px 40px 26px;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0,0,0,0.28);
            display: flex;
            flex-direction: column;
            animation: slideUp 0.4s ease-out;
        }

        .success-badge-circle{
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #ffffff;
            border: 1.5px solid #0868e3;
            display:flex;
            align-items:center;
            justify-content:center;
            box-shadow: 0 12px 28px rgba(8,104,227,0.3);
        }
        .success-badge-circle img{
            width: 160px;
            height: 160px;
            object-fit: contain;
        }
        .success-badge-circle.loading img{
            animation: successSpin 1.1s linear infinite;
        }
        @keyframes successSpin{
            from{ transform: rotate(0deg); }
            to{ transform: rotate(360deg); }
        }

        .success-checkmark{
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 42px;
            height: 42px;
            background: #0868e3;
            clip-path: polygon(
              50% 0%, 65.3% 13.0%, 85.4% 14.6%, 87.0% 34.7%,
              100% 50%, 87.0% 65.3%, 85.4% 85.4%, 65.3% 87.0%,
              50% 100%, 34.7% 87.0%, 14.6% 85.4%, 13.0% 65.3%,
              0% 50%, 13.0% 34.7%, 14.6% 14.6%, 34.7% 13.0%
            );
            display:flex;
            align-items:center;
            justify-content:center;
            opacity: 0;
            transform: scale(0.4) rotate(-15deg);
            transition: opacity 0.35s ease, transform 0.35s ease;
            box-shadow: 0 4px 10px rgba(8,104,227,0.4);
        }
        .success-checkmark.show{
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
        .success-checkmark svg{
            width: 17px;
            height: 17px;
            stroke: #ffffff;
            stroke-width: 3;
            fill:none;
        }

        .success-close-btn{
            position:absolute;
            top: 18px;
            right: 18px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border:none;
            background:#f1f4f9;
            color:#666;
            font-size:16px;
            cursor:pointer;
            display:flex;
            align-items:center;
            justify-content:center;
            z-index: 2;
            visibility: hidden;
        }
        .success-close-btn:hover{ background:#e3e8f0; }

        .success-label-small{
            color:#8a94a3;
            font-size:12px;
            font-weight:700;
            letter-spacing: 0.6px;
            margin-top: 18px;
        }

        .success-text {
            color: #0868e3;
            font-size: 21px;
            font-weight: 800;
            margin: 8px 0 22px 0;
            line-height: 1.35;
        }

        .success-blue-panel{
            background: linear-gradient(160deg, #0868e3, #054fae);
            border-radius: 18px;
            padding: 24px 20px 40px 20px;
            color: #ffffff;
            position: relative;
            margin-top: auto;
        }
        .success-blue-panel h3{
            margin: 0 0 8px 0;
            font-size: 18px;
            font-weight: 800;
			color: #ffffff;
        }
        .success-desc {
            margin:0;
            font-size: 13.5px;
            opacity: 0.95;
            line-height: 1.5;
        }

        .success-see-details{
            position: absolute;
            left: 50%;
            bottom: -20px;
            transform: translateX(-50%);
            background: #ffffff;
            color: #0868e3;
            border: none;
            padding: 13px 30px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(0,0,0,0.18);
            white-space: nowrap;
        }
        .success-see-details:hover{
            background:#f3f7fd;
        }

        .success-footer-note{
            text-align:center;
            color:#9aa5b1;
            font-size:11px;
            margin-top: 45px;
        }
/* ===== next block ===== */


/* ===== BODY MODE SWITCHER ===== */
body.landing-mode {
    font-family: var(--font-body, 'Nunito', sans-serif) !important;
    background-color: #FFFFFF !important;
    background-image: radial-gradient(circle, rgba(148,163,184,0.035) 1px, transparent 1px) !important;
    background-size: 28px 28px !important;
    padding-bottom: 0 !important;
    color: #334155 !important;
}
body.app-mode {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: #f1f5f9 !important;
    background-image: none !important;
    padding-bottom: 90px !important;
    color: inherit !important;
}

/* ===== HERO TITLE ALWAYS WHITE — perlindungan absolut ===== */
.hero-title,
body .hero-title,
body.landing-mode .hero-title,
#landing-wrapper .hero-title {
    color: #434043 !important;
}


/* ===== next block ===== */


        /* Non-critical CSS loaded after */
        .font-display{font-family:-apple-system,BlinkMacSystemFont,sans-serif;font-weight:700}

        /* Header */
        .header{
            background:linear-gradient(135deg, #4A90E2 0%, #52C67A 100%);
            border-radius:0 0 28px 28px;
            box-shadow:0 4px 20px rgba(0,0,0,0.4);
            position:relative;
            overflow:hidden;
            margin-bottom: 20px;
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            z-index:1;
        }

        .header-content{
            padding:20px 20px 14px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            position:relative;
            z-index:1;
            gap:12px;
        }



        /* KIRI: avatar + nama */
        .header-left {
            display:flex;
            align-items:center;
            gap:13px;
            flex:1;
            min-width:0;
        }

        .profile-icon{
            width:50px;
            height:50px;
            background:rgba(255,255,255,0.22);
            border:2px solid rgba(255,255,255,0.55);
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:24px;
            flex-shrink:0;
            cursor:pointer;
            transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                        background 0.2s;
            box-shadow:0 2px 12px rgba(0,0,0,0.15);
        }

        .profile-icon:hover{
            transform: scale(1.08);
            background:rgba(255,255,255,0.32);
        }

        .user-info{ flex:1; min-width:0; }

        .greeting{
            font-size:22px;
            font-weight:800;
            color:#fff;
            margin-bottom:3px;
            white-space:nowrap;
            overflow:hidden;
            text-overflow:ellipsis;
            text-shadow: 0 1px 4px rgba(0,0,0,0.15);
        }

        .subtitle{
            font-size:12px;
            color:rgba(255,255,255,0.85);
            font-weight:500;
            white-space:nowrap;
            overflow:hidden;
            text-overflow:ellipsis;
        }

        /* KANAN: logo SISA+ */
        .header-logo-right {
            flex-shrink:0;
            width:72px;
            height:42px;
            background:rgba(255,255,255,0.18);
            border:1.5px solid rgba(255,255,255,0.35);
            border-radius:12px;
            display:flex;
            align-items:center;
            justify-content:center;
            overflow:hidden;
            box-shadow:0 2px 10px rgba(0,0,0,0.15);
            backdrop-filter:blur(4px);
        }

        .header-logo-right img {
            width:64px;
            height:36px;
            object-fit:contain;
        }

        /* Badge level kecil di bawah nama */
        .header-level-badge {
            display:inline-block;
            font-size:10px;
            font-weight:700;
            padding:2px 8px;
            border-radius:20px;
            background:rgba(255,255,255,0.25);
            color:#fff;
            margin-top:3px;
            letter-spacing:0.3px;
        }

        .logo{
            width:52px;
            height:52px;
            background:#fff;
            border-radius:14px;
            display:flex;
            align-items:center;
            justify-content:center;
            box-shadow:0 2px 8px rgba(0,0,0,0.1);
        }

        /* Hero Grid - CARD BESAR */
        .hero-grid{
            display:flex;
            flex-direction:column;
            gap:16px;
            margin-bottom:20px;
        }

        .hero-card{
            background:linear-gradient(135deg, #4A90E2 0%, #52C67A 100%);
            border-radius:24px;
            padding:32px 24px;
            text-align:center;
            color:#fff;
            box-shadow:0 6px 20px rgba(74,144,226,0.3);
        }

        .hero-label{
            font-size:14px;
            color:rgba(255,255,255,0.95);
            margin-bottom:10px;
            font-weight:600;
            letter-spacing:0.2px;
        }

        .hero-value{
            font-size:52px;
            font-weight:800;
            margin-bottom:8px;
        }

        .hero-subtitle{
            font-size:13px;
            opacity:1;
            color:rgba(255,255,255,0.92);
            font-weight:500;
        }

        /* Level Container */
        .level-container{
    background:#fff;
    border-radius:20px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 6px 28px rgba(0,0,0,0.32);
    border:1px solid rgba(255,255,255,0.9);
}

        .level-header{
            display:flex;
            justify-content:space-between;
            align-items:center;
            margin-bottom:14px;
        }

        .level-title{
            font-size:15px;
            font-weight:700;
            color:#1e293b;
        }

        /* TULISAN LEVEL YANG MENCOLOK */
        .level-badge-text{
            font-size:18px;
            font-weight:800;
            padding:8px 16px;
            border-radius:12px;
            letter-spacing:0.5px;
        }

        .level-badge-text.bronze{
            background:linear-gradient(135deg, #fbbf24, #f59e0b);
            color:#fff;
            box-shadow:0 4px 10px rgba(205,127,50,0.3);
        }

        .level-badge-text.silver{
            background:linear-gradient(135deg, #c0c0c0, #a8a8a8);
            color:#fff;
            box-shadow:0 4px 10px rgba(192,192,192,0.3);
        }

        .level-badge-text.gold{
            background:linear-gradient(135deg, #ffd700, #ffb700);
            color:#fff;
            box-shadow:0 4px 10px rgba(255,215,0,0.4);
        }

        .level-badge-text.platinum{
            background:linear-gradient(135deg, #e5e4e2, #d3d3d3);
            color:#1e293b;
            box-shadow:0 4px 10px rgba(229,228,226,0.4);
        }

        .level-badge-text.diamond{
            background:linear-gradient(135deg, #b9f2ff, #1e90ff);
            color:#fff;
            box-shadow:0 4px 10px rgba(30,144,255,0.4);
        }

        .level-badge-text.none{
            background:linear-gradient(135deg, #fbbf24, #f59e0b);
            color:#fff;
            font-size:14.4px;
            padding:6.4px 12.8px;
            box-shadow:0 4px 10px rgba(251,191,36,0.25);
        }

        .progress-bar-outer{
            height:10px;
            background:#e2e8f0;
            border-radius:10px;
            overflow:hidden;
            margin-bottom:10px;
        }

        .progress-fill{
            height:100%;
            background:linear-gradient(90deg, #4A90E2, #52C67A);
            border-radius:10px;
            transition:width 0.6s ease;
        }

        .level-text{
            font-size:12px;
            color:#475569;
            font-weight:600;
            text-align:center;
        }

        /* JUDUL RINGKASAN */
        .summary-header{
            font-size:16px;
            font-weight:800;
            color:#ffffff;
            margin-bottom:12px;
            padding-left:4px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }

        /* Ringkasan Stats */
        .summary-stats{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:12px;
            margin-bottom:20px;
        }

        .summary-card{
            background:#fff;
            border-radius:16px;
            padding:16px;
            box-shadow:0 6px 28px rgba(0,0,0,0.32);
            border:1px solid rgba(255,255,255,0.9);
        }

        .summary-label{
            font-size:13px;
            font-weight:600;
            color:#64748b;
            margin-bottom:6px;
        }

        .summary-value{
            font-size:28px;
            font-weight:800;
            color:#1e293b;
        }

        /* Tombol Lihat Reward */
        .btn-reward{
            width:100%;
            padding:16px;
            background:linear-gradient(135deg, #fbbf24, #f59e0b);
            color:#fff;
            border:none;
            border-radius:14px;
            font-size:15px;
            font-weight:700;
            cursor:pointer;
            margin-bottom:20px;
            box-shadow:0 4px 10px rgba(251,191,36,0.3);
            transition: transform 0.2s;
        }

        .btn-reward:hover {
            transform: translateY(-2px);
        }

        /* Navigation */
        /* ===== NAV BAR - CUSTOMER ===== */
.bottom-nav-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 200;
    padding: 0;
    box-sizing: border-box;
    display: none;
}
.bottom-nav-wrapper.visible {
    display: block;
}
.bottom-nav-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68px;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
    z-index: -1;
}
.bottom-nav {
    width: 100%;
    height: 65px;
    background: #ffffff;
    border-radius: 0;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 0 12px;
    overflow: visible;
    filter: drop-shadow(0 -6px 20px rgba(0,0,0,0.18));
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 375 86" preserveAspectRatio="none"><path d="M24,0 H150 C165,0 165,30 187.5,30 C210,30 210,0 225,0 H351 C364,0 375,11 375,24 V86 H0 V24 C0,11 11,0 24,0 Z" fill="white"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 375 86" preserveAspectRatio="none"><path d="M24,0 H150 C165,0 165,30 187.5,30 C210,30 210,0 225,0 H351 C364,0 375,11 375,24 V86 H0 V24 C0,11 11,0 24,0 Z" fill="white"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.nav-spacer {
    width: 100%;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s ease, background 0.2s ease;
    height: 100%;
    width: 100%;
    gap: 4px;
    border-radius: 14px;
    padding: 0 4px;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    position: relative;
}
.nav-item.active {
    color: #0868E3;
}
.nav-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.nav-icon-svg path, .nav-icon-svg circle, .nav-icon-svg rect,
.nav-icon-svg polyline, .nav-icon-svg line, .nav-icon-svg ellipse {
    stroke: #91969d;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease, fill 0.2s ease;
}
.nav-item.active .nav-icon-svg path,
.nav-item.active .nav-icon-svg circle,
.nav-item.active .nav-icon-svg rect,
.nav-item.active .nav-icon-svg polyline,
.nav-item.active .nav-icon-svg line,
.nav-item.active .nav-icon-svg ellipse {
    stroke: #0868E3;
    fill: none;
    transition: stroke 0.25s ease, fill 0.25s ease, transform 0.25s ease;
}

/* === ICON FILLED SAAT AKTIF === */
.nav-item.active .nav-icon-news path:first-child {
    fill: #0868E3;
}
.nav-item.active .nav-icon-news path:last-child {
    stroke: #ffffff;
}

.nav-item.active .nav-icon-toko path:first-child {
    fill: #0868E3;
}
.nav-item.active .nav-icon-toko path:last-child {
    stroke: #ffffff;
}

.nav-item.active .nav-icon-jemput rect,
.nav-item.active .nav-icon-jemput path {
    fill: #0868E3;
}
.nav-item.active .nav-icon-jemput circle {
    fill: #ffffff;
    stroke: #0868E3;
}

.nav-item.active .nav-icon-lacak path {
    fill: #0868E3;
}
.nav-item.active .nav-icon-lacak circle {
    fill: #ffffff;
    stroke: #0868E3;
}

/* === ANIMASI BOUNCE SAAT PINDAH MENU === */
.nav-item .nav-icon-svg {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-item.active .nav-icon-svg {
    transform: scale(1.15);
}
.nav-item .nav-label {
    transition: color 0.2s ease, font-weight 0.2s ease, transform 0.2s ease;
}
.nav-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: inherit;
    transition: color 0.2s ease;
}
.nav-item.active .nav-label {
    font-weight: 700;
}

/* Tombol tengah melayang */
.nav-item.nav-home {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    background: #0868E3;
    width: 56px;
    height: 56px;
    min-height: 56px;
    border-radius: 50%;
    border: 5px solid #ffffff;          /* ← BORDER PUTIH */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 0;
}
.nav-item.nav-home .nav-label {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 2px;
    white-space: nowrap;
    color: #0868E3;
    font-weight: 700;
}
.nav-item.nav-home .nav-icon-svg {
    width: 26px;
    height: 26px;
}
.nav-item.nav-home .nav-icon-svg path,
.nav-item.nav-home .nav-icon-svg circle,
.nav-item.nav-home .nav-icon-svg rect,
.nav-item.nav-home .nav-icon-svg polyline,
.nav-item.nav-home .nav-icon-svg line,
.nav-item.nav-home .nav-icon-svg ellipse {
    stroke: #ffffff;
    fill: none;
}

.nav-home-circle { display: none; }


        /* ===== NAV BAR - ADMIN ===== */
        .admin-nav {
            position: AUTO;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            display: none;
            height: 68px;
            background: #4A90E2;
            border-radius: 0;
            grid-template-columns: repeat(5, 1fr);
            align-items: center;
            justify-content: space-around;
            padding: 6px 0;
            z-index: 200;
            box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
            border-top: 3px solid #4A90E2;
            overflow: hidden;
        }
        .admin-nav.visible { display: grid; }
        .admin-nav::before { display: none; }
        .admin-nav::after  { display: none; }
        .admin-nav-btn {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            color: #ffffff;
            transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                        color 0.2s ease,
                        background 0.2s ease;
            height: 100%;
            gap: 3px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.3px;
            padding: 0 4px;
            border-radius: 14px;
        }
        .admin-nav-btn:active {
            transform: scale(0.88) translateY(2px);
            transition: transform 0.1s ease;
        }
        .admin-nav-btn.admin-home-btn { width: 100% !important; flex: none !important; }
        .admin-nav-btn:hover { color: #fffff; background: rgba(0,0,0,0.04); }
      .admin-nav-btn.active {
    border-radius: 14px;
    color: #1565C0;
    height: 80%;
    transform: translateY(-3px);
}
.admin-nav-btn.active:not(.admin-home-btn) {
    background: #ffffff;
    color: #1565C0;
    box-shadow: 0 6px 18px rgba(21,101,192,0.3);
}
.admin-nav-btn.admin-home-btn.active {
    background: #ffffff;
    color: #0868E3;
    box-shadow: 0 6px 18px rgba(22,163,74,0.35);
}
        .admin-nav-btn span { font-size: 10px; color: inherit; }
        .admin-home-circle { display: none; }
        .admin-nav-icon { 
            width: 22px; height: 22px;
            transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
        }
        .admin-nav-btn.active .admin-nav-icon { transform: scale(1.15); }
        .admin-nav-icon path, .admin-nav-icon circle, .admin-nav-icon rect,
        .admin-nav-icon polyline, .admin-nav-icon line, .admin-nav-icon ellipse {
            stroke: #ffffff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.2s ease;
        }
        .admin-nav-btn.active:not(.admin-home-btn) .admin-nav-icon path,
        .admin-nav-btn.active:not(.admin-home-btn) .admin-nav-icon circle,
        .admin-nav-btn.active:not(.admin-home-btn) .admin-nav-icon rect,
        .admin-nav-btn.active:not(.admin-home-btn) .admin-nav-icon polyline,
        .admin-nav-btn.active:not(.admin-home-btn) .admin-nav-icon line,
        .admin-nav-btn.active:not(.admin-home-btn) .admin-nav-icon ellipse { stroke: #1565C0; }
       .admin-nav-btn.admin-home-btn.active .admin-nav-icon path,
.admin-nav-btn.admin-home-btn.active .admin-nav-icon circle,
.admin-nav-btn.admin-home-btn.active .admin-nav-icon rect,
.admin-nav-btn.admin-home-btn.active .admin-nav-icon polyline,
.admin-nav-btn.admin-home-btn.active .admin-nav-icon line,
.admin-nav-btn.admin-home-btn.active .admin-nav-icon ellipse { stroke: #0868E3 ; }

        .admin-hidden { display: none; }
        @media (min-width: 768px) {
            .admin-nav { padding: 0 60px; }
            .admin-nav-btn { max-width: 160px; font-size: 12px; }
            .admin-nav-icon { width: 28px; height: 28px; }
        }
        @media (min-width: 1200px) {
            .admin-nav { padding: 0 120px; }
            .admin-nav-btn { max-width: 200px; }
        }

        /* ===== ADMIN SIDEBAR (menu kiri di layar desktop/tablet lebar) ===== */
        @media (min-width: 900px) {
            .admin-nav {
                /* pindah dari bottom bar -> sidebar kiri */
                position: fixed;
                top: 0;
                left: 0;
                bottom: auto;
                right: auto;
                width: 230px;
                height: 100vh;
                display: none;               /* tetap none sampai .visible ditambahkan JS */
                grid-template-columns: none;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 6px;
                padding: 24px 14px;
                border-top: none;
                border-right: 3px solid #ffffff;
                box-shadow: 4px 0 24px rgba(0,0,0,0.22);
                z-index: 300;
                background:#0868E3;
            }
            .admin-nav.visible { display: flex; }

            .admin-nav-btn {
                flex: none;
                flex-direction: row;
                justify-content: flex-start;
                gap: 12px;
                width: 100%;
                height: auto;
                padding: 12px 14px;
                font-size: 14px;
                border-radius: 10px;
                max-width: none;
            }
            .admin-nav-btn span { font-size: 14px; }
.admin-nav-logo {
    color: #ffffff;
    font-family:Roboto Condensed;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 10px 14px 8px;
    margin-bottom: 10px;
}
.admin-nav-logo span {
    color: #a7f3d0;
}

.admin-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin: 14px 10px;
}

.admin-logout-btn {
    margin-top: auto;
}
.admin-logout-btn.active,
.admin-logout-btn:hover {
    background: rgba(239,68,68,0.15) !important;
    color: #fecaca !important;
}
                       .admin-nav-btn.active { height: auto; transform: none; }
            .admin-nav-btn:active { transform: scale(0.97); }
            .admin-nav-icon { width: 22px; height: 22px; flex-shrink: 0; }
            .admin-nav-btn.active .admin-nav-icon { transform: none; }

           /* Geser konten admin ke kanan supaya tidak ketiban sidebar */
.admin-header,
.admin-container {
    margin-left: 230px !important;
    width: calc(100% - 230px) !important;
    box-sizing: border-box !important;
   }
  }

                /* SiImpact Details */
        .impact-card{
            background:#ffffff;
            border:none;
            border-radius:20px;
            padding:24px 20px;
            margin-bottom:16px;
            text-align:center;
            box-shadow:0 4px 24px rgba(0,0,0,0.25);
        }

        .impact-icon{
            font-size:52px;
            margin-bottom:12px;
        }

        .impact-value{
            font-size:36px;
            font-weight:800;
            color:#1e293b;
            margin-bottom:6px;
        }

        .impact-label{
            font-size:15px;
            font-weight:700;
            color:#334155;
            margin-bottom:8px;
        }

        .impact-desc{
            font-size:13px;
            color:#64748b;
            line-height:1.7;
        }

        /* Step Tracker SiTrack */
        .step-tracker {
            padding: 8px 0 4px;
        }
        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            position: relative;
        }
        .step-connector-top, .step-connector-bot {
            position: absolute;
            left: 19px;
            width: 2px;
            background: #e2e8f0;
            z-index: 0;
        }
        .step-connector-top { top: 0; height: 12px; }
        .step-connector-bot { top: 52px; height: calc(100% - 40px); min-height: 20px; }

        .step-item.step-done .step-connector-top,
        .step-item.step-done .step-connector-bot,
        .step-item.step-active .step-connector-top,
        .step-item.step-active .step-connector-bot { background: #22C55E; }

        .step-circle {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: 2px solid #e2e8f0;
            background: #ffffff;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            position: relative; z-index: 1;
            margin: 6px 0;
            transition: all 0.3s ease;
        }
        .step-num {
            font-size: 15px; font-weight: 700;
            color: #cbd5e1;
            transition: color 0.3s;
        }
        /* State: aktif (step saat ini) — HIJAU bukan kuning */
@keyframes stepBlinkWait {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }
        .step-item.step-waiting .step-circle {
            animation: stepBlinkWait 1.2s ease-in-out infinite;
        }
        .step-item.step-active .step-circle {
            border-color: #22C55E;
            background: #dcfce7;
            box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
            animation: stepPulse 2s ease-in-out infinite;
        }
        @keyframes stepPulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.18); }
            50%       { box-shadow: 0 0 0 8px rgba(34,197,94,0.08); }
        }
        .step-item.step-active .step-num { color: #16a34a; }
        .step-item.step-active .step-label { color: #16a34a; font-weight: 700; }

        /* State: selesai (sudah lewat) */
        .step-item.step-done .step-circle {
            border-color: #22C55E;
            background: #22C55E;
            box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
        }
        .step-item.step-done .step-num {
            color: transparent;
        }
        .step-item.step-done .step-circle::after {
            content: '';
            position: absolute;
            width: 8px; height: 14px;
            border-right: 2.5px solid #fff;
            border-bottom: 2.5px solid #fff;
            transform: rotate(45deg) translate(-1px, -2px);
        }
        .step-content {
            flex: 1;
            padding: 8px 0 20px;
        }
        .step-label {
            font-size: 14px; font-weight: 600;
            color: #94a3b8;
            margin-bottom: 3px;
            transition: color 0.3s;
        }
        .step-item.step-done .step-label { color: #1e293b; }
        .step-desc {
            font-size: 12px; color: #94a3b8;
        }
        .step-item.step-active .step-desc,
        .step-item.step-done .step-desc { color: #64748b; }

        /* Track Status */
        .track-status{
            background:#fff;
            border-radius:20px;
            padding:20px;
            margin-bottom:20px;
            box-shadow:0 6px 28px rgba(0,0,0,0.32);
            border:1px solid rgba(255,255,255,0.9);
        }

        .track-title{
            font-size:17px;
            font-weight:700;
            color:#1e293b;
            margin-bottom:16px;
        }

        .status-item{
            display:flex;
            align-items:flex-start;
            gap:14px;
            padding:14px 0;
            border-bottom:1px solid #f1f5f9;
        }

        .status-item:last-child{
            border-bottom:none;
        }

        .status-icon{
            width:44px;
            height:44px;
            background:#f1f5f9;
            border-radius:12px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:20px;
            flex-shrink:0;
        }

        .status-icon.active{
            background:linear-gradient(135deg, #4A90E2, #52C67A);
            color:#fff;
        }

        .status-icon.pending{
            background:#f1f5f9;
            color:#94a3b8;
        }

        .status-icon.completed{
            background:#10b981;
            color:#fff;
        }

        .status-text{
            flex:1;
            padding-top:4px;
        }

        .status-label{
            font-size:14px;
            font-weight:600;
            color:#1e293b;
            margin-bottom:4px;
        }

        .status-desc{
            font-size:12px;
            color:#64748b;
        }

        /* Level Card */
        .level-card{
            background:linear-gradient(135deg, #4A90E2 0%, #52C67A 100%);
            border-radius:20px;
            padding:24px;
            margin-bottom:20px;
            text-align:center;
            color:#fff;
        }

        .level-name{
            font-size:28px;
            font-weight:800;
            margin-bottom:8px;
        }

        .level-progress{
            font-size:13px;
            opacity:0.95;
        }

        /* History Item */
        .history-item{
            padding:14px 0;
            border-bottom:1px solid #f1f5f9;
        }

        .history-item:last-child{
            border-bottom:none;
        }

        .history-header{
            display:flex;
            justify-content:space-between;
            align-items:center;
            margin-bottom:6px;
        }

        .history-date{
            font-size:14px;
            font-weight:600;
            color:#1e293b;
        }

        .history-weight{
            font-size:14px;
            font-weight:700;
            color:#10b981;
        }

        .history-status{
            font-size:12px;
            color:#64748b;
        }

        /* Pick Form */
        .pick-form{
           
            padding:20px;
            margin-bottom:20px;
     
        }

        .form-group{
            margin-bottom:16px;
        }

        .form-label{
            display:block;
            font-size:14px;
            font-weight:600;
            color:#1e293b;
            margin-bottom:8px;
        }

        .form-input{
            width:100%;
            padding:12px 14px;
            border:1px solid #e5e7eb;
            border-radius:12px;
            font-size:15px;
            transition:border-color 0.2s;
        }

        .form-input:focus{
            outline:none;
            border-color:#4A90E2;
        }

        #app-wrapper .btn-primary{
            width:100%;
            padding:14px;
            background: #0868e3;
            color:#fff;
            border:none;
            border-radius:12px;
            font-size:15px;
            font-weight:700;
            cursor:pointer;
            box-shadow:0 4px 10px rgba(74,144,226,0.3);
        }

        #app-wrapper .btn-cancel{
            background:#ef4444;
        }
/* ===== Header Produk Unggulan ===== */
.simart-section-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:18px 0 14px;
}

.simart-section-title{
    font-size:18px;
    font-weight:700;
    color:#1e293b;
    margin:0;
}

.simart-see-all{
    font-size:11px;
    font-weight:500;
    color:#0868e3;
    text-decoration:none;
    transition:0.2s;
    margin-top: 24px;
}

.simart-see-all:hover{
    color:#1d4ed8;
}
      /* Products Grid */
        .products-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:12px;
        }

        .product-card{
            background:#fff;
            border-radius:14px;
            padding:0;
            box-shadow:none;
            border:1px solid #fff;
            display:flex;
            flex-direction:column;
            text-align:left;
            overflow:hidden;
        }

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #f8fafc;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar akan terpotong rapi memenuhi kotak */
    display: block;
}
        /* KHUSUS TAMPILAN MOBILE (Layar Kecil) */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar akan terpotong rapi memenuhi kotak */
    display: block;
}
/* Row nama produk + tombol love */
.product-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 4px;
}

/* Tombol love — tanpa background bulat */
.product-fav-btn {
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 0;
}
.product-fav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #64748b;
    stroke-width: 1.8;
    fill: none;
}
.product-fav-btn.active svg {
    stroke: #ef4444;
    fill: #ef4444;
}
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0;
    }
}
.product-card {
        padding: 0px; /* Perkecil padding kartu di HP agar tidak sempit */
    }

    .product-info{
            flex:1;
            display:flex;
            flex-direction:column;
            padding:8px;
        }

        .product-name{
            font-size:13.5px;
            font-weight:600;
            color:#1e293b;
            margin-bottom:4px;
            line-height:1.3;
            display:-webkit-box;
            -webkit-line-clamp:2;
            -webkit-box-orient:vertical;
            overflow:hidden;
        }

        .product-price{
            font-size:14.5px;
            font-weight:800;
            color:#0868E3;
            margin-bottom:10px;
            flex:1;
        }

        .btn-order{
            width:100%;
            padding:10px;
            background:#0868E3;
            color:#fff;
            border:none;
            border-radius:10px;
            font-size:13.5px;
            font-weight:700;
            cursor:pointer;
            transition: transform 0.2s, background 0.2s;
        }

        .btn-order:hover{
            background:#0656c4;
        }

        /* Modal */
        .modal-overlay{
            position:fixed;
            inset:0;
            background:rgba(0,0,0,0.6);
            display:none;
            align-items:center;
            justify-content:center;
            z-index:100;
            visibility:hidden;
        }
        .modal-overlay.active{
            visibility:visible;
        }

        .modal-overlay.active{
            display:flex;
        }

        .modal-content{
            background:#fff;
            border-radius:20px;
            padding:28px;
            max-width:340px;
            width:90%;
            text-align:center;
        }

        .modal-title{
            font-size:18px;
            font-weight:700;
            color:#1e293b;
            margin-bottom:12px;
        }

        .modal-text{
            font-size:14px;
            color:#64748b;
            margin-bottom:20px;
            line-height:1.6;
        }

        .modal-buttons{
            display:flex;
            gap:10px;
        }

        .modal-btn{
            flex:1;
            padding:12px;
            border:none;
            border-radius:10px;
            font-size:14px;
            font-weight:600;
            cursor:pointer;
        }

        .modal-btn.primary{
            background:#10b981;
            color:#fff;
        }

        .modal-btn.secondary{
            background:#f1f5f9;
            color:#64748b;
        }

        /* Profile */
        .profile-header{
            background:#0868e3;
            border-radius:20px;
            padding:28px 24px;
            text-align:center;
            color:#fff;
            margin-bottom:20px;
        }

        .profile-avatar{
            width:80px;
            height:80px;
            background:#fff;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:40px;
            margin:0 auto 14px;
        }

        .profile-name{
            font-size:22px;
            font-weight:700;
            margin-bottom:4px;
        }

        .profile-email{
            font-size:13px;
            opacity:0.9;
        }

        .profile-menu{
            background:rgba(255,255,255,0.06);
            border:1px solid rgba(255,255,255,0.1);
            border-radius:20px;
            padding:8px;
            margin-bottom:20px;
            box-shadow:0 4px 20px rgba(0,0,0,0.3);
        }

        .menu-item{
            display:flex;
            align-items:center;
            gap:14px;
            padding:14px;
            border-radius:12px;
            cursor:pointer;
            transition:background 0.2s;
        }

        .menu-item:hover{
            background:rgba(255,255,255,0.08);
        }

        .menu-icon{
            width:38px;
            height:38px;
            background:rgba(74,144,226,0.15);
            border-radius:10px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:18px;
        }

        .menu-text{
            flex:1;
        }

        .menu-label{
            font-size:14px;
            font-weight:600;
            color:rgba(240,249,255,0.92);
        }

        .menu-desc{
            font-size:11px;
            color:rgba(148,163,184,0.7);
        }

        .menu-arrow{
            color:rgba(148,163,184,0.4);
            font-size:18px;
        }

        /* REWARD PAGE STYLES */
        .reward-header {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-radius: 20px;
            padding: 28px 24px;
            text-align: center;
            color: #fff;
            margin-bottom: 20px;
            box-shadow: 0 6px 20px rgba(251,191,36,0.3);
        }

        .reward-icon {
            font-size: 64px;
            margin-bottom: 12px;
        }

        .reward-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .reward-subtitle {
            font-size: 14px;
            opacity: 0.95;
        }
		
.reward-coin-card {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            border-radius: 20px;
            padding: 24px 20px;
            text-align: center;
            color: #fff;
            margin-bottom: 16px;
            box-shadow: 0 8px 20px rgba(37,99,235,0.25);
        }
        .reward-coin-label {
            font-size: 13px;
            opacity: 0.85;
            margin-bottom: 8px;
        }
        .reward-coin-amount {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 32px;
            font-weight: 800;
        }
        .reward-coin-icon {
            font-size: 28px;
        }
        .reward-coin-rupiah {
            margin-top: 6px;
            font-size: 14px;
            opacity: 0.9;
        }
.reward-action-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 16px;
        }
        .reward-action-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .reward-action-label {
            font-size: 13px;
            font-weight: 600;
            color: #1f2937;
            text-align: center;
        }
        .reward-action-btn {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 10px;
            background: #2563eb;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
        }
        .reward-action-btn:active {
            background: #1e40af;
        }
.checkout-koin-switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
            flex-shrink: 0;
        }
        .checkout-koin-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .checkout-koin-slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #cbd5e1;
            border-radius: 24px;
            transition: 0.2s;
        }
        .checkout-koin-slider::before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: #fff;
            border-radius: 50%;
            transition: 0.2s;
        }
        .checkout-koin-switch input:checked + .checkout-koin-slider {
            background-color: #2563eb;
        }
        .checkout-koin-switch input:checked + .checkout-koin-slider::before {
            transform: translateX(20px);
        }

        .reward-history-section {
            background: #fff;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .reward-history-title {
            font-size: 15px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }
        .history-item-list {
            max-height: 320px;
            overflow-y: auto;
        }

        .reward-status {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
			margin-bottom: 20px
		}

        .reward-status {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 6px 28px rgba(0,0,0,0.30);
        }

        .reward-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .reward-item:last-child {
            border-bottom: none;
        }

        .reward-item-label {
            font-size: 14px;
            color: #64748b;
        }

        .reward-item-value {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
        }

        .reward-claim-section {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 6px 28px rgba(0,0,0,0.30);
            text-align: center;
        }

        .reward-amount {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .reward-desc {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn-claim {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(16,185,129,0.3);
            transition: transform 0.2s;
        }

        .btn-claim:hover {
            transform: translateY(-2px);
        }

        .btn-claim:disabled {
            background: #e5e7eb;
            color: #9ca3af;
            cursor: not-allowed;
            box-shadow: none;
        }

        .reward-info {
            background: #fef3c7;
            border-radius: 14px;
            padding: 16px;
            margin-top: 16px;
        }

        .reward-info-text {
            font-size: 13px;
            color: #92400e;
            line-height: 1.6;
        }

        .btn-back {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #4A90E2, #52C67A);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 12px;
            box-shadow: 0 4px 10px rgba(74,144,226,0.3);
            transition: transform 0.2s;
        }

        .btn-back:hover {
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (min-width: 768px) {
            #app-wrapper .container {
                max-width: 100%;
            }

            .hero-grid {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 20px;
            }

            .summary-stats {
                grid-template-columns: repeat(4, 1fr);
            }

            .bottom-nav { max-width: 100%; }
        }

        @media (min-width: 1024px) {
            #app-wrapper .container {
                max-width: 100%;
            }
            .bottom-nav { max-width: 100%; }
            .hero-grid {
                grid-template-columns: 1.5fr 1fr;
            }
        }

        /* LAPTOP: perbesar font keseluruhan — lebih besar & mudah dibaca */
        @media (min-width: 900px) {
            body { font-size: 17px; }

            /* Header */
            .greeting { font-size: 24px !important; }
            /* tagline standalone laptop */
            .subtitle { font-size: 14px !important; }
            .header-level-badge { font-size: 12px !important; }
            .header-logo-right { width:90px !important; height:52px !important; }
            .header-logo-right img { width:80px !important; height:44px !important; }
            .profile-icon { width:58px !important; height:58px !important; font-size:28px !important; }
            .header-content { padding: 22px 28px 24px !important; }

            /* Home cards */
            .summary-header { font-size: 20px !important; }
            .summary-label { font-size: 15px !important; }
            .summary-value { font-size: 32px !important; }
            .hero-label { font-size: 17px !important; }
            .hero-value { font-size: 60px !important; }
            .hero-subtitle { font-size: 16px !important; }

            /* Level */
            .level-title { font-size: 18px !important; }
            .level-badge-text { font-size: 20px !important; }
            .level-text { font-size: 14px !important; }
            .progress-fill { height: 12px !important; }
            .progress-bar-outer { height: 12px !important; }

            /* Aktivitas & track */
            .track-title { font-size: 19px !important; }
            /* Activity item laptop */
            #homeLastActivity span[style*="font-size:14px"] { font-size: 16px !important; }
            #homeLastActivity span[style*="font-size:11px"] { font-size: 13px !important; }
            #homeLastActivity span[style*="font-size:12px"] { font-size: 13px !important; }
            #homeLastActivity div[style*="font-size:11px"] { font-size: 13px !important; }
            .step-label { font-size: 16px !important; }
            .step-desc { font-size: 14px !important; }

            /* SiImpact */
            .impact-icon { font-size: 60px !important; }
            .impact-value { font-size: 40px !important; }
            .impact-label { font-size: 17px !important; }
            .impact-desc { font-size: 15px !important; }

            /* Profil */
            .profile-name { font-size: 28px !important; }
            .menu-label { font-size: 17px !important; }
            .menu-desc { font-size: 14px !important; }

            /* Nav */
            .nav-label { font-size: 12px !important; }
            .nav-icon-svg { width: 26px !important; height: 26px !important; }
	    .nav-icon-home {width: 30px; height: 30px;}
            .admin-nav-icon { width: 26px !important; height: 26px !important; }
            .admin-nav-btn span { font-size: 12px !important; }

            /* Tombol */
            .btn-reward { font-size: 18px !important; padding: 18px !important; }
            .btn-claim { font-size: 16px !important; }

            /* Admin panel */
            .admin-table th { font-size: 14px !important; }
            .admin-table td { font-size: 15px !important; }
            h2 { font-size: 24px !important; }
            .stat-value { font-size: 38px !important; }
            .stat-label { font-size: 15px !important; }
            .admin-header h1 { font-size: 30px !important; }
            .glass, .summary-card { font-size: 16px; }

            /* Tagline standalone */
            #homePage > .slide-up:first-child > div:first-child { font-size: 30px !important; }
            #homePage > .slide-up:first-child > div:last-child  { font-size: 15px !important; max-width: 440px !important; }
            #homePage > .slide-up:first-child { padding: 32px 20px 24px !important; }

            /* General text */
            p, div, span, li { font-size: inherit; }
        }
    

/* ===== next block ===== */


        .claim-modal-overlay { position:fixed;inset:0;background:rgba(0,0,0,0.6);display:none;align-items:center;justify-content:center;z-index:200;visibility:hidden; }
        .claim-modal-overlay.active { visibility:visible; }
        .claim-modal-overlay.active { display:flex; }
        .claim-modal { background:#fff;border-radius:24px;padding:28px;max-width:360px;width:92%;animation:slideUp 0.4s ease-out; }
        .claim-modal h3 { font-size:20px;font-weight:800;color:#1e293b;margin-bottom:6px;text-align:center; }
        .claim-modal p { font-size:13px;color:#64748b;text-align:center;margin-bottom:20px; }
        .claim-info-row { display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid #f1f5f9;font-size:14px; }
        .claim-info-row:last-child { border-bottom:none;margin-bottom:16px; }
        .claim-info-label { color:#64748b; }
        .claim-info-value { font-weight:700;color:#1e293b; }
        .claim-form-group { margin-bottom:14px; }
        .claim-form-group label { display:block;font-size:13px;font-weight:600;color:#1e293b;margin-bottom:6px; }
        .claim-form-group select, .claim-form-group input {
            width:100%;padding:11px 13px;border:1px solid #e5e7eb;border-radius:10px;font-size:14px;
            background:#f8fafc;outline:none;transition:border-color 0.2s;
        }
        .claim-form-group select:focus, .claim-form-group input:focus { border-color:#4A90E2;background:#fff; }
        .claim-note { background:#fef3c7;border-radius:10px;padding:12px;margin-bottom:16px;font-size:12px;color:#92400e;line-height:1.5; }
        #btnSubmitClaim { width:100%;padding:14px;background:linear-gradient(135deg,#10b981,#059669);color:#fff;border:none;border-radius:12px;font-size:15px;font-weight:700;cursor:pointer;transition:all 0.2s; }
        #btnSubmitClaim:hover:not(:disabled) { transform:translateY(-2px);box-shadow:0 4px 12px rgba(16,185,129,0.3); }
        #btnSubmitClaim:disabled { background:#e5e7eb;color:#9ca3af;cursor:not-allowed; }
        .claim-cancel-btn { width:100%;padding:12px;background:transparent;color:#94a3b8;border:none;font-size:14px;cursor:pointer;margin-top:8px; }
    

/* ===== next block ===== */


        .admin-container{
            max-width:100%;
            margin:0 auto;
            padding:14px 48px 100px;
            background:#f1f5f9;;
            min-height:100vh;
        }
       .admin-header{
    background:#0868E3 ;
    color:#ffffff;
    padding:10px 24px;
    border-radius:0;
    margin-bottom:0px;
    border-bottom:1px solid rgba(82,198,122,0.2);
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.admin-header {
    position: relative; /* supaya dropdown bisa absolute di dalamnya */
}
.account-switch-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.account-switch-btn:hover { background: rgba(255,255,255,0.28); }

.account-switch-dropdown {
    display: none;
    position: absolute;
    top: 62px;
    right: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 50;
    overflow: hidden;
}
.account-switch-dropdown.active { display: block; }
.account-switch-item {
    padding: 12px 16px;
    font-size: 14px;
    color: #1e293b;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}
.account-switch-item:last-child { border-bottom: none; }
.account-switch-item:hover { background: #f8fafc; }
.account-switch-item.current { background: #eff6ff; font-weight: 700; color: #1d4ed8; }
      .admin-header h1{font-size:20px;margin-bottom:2px;color:#ffffff !important;}
        .admin-header p{font-size:12px;opacity:.9}

        .admin-cards{
            display:grid;
            grid-template-columns:repeat(4, 1fr);
            gap:14px;
            margin-bottom:16px;
        }
       .admin-card{
    background:#0868E3 !important;
    border:none !important;
    border-radius:14px;
    padding:16px 18px;
    box-shadow:0 4px 20px rgba(0,0,0,.25);
}
.admin-card h3{
    font-size:13px;
    color:#ffffff ;
    text-transform:uppercase;
    letter-spacing:0.5px;
    margin-bottom:12px;
    font-weight:700;
    opacity:0.85;
}
.admin-card p{
    font-size:36px;
    font-weight:800;
    color:#ffffff !important;
}

        .admin-section{
            background:#ffffff;
            border:1px solid #e5e7eb;
            border-radius:16px;
            padding:32px 40px;
            margin-bottom:24px;
            box-shadow:0 4px 20px rgba(0,0,0,.2);
        }
        .admin-section h2{
            font-size:20px;
            font-weight:700;
            margin-bottom:24px;
            color:#1e293b;
        }

        .admin-table-wrapper{
            width:100%;
            overflow-x:auto;
            -webkit-overflow-scrolling:touch;
            margin-bottom:16px;
        }
        .admin-table{
            width:100%;
            font-size:15px;
            border-collapse:collapse;
            min-width:600px;
        }
        .admin-table thead{
            background:#f8fafc;
            border-bottom:2px solid #e2e8f0;
        }
        .admin-table th{
            padding:14px 20px;
            text-align:left;
            font-weight:700;
            color:#475569;
            font-size:13px;
            text-transform:uppercase;
            letter-spacing:0.5px;
        }
        .admin-table td{
            padding:14px 20px;
            border-bottom:1px solid #f1f5f9;
            color:#1e293b;
            font-size:14px;
        }
        .admin-table tbody tr:hover{ background:#f8fafc; }

        .status-badge{
            display:inline-block;
            padding:6px 14px;
            border-radius:20px;
            font-size:13px;
            font-weight:600;
            text-align:center;
            min-width:100px;
        }
        .status-dijadwalkan{background:#dbeafe;color:#1e40af}
        .status-dijemput{background:#dcfce7;color:#166534}
        .status-diproses{background:#dcfce7;color:#166534}
        .status-selesai{background:#d1fae5;color:#065f46}
        .status-dibatalkan{background:#fee2e2;color:#991b1b}
        .status-pending{background:#dbeafe;color:#1e40af}
        .status-processing{background:#dcfce7;color:#166534}
        .status-completed{background:#d1fae5;color:#065f46}
        .status-cancelled{background:#fee2e2;color:#991b1b}

        .btn-update{
            padding:7px 16px;
            border-radius:8px;
            border:none;
            background:linear-gradient(135deg,#3b82f6,#2563eb);
            color:#fff;
            font-size:13px;
            font-weight:600;
            cursor:pointer;
            transition:all 0.18s;
        }
        .btn-update:hover{ transform:translateY(-1px); }

        .admin-reload-btn{
            padding:9px 16px;
            border-radius:10px;
            background:#2563EB;
            color:#fff;
            border:none;
            cursor:pointer;
            font-weight:600;
            font-size:14px;
            transition:all 0.2s;
            display:inline-flex;
            align-items:center;
            gap:6px;
        }
        .admin-reload-btn:hover{ background:#1d4ed8; }
        .admin-reload-btn:disabled{ background:#cbd5e1; cursor:not-allowed; }
        .admin-reload-btn.loading::after{
            content:'';
            display:inline-block;
            width:14px; height:14px;
            border:2px solid rgba(255,255,255,0.3);
            border-top-color:#fff;
            border-radius:50%;
            animation:spin 0.8s linear infinite;
        }
        @keyframes spin{ to{transform:rotate(360deg)} }

        .empty-state{
            text-align:center;
            padding:60px 20px;
            color:#94a3b8;
        }
        .empty-state-icon{ font-size:64px; margin-bottom:20px; opacity:0.3; }
        .empty-state h3{ font-size:18px; font-weight:600; color:#64748b; margin-bottom:10px; }
        .empty-state p{ font-size:14px; color:#94a3b8; max-width:500px; margin:0 auto; line-height:1.6; }

        .admin-hidden{ display:none; }

        @media (max-width:768px){
            .admin-container{ padding:14px 48px 100px; }
            .admin-cards{ grid-template-columns:repeat(2,1fr); gap:12px; }
            .admin-card{ padding:18px 14px; }
            .admin-section{ padding:20px 16px; }
            .admin-table{ font-size:13px; min-width:500px; }
            .admin-table th, .admin-table td{ padding:12px 8px; font-size:12px; }
        }
        @media (max-width:480px){
            .admin-cards{ grid-template-columns:1fr; }
            .admin-container{ padding:12px 10px 90px; }
        }
.range-btn {
    flex: 1;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #d1fae5;
    background: #fff;
    color: #166534;
    cursor: pointer;
    transition: 0.2s;
}
.range-btn:hover {
    background: #f0fdf4;
}
.range-btn.active {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}
/* ===== HOME REDESIGN — Kartu Biru Utama ===== */
.home-hero {
    background: linear-gradient(135deg, #0868E3 0%, #4A90E2 100%);
    border-radius: 0 0 24px 24px;
    padding: 18px 20px;
    margin: -4px -20px 16px;
    box-shadow: 0 8px 24px rgba(8,104,227,0.25);
    position: relative;
    overflow: hidden;
}
.home-hero-icons {
    position: absolute;
    top: 24px;
    right: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}
.home-hero-icon-btn {
    background:none;
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.home-hero-icon-btn:active {
    background: none;
}
.home-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}
.home-hero-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-hero-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.home-hero-name { color: #fff; font-size: 18px; font-weight: 700; margin-top: 4px; }
.home-hero-level { color: rgba(255,255,255,0.85); font-size: 13px; margin-top: -2px; }
.home-hero-box {
    background: rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 14px 16px;
    position: relative;
    z-index: 1;
}
.home-hero-label { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 6px; }
.home-hero-value { color: #fff; font-size: 24px; font-weight: 800; font-family:Roboto Condensed; }.home-hero-btn {
    width: 100%;
    background: #fff;
    color: #0868E3;
    border: none;
    border-radius: 14px;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 14px;
    cursor: pointer;
}
/* ===== HOME REDESIGN — Kartu Aksi ===== */
.home-actions-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 20px 0 10px;
}
.home-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.home-action-card {
    border-radius: 18px;
    padding: 16px;
    cursor: pointer;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-action-card.solid {
    background: linear-gradient(10deg, #0868E3 0%, #4A90E2 100%);
}
.home-action-card.outline {
    background: linear-gradient(200deg, #0868E3 0%, #4A90E2 100%);
    border: 1.5px solid #fff;
    color: #fff;
}
.home-action-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}
.home-action-card .nav-icon-svg {
    width: 28px;
    height: 28px;
    display: block;
    margin-bottom: 10px;
}
.home-action-card.solid .nav-icon-svg path,
.home-action-card.solid .nav-icon-svg circle {
    stroke: #ffffff !important;
}
.home-action-card.outline .nav-icon-svg path,
.home-action-card.outline .nav-icon-svg circle {
    stroke: #fff !important;
}
.home-action-card.outline .home-action-icon {
    background: rgba(8,104,227,0.1);
}
.home-action-title { font-size: 20px; font-weight: 700;font-family:Roboto Condensed; margin-bottom: 2px; }
.home-action-desc { font-size: 15px; opacity: 0.85; margin-bottom: 8px; }
.home-action-link { font-size: 12px; font-weight: 700; }
/* ===== PAGE HEADER BOX — judul fitur per halaman ===== */
.page-header-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0868E3;
    color: #fff;
    padding: 20px 20px;
    border-radius: 15;
    margin: -16px -20px 16px;
    box-shadow: 0 4px 14px rgba(8,104,227,0.2);
}
.page-header-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.page-header-title {
    font-size: 20px;
    font-family: Roboto Condensed;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.2px;
}
/* ===== SIPICK — BANNER JADWALKAN PICKUP ===== */
.sipick-banner {
    background: linear-gradient(135deg, #eaf2ff 0%, #dbe9ff 45%, #cfe0ff 100%);
    background-image: url(https://i.ibb.co.com/5xvNQdGD/Whats-App-Image-2026-07-06-at-09-39-29.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 24px 20px;
    margin: -16px -20px 16px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    min-height: 180px;
}
.sipick-banner-text {
    max-width: 70%;
}
.sipick-banner-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 8px;
}
.sipick-banner-title span {
    color: #0868E3;
}
.sipick-banner-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
}
.sipick-banner-text {
    flex: 1;
    min-width: 0;
}
.sipick-banner-title {
    font-family: Roboto Condensed;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 8px;
}
.sipick-banner-title span {
    color: #0868E3;
}
.sipick-banner-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
}
.sipick-banner-image {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sipick-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* ===== SIMART — HEADER BARU (mirip referensi) ===== */
.simart-header {
    background: #0868E3;
    margin: -16px -20px 16px;
    padding: 18px 20px 16px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 14px rgba(8,104,227,0.2);
}
.simart-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.simart-header-title {
    font-size: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.2px;
}
.simart-header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.simart-header-icon-btn {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}
.cart-badge.show { display: flex; }
.simart-header-icon-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
.simart-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.simart-search-bar svg.simart-search-icon {
    width: 20px;
    height: 20px;
    stroke: #94a3b8;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}
.simart-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    background: transparent;
}
.simart-search-input::placeholder {
    color: #94a3b8;
}
.simart-search-filter-btn {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.simart-search-filter-btn svg {
    width: 20px;
    height: 20px;
    stroke: #0868E3;
    stroke-width: 2;
    fill: none;
}
/* ===== SIMART — BANNER CAROUSEL ===== */
.simart-banner-wrapper {
    margin-bottom: 10px;
}
.simart-banner-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.simart-banner-track::-webkit-scrollbar { display: none; }
.simart-banner-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: 170px;
    border-radius: 18px;
    background-color: #0868E3;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.simart-banner-overlay {
    padding: 18px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 60%);
    width: 100%;
}
.simart-banner-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 4px;
    line-height: 1.2;
    max-width: 55%;
}
.simart-banner-desc {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    margin-bottom: 10px;
    max-width: 55%;
}
.simart-banner-btn {
    background: #fff;
    color: #0868E3;
    border: none;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.simart-banner-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.simart-banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all .2s;
}
.simart-banner-dot.active {
    background: #0868E3;
    width: 18px;
    border-radius: 4px;
}

/* ===== SIMART — TAB KATEGORI ===== */
.simart-category-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 6px;
    margin-bottom: 20px;
    overflow: visible;
}
.simart-cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 4px 2px 0;
    font-size: 10.5px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #334155;
    cursor: pointer;
    transition: 0.2s;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}
.simart-cat-icon-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    max-width: 46px;
    max-height: 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 13px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: 0.2s;
}
.simart-cat-btn svg {
    width: 24px;
    height: 24px;
    stroke: #0868E3;
    stroke-width: 1.8;
    fill: none;
}
.simart-cat-btn:hover .simart-cat-icon-box {
    border-color: #0868E3;
}
.simart-cat-btn.active span {
    color: #0868E3;
    font-weight: 800;
}
.simart-cat-btn.active .simart-cat-icon-box {
    border-color: #0868E3;
}

/* ===== BERITA — LIST & DETAIL ===== */
.news-card {
    display: flex;
    gap: 12px;
    align-items: stretch;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.15s ease;
    min-height: 110px;
    overflow: hidden;
}
.news-card-img {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    border-radius: 10px;
    background: #eff6ff;
    color: #93c5fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
    align-self: stretch;
}
.news-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news-card-body {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding: 14px 14px 14px 0;
    position: relative;
}
.news-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 4px 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}
.news-card-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-card-meta-left span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.news-card-bookmark {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: #cbd5e1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.news-detail-img {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    background: #eff6ff;
    color: #93c5fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 16px;
}
.news-detail-title {
    font-size: 19px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 6px;
}
.news-detail-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 14px;
}
.news-detail-body {
    font-size: 14px;
    color: #334155;
    line-height: 1.75;
}


.news-category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 4px;
    margin-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.news-category-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.news-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.news-tab.active { background: #2563eb; color: #fff; }

.news-top-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    margin-bottom: 20px;
    color: #fff;
    cursor: pointer;
}
.news-top-card img { width: 100%; height: 100%; object-fit: cover; }
.news-top-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px;
}
.news-top-badge {
    background: #2563eb; color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; width: fit-content; margin-bottom: 10px;
}
.news-top-dots {
    position: absolute;
    right: 16px;
    bottom: 14px;
    display: flex;
    gap: 5px;
    margin: 0;
    z-index: 2;
}
#newsTopContainer {
    position: relative;
}
.news-top-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.2s ease, width 0.2s ease;
}
.news-top-dot.active {
    background: #fff;
    width: 18px;
    border-radius: 4px;
}
.news-section-label {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 4px 0 12px;
    border-top: none;
    box-shadow: none;
}
.news-category-label { font-size: 12px; font-weight: 700; color: #2563eb; margin-bottom: 4px; display: block; }

.home-hero-box {
    position: relative;   /* ← WAJIB ditambahkan, biar jadi acuan posisi absolute di dalamnya */
}

.level-icon-home {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
}
.level-icon-home svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.waste-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.waste-category-card {
    border: 2px solid #fff;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.waste-category-card:hover {
    border-color: #93c5fd;
}

.waste-category-card.selected {
    border-color: #2563EB;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
/* ===== SIPICK — KATEGORI SAMPAH v2 (gambar di atas) ===== */
.waste-category-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 4px;
}
.waste-category-card-v2 {
    border: 2px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}
.waste-category-card-v2:hover {
    border-color: #93c5fd;
}
.waste-category-card-v2.selected {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.wc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    overflow: hidden;
}
.wc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wc-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.waste-category-card-v2.selected .wc-check {
    display: flex;
}
.wc-info {
    padding: 12px 14px 14px;
}
.wc-name-v2 {
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 4px;
}
.wc-desc-v2 {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 8px;
}
.wc-rate-v2 {
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
}
.form-input-v2 {
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 14px;
}
.wc-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.wc-name {
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 2px;
}

.wc-rate {
    font-size: 12px;
    color: #64748b;
}

.waste-category-card.selected .wc-rate {
    color: #2563EB;
    font-weight: 600;
}
.news-top-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.news-top-scroll::-webkit-scrollbar { display: none; }
.news-top-scroll .news-top-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin-bottom: 0;
}

/* ===== AUTH SPLIT CARD — MASUK / DAFTAR ===== */
#login-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.auth-card {
    display: flex;
    width: 850px;
    max-width: 100%;
    min-height: 520px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.auth-form-side {
    flex: 1;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-intro-text {
    text-align: center;
    margin-bottom: 24px;
}
.home-hero-rupiah {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin-top: -4px;
}
.auth-logo {
    width: 90px;
    display: block;
    margin: 0 auto 28px;
}
.auth-color-side {
    flex: 0 0 320px;
    background: linear-gradient(150deg, #0868E3 0%, #063f8a 100%);
    border-radius: 160px 0 0 160px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
}
.auth-color-side h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.auth-color-side p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 26px;
}
.auth-btn-outline {
    padding: 12px 34px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s;
}
.auth-btn-outline:hover { background: rgba(255,255,255,0.15); }

.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeIn 0.3s ease; }

.auth-title {
    font-size: 30px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 26px;
}
.auth-field { margin-bottom: 20px; }
.auth-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}
.auth-field input:focus {
    border-color: #0868E3;
    background: #fff;
}

.auth-field-password {
    position: relative;
}
.auth-field-password input {
    padding-right: 46px;
}
.auth-eye-btn {
    position: absolute !important;
    width: auto !important;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 4px !important;
    margin: 0 !important;
    cursor: pointer;
    color: #94a3b8;
    display: flex;
    align-items: center;
}
.auth-eye-btn svg {
    width: 20px;
    height: 20px;
}
.auth-eye-btn.active {
    color: #0868E3;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: #0868E3;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 6px;
    transition: 0.2s;
}
.auth-btn:hover { background: #0656c4; }
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    margin: 18px 0 4px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.home-slogan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
    padding: 0 4px;
}
.home-slogan-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 12px;
}
.home-slogan-item:first-child {
    border-right: 1px solid #e2e8f0;
}
.home-slogan-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}
.home-slogan-title {
    font-size: 8px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}
.home-slogan-desc {
    font-size: 6px;
    color: #64748b;
    line-height: 1.3;
}
.auth-divider span { padding: 0 12px; }

.auth-switch-text {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 18px;
}
.auth-switch-text a {
    color: #0868E3;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .auth-card {
        flex-direction: column;
        width: 100%;
        min-height: auto;
    }
    .auth-color-side {
        border-radius: 0 0 40px 40px;
        padding: 30px 24px;
    }
    .auth-form-side { padding: 32px 24px; }
}


/* ===== SIPICK — UKURAN NYAMAN DIBACA ===== */
.sipick-banner {
    padding: 20px;
    min-height: 140px;
}
.sipick-banner-title {
    font-size: 22px;
    margin-bottom: 6px;
}
.sipick-banner-desc {
    font-size: 13px;
}
#sipickPage .form-group {
    margin-bottom: 16px;
}
#sipickPage .form-label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}
#sipickPage .form-label.form-label-thin {
    font-weight: 400;
}
.wc-img-wrap {
    aspect-ratio: 1 / 1;
}
.wc-info {
    padding: 12px 14px 14px;
}
.wc-name-v2 {
    font-size: 15px;
    margin-bottom: 4px;
}
.wc-desc-v2 {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.wc-rate-v2 {
    font-size: 13px;
}
#sipickPage .form-input-v2 {
    font-size: 15px;
    padding: 14px 16px;
}
#sipickPage textarea.form-input-v2 {
    font-family: inherit;
}
#sipickPage .pick-form {
    padding: 18px;
}
#sipickPage .btn-primary {
    padding: 14px;
    font-size: 15px;
    margin-top: 15px;
    width: 100%;
}

/* ===== SIPICK — TANGGAL & BERAT (2 kotak sejajar + ikon SVG) ===== */
.pick-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.pick-info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0868e3;
    border: 1px solid #0868e3;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    position: relative;
}
.pick-address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
}
.pick-address-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #0868e3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pick-address-icon svg {
    width: 18px;
    height: 18px;
}
.pick-address-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    font-family: inherit;
    resize: none;
    line-height: 1.4;
}
.pick-address-input:focus {
    outline: none;
}
.pick-info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #fff;
    color: #0868e3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pick-info-arrow {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 6px;
}
.pick-info-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.pick-info-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.pick-info-input-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
}
.pick-info-icon svg {
    width: 18px;
    height: 18px;
}
.pick-info-text {
    flex: 1;
    min-width: 0;
}
.pick-info-label {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.wc-more-link {
    font-size: 12px;
    color: #2e7d32;
    font-weight: 600;
    cursor: pointer;
    margin: 2px 0;
}
.wc-more-link span { font-size: 14px; }

.waste-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.waste-modal-overlay.active { display: flex; }

.waste-modal {
    background: #fff;
    border-radius: 16px;
    width: 85%;
    max-width: 360px;
    padding: 20px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}
.waste-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    width: 28px; height: 28px;
    cursor: pointer;
}
.waste-modal-header {
    text-align: center;
    margin-bottom: 16px;
}
.waste-modal-img {
    width: 60px; height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 8px;
}
.waste-modal-title {
    font-size: 18px;
    font-weight: 700;
}
.waste-modal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.waste-modal-list-item {
    background: #f7f9f7;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
}

/* ===== MODAL INPUT BERAT ===== */
.weight-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.weight-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}
.weight-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    padding: 24px 20px 20px;
    position: relative;
    animation: slideUp 0.3s ease;
}
.weight-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.weight-modal-close:hover {
    background: #e2e8f0;
}
.weight-modal-header {
    text-align: center;
    margin-bottom: 20px;
}
.weight-modal-icon {
    font-size: 40px;
    margin-bottom: 8px;
}
.weight-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}
.weight-modal-desc {
    font-size: 13px;
    color: #64748b;
}
.weight-modal-body {
    margin-bottom: 16px;
}
.weight-modal-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 14px;
    box-sizing: border-box;
}
.weight-modal-input:focus {
    border-color: #0868e3;
}
.weight-modal-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.weight-quick-btn {
    padding: 10px 8px;
    background: #f0f9ff;
    border: 1.5px solid #bae6fd;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #0868e3;
    cursor: pointer;
    transition: all 0.2s;
}
.weight-quick-btn:hover {
    background: #0868e3;
    color: #fff;
    border-color: #0868e3;
}
.weight-modal-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0868e3, #4A90E2);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}
.weight-modal-submit:hover {
    transform: translateY(-2px);
}

/* ===== CUSTOM DATE PICKER — STARTUP STYLE ===== */
.date-picker-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.date-picker-overlay.active {
    display: flex;
}
.date-picker-modal {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}
.date-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}
.date-picker-nav {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: #f8fafc;
    color: #0868e3;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.date-picker-nav:hover {
    background: #0868e3;
    color: #fff;
    transform: scale(1.05);
}
.date-picker-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.3px;
}
.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}
.date-picker-weekdays div {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    padding: 8px 0;
    text-transform: uppercase;
}
.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}
.date-picker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #334155;
    background: #f8fafc;
}
.date-picker-day:hover:not(.empty):not(.selected) {
    background: #dbeafe;
    color: #0868e3;
    transform: scale(1.1);
}
.date-picker-day.empty {
    cursor: default;
    background: transparent;
}
.date-picker-day.selected {
    background: linear-gradient(135deg, #0868e3, #4A90E2);
    color: #fff;
    box-shadow: 0 4px 12px rgba(8, 104, 227, 0.4);
    transform: scale(1.05);
}
.date-picker-day.today {
    border: 2px solid #0868e3;
    font-weight: 800;
}
.date-picker-day.today.selected {
    border-color: #fff;
}
.date-picker-footer {
    display: flex;
    gap: 10px;
    padding-top: 16px;
    border-top: 2px solid #f1f5f9;
}
.date-picker-btn-secondary {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.date-picker-btn-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #475569;
}
.date-picker-btn-primary {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #0868e3, #4A90E2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(8, 104, 227, 0.3);
}
.date-picker-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(8, 104, 227, 0.4);
}

.nav-spacer {
    width: 76px;
    flex: 0 0 76px;
}

@keyframes skeletonPulse {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, #eef1f4 25%, #e2e6ea 37%, #eef1f4 63%);
    background-size: 400% 100%;
    animation: skeletonPulse 1.4s ease infinite;
    border-radius: 12px;
}
.skeleton-banner {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
}
.skeleton-product {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.skeleton-product-img {
    width: 100%;
    aspect-ratio: 1/1;
}
.skeleton-line {
    height: 12px;
    width: 70%;
}
.skeleton-line.short {
    width: 40%;
}

/* ================== POPUP JADWALKAN PICKUP ================== */
.sch-overlay{
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(8,104,227,0.45);
  backdrop-filter: blur(3px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.sch-overlay.show{
  display:flex;
  opacity: 1;
}
.sch-popup{
  position: relative;
  width: 340px;
  max-width: 92vw;
  min-height: 430px;
  background: #ffffff;
  border-radius: 26px;
  padding: 80px 26px 40px 26px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.28);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display:flex;
  flex-direction: column;
}
.sch-overlay.show .sch-popup{
  transform: scale(1);
  opacity: 1;
}
.sch-badge-circle{
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #0868e3;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 28px rgba(8,104,227,0.3);
}
.sch-badge-circle img{
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.sch-badge-circle.loading img{
  animation: sch-spin 1.1s linear infinite;
}
@keyframes sch-spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
.sch-check-mark{
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 42px;
  height: 42px;
  background: #0868e3;
  clip-path: polygon(
    50% 0%, 65.3% 13.0%, 85.4% 14.6%, 87.0% 34.7%,
    100% 50%, 87.0% 65.3%, 85.4% 85.4%, 65.3% 87.0%,
    50% 100%, 34.7% 87.0%, 14.6% 85.4%, 13.0% 65.3%,
    0% 50%, 13.0% 34.7%, 14.6% 14.6%, 34.7% 13.0%
  );
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  transform: scale(0.4) rotate(-15deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 4px 10px rgba(8,104,227,0.4);
}
.sch-check-mark.show{
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.sch-check-mark svg{
  width: 17px;
  height: 17px;
  stroke: #ffffff;
  stroke-width: 3;
  fill:none;
}
.sch-close-btn{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border:none;
  background:#f1f4f9;
  color:#666;
  font-size:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 2;
}
.sch-close-btn:hover{ background:#e3e8f0; }
.sch-label-small{
  color:#8a94a3;
  font-size:12px;
  font-weight:700;
  letter-spacing: 0.6px;
  margin-top: 18px;
}
.sch-title-main{
  color: #0868e3;
  font-size: 21px;
  font-weight: 800;
  margin: 8px 0 22px 0;
  line-height: 1.35;
}
.sch-blue-panel{
  background: linear-gradient(160deg, #0868e3, #054fae);
  border-radius: 18px;
  padding: 24px 20px 40px 20px;
  color: #ffffff;
  position: relative;
  margin-top: auto;
}
.sch-blue-panel h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
}
.sch-blue-panel p{
  margin:0;
  font-size: 13.5px;
  opacity: 0.95;
  line-height: 1.5;
}
.sch-see-details{
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  background: #ffffff;
  color: #0868e3;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  white-space: nowrap;
}
.sch-see-details:hover{
  background:#f3f7fd;
}
.sch-footer-note{
  text-align:center;
  color:#9aa5b1;
  font-size:11px;
  margin-top: 45px;
}

.success-popup {
            font-family: var(--font-body);
            ...
        }


/* ================== NOTIFICATION CARDS ================== */
.notif-card{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 10px;
    background: #ffffff;
    border: 1px solid #eef1f6;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.notif-card:active{
    transform: scale(0.98);
}
.notif-card.unread{
    background: #f5f9ff;
    border-color: #dbe8fc;
}
.notif-icon{
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(160deg, #0868e3, #054fae);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.notif-content{
    flex: 1;
    min-width: 0;
}
.notif-title{
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
}
.notif-desc{
    font-size: 12.5px;
    color: #64748b;
    margin-top: 3px;
    line-height: 1.45;
}
.notif-time{
    font-size: 11px;
    color: #9aa5b1;
    margin-top: 6px;
    font-weight: 600;
}
.notif-dot{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0868e3;
}
.notif-empty{
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}
.notif-empty-icon{
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.6;
}
.notif-empty-text{
    font-size: 14px;
    font-weight: 600;
}

/* ================== CHECKOUT REDESIGN ================== */
.checkout-item-card{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #eef1f6;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.checkout-item-img{
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f4f9;
}
.checkout-item-info{
    flex: 1;
    min-width: 0;
}
.checkout-item-name{
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checkout-item-qty{
    font-size: 12px;
    color: #64748b;
    margin-top: 3px;
}
.checkout-item-price{
    font-size: 13.5px;
    font-weight: 700;
    color: #0868e3;
    flex-shrink: 0;
}

.checkout-section-card{
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.checkout-section-head{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.checkout-section-icon{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(160deg, #0868e3, #054fae);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.checkout-section-icon svg{
    width: 17px;
    height: 17px;
    stroke: #ffffff;
}
.checkout-section-title{
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
}
.checkout-section-sub{
    font-size: 11.5px;
    color: #64748b;
    margin-top: 1px;
}

.checkout-summary-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #475569;
    padding: 7px 0;
}
.checkout-summary-row.total{
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    font-size: 15.5px;
    font-weight: 800;
    color: #1e293b;
}
.checkout-summary-row .value{
    font-weight: 700;
    color: #1e293b;
}
.checkout-summary-row.discount .value{
    color: #10b981;
}