*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg: #F8FCFD;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --bg-sidebar: #ffffff;
            --bg-input: #ffffff;
            --bg-hover: #EDF7F8;
            --bg-active: #E0F5F6;
            --fg: #1D2939;
            --fg-secondary: #475467;
            --fg-muted: #8896A6;
            --silver: #DDE5EA;
            --primary: #32E3E3;
            --primary-rgb: 50,227,227;
            --secondary: #14C5D4;
            --secondary-rgb: 20,197,212;
            --accent-hover: #00E5FF;
            --accent-hover-rgb: 0,229,255;
            --green: #12B76A;
            --green-light: #D1FADF;
            --green-hover: #0E9F5C;
            --teal: #0891B2;
            --teal-light: #CFFAFE;
            --border: #E4EAF0;
            --border-light: #F1F5F9;
            --shadow-sm: 0 1px 3px rgba(29,41,57,0.04), 0 1px 2px rgba(29,41,57,0.03);
            --shadow-md: 0 4px 16px rgba(29,41,57,0.07), 0 2px 6px rgba(29,41,57,0.04);
            --shadow-lg: 0 12px 40px rgba(29,41,57,0.1), 0 4px 12px rgba(29,41,57,0.05);
            --shadow-glow: 0 0 24px rgba(50,227,227,0.15);
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;
        }

        html { height: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

        body {
            font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg); color: var(--fg); min-height: 100vh; overflow-x: hidden;
        }

        body::before {
            content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background:
                radial-gradient(ellipse 800px 600px at 20% 10%, rgba(50,227,227,0.04) 0%, transparent 70%),
                radial-gradient(ellipse 600px 500px at 80% 80%, rgba(20,197,212,0.03) 0%, transparent 70%),
                radial-gradient(ellipse 400px 400px at 50% 50%, rgba(0,229,255,0.02) 0%, transparent 70%);
        }
        body::after {
            content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background-image: radial-gradient(rgba(50,227,227,0.05) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        /* === HEADER === */
        .site-header {
            position: sticky; top: 0; z-index: 100;
            background: rgba(248,252,253,0.88);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }
        .header-inner {
            max-width: 1340px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 28px; height: 64px; position: relative; z-index: 1;
        }
        .header-left { display: flex; align-items: center; gap: 4px; }
        .header-filter-btn {
            text-decoration: none; color: var(--fg-secondary);
            font-size: 0.85rem; font-weight: 600;
            padding: 8px 20px; border-radius: var(--radius-full);
            transition: all 0.2s; cursor: pointer; border: none; background: none;
            font-family: inherit; position: relative;
        }
        .header-filter-btn:hover { background: var(--bg-hover); color: var(--secondary); }
        .header-filter-btn.active {
            background: linear-gradient(135deg, rgba(50,227,227,0.12), rgba(20,197,212,0.12));
            color: var(--secondary); font-weight: 700;
        }

        .hamburger-wrapper { position: relative; margin-left: 4px; }
        .hamburger-btn {
            display: none; align-items: center; justify-content: center;
            width: 40px; height: 40px; border: none; background: none;
            cursor: pointer; border-radius: var(--radius-full);
            transition: background 0.2s; color: var(--fg-secondary); padding: 0;
        }
        .hamburger-btn:hover { background: var(--bg-hover); }
        .hamburger-btn .bar {
            display: block; width: 20px; height: 2px; border-radius: 2px;
            background: var(--fg-secondary); transition: all 0.3s; position: absolute;
        }
        .hamburger-btn .bar:nth-child(1) { transform: translateY(-6px); }
        .hamburger-btn .bar:nth-child(2) { transform: translateY(0); }
        .hamburger-btn .bar:nth-child(3) { transform: translateY(6px); }
        .hamburger-btn.open .bar:nth-child(1) { transform: rotate(45deg); }
        .hamburger-btn.open .bar:nth-child(2) { opacity: 0; }
        .hamburger-btn.open .bar:nth-child(3) { transform: rotate(-45deg); }

        .hamburger-dropdown {
            position: absolute; top: calc(100% + 8px); right: 0;
            min-width: 200px; background: var(--bg-white);
            border: 1px solid var(--border); border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg); padding: 6px;
            opacity: 0; transform: translateY(-8px) scale(0.96);
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1);
            z-index: 200;
        }
        .hamburger-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
        .hamburger-dropdown a {
            display: flex; align-items: center; gap: 10px;
            padding: 11px 16px; border-radius: var(--radius);
            text-decoration: none; color: var(--fg-secondary);
            font-size: 0.85rem; font-weight: 500; transition: all 0.2s;
        }
        .hamburger-dropdown a:hover { background: var(--bg-hover); color: var(--secondary); }
        .hamburger-dropdown a svg { width: 18px; height: 18px; opacity: 0.5; flex-shrink: 0; }
        .hamburger-dropdown a:hover svg { opacity: 1; color: var(--primary); }

        .header-right-desktop { display: flex; align-items: center; gap: 2px; }
        .header-right-desktop a {
            text-decoration: none; color: var(--fg-secondary);
            font-size: 0.85rem; font-weight: 500;
            padding: 8px 16px; border-radius: var(--radius-full); transition: all 0.2s;
        }
        .header-right-desktop a:hover { background: var(--bg-hover); color: var(--secondary); }

        /* =========================================
           SHARED OVERLAY PANEL STYLES
           ========================================= */
        .overlay-panel {
            position: fixed; inset: 0; z-index: 500;
            pointer-events: none; opacity: 0;
            transition: opacity 0.35s ease;
        }
        .overlay-panel.open { pointer-events: auto; opacity: 1; }
        .overlay-backdrop {
            position: absolute; inset: 0;
            background: rgba(29,41,57,0.35);
            backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
        }
        .panel-slide {
            position: absolute; top: 0; right: 0; bottom: 0;
            width: min(640px, 92vw);
            background: var(--bg-white);
            box-shadow: -8px 0 40px rgba(29,41,57,0.12);
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
            display: flex; flex-direction: column; overflow: hidden;
        }
        .overlay-panel.open .panel-slide { transform: translateX(0); }

        .panel-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 20px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0;
        }
        .panel-title {
            font-size: 1.1rem; font-weight: 800; color: var(--fg);
            display: flex; align-items: center; gap: 10px;
        }
        .panel-title svg { width: 22px; height: 22px; color: var(--secondary); }
        .panel-close-btn {
            width: 40px; height: 40px; border: none; background: var(--bg-hover);
            border-radius: var(--radius-full); cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: var(--fg-secondary); transition: all 0.2s;
        }
        .panel-close-btn:hover { background: #FEF3F2; color: #D92D20; }
        .panel-close-btn svg { width: 18px; height: 18px; }

        .panel-body {
            flex: 1; overflow-y: auto; padding: 0;
            -webkit-overflow-scrolling: touch;
        }
        .panel-body::-webkit-scrollbar { width: 6px; }
        .panel-body::-webkit-scrollbar-track { background: transparent; }
        .panel-body::-webkit-scrollbar-thumb { background: var(--silver); border-radius: 3px; }
        .panel-body::-webkit-scrollbar-thumb:hover { background: var(--fg-muted); }

        .panel-hero {
            position: relative; padding: 40px 32px 36px;
            border-bottom: 1px solid var(--border-light); overflow: hidden;
        }
        .panel-hero::before {
            content: ''; position: absolute; top: -60px; right: -60px;
            width: 200px; height: 200px; border-radius: 50%;
            background: radial-gradient(circle, rgba(50,227,227,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .panel-hero::after {
            content: ''; position: absolute; bottom: -40px; left: -40px;
            width: 150px; height: 150px; border-radius: 50%;
            background: radial-gradient(circle, rgba(20,197,212,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .panel-hero-badge {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 5px 14px; border-radius: var(--radius-full);
            background: linear-gradient(135deg, rgba(50,227,227,0.12), rgba(20,197,212,0.12));
            color: var(--secondary); font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 18px; position: relative;
        }
        .panel-hero-badge svg { width: 13px; height: 13px; }
        .panel-hero h1 {
            font-size: 1.6rem; font-weight: 800; color: var(--fg);
            line-height: 1.3; margin-bottom: 12px; position: relative;
        }
        .panel-hero h1 span {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .panel-hero p {
            font-size: 0.88rem; color: var(--fg-secondary); line-height: 1.7;
            position: relative; max-width: 520px;
        }

        .panel-section { padding: 32px 32px 0; }
        .panel-section:last-child { padding-bottom: 40px; }
        .panel-section-label {
            font-size: 0.68rem; font-weight: 800; color: var(--fg-muted);
            text-transform: uppercase; letter-spacing: 0.1em;
            margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
        }
        .panel-section-label::after {
            content: ''; flex: 1; height: 1px;
            background: linear-gradient(to right, var(--silver), transparent);
        }
        .panel-section p {
            font-size: 0.86rem; color: var(--fg-secondary); line-height: 1.8; margin-bottom: 14px;
        }
        .panel-section p:last-child { margin-bottom: 0; }
        .panel-section strong { color: var(--fg); font-weight: 700; }

        .panel-footer {
            padding: 20px 32px; border-top: 1px solid var(--border);
            background: var(--bg-white); flex-shrink: 0;
        }

        /* === ABOUT SPECIFIC === */
        .about-hero { background: linear-gradient(135deg, rgba(50,227,227,0.06) 0%, rgba(20,197,212,0.03) 100%); }
        .about-stats {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
            padding: 28px 32px; border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light); background: var(--bg);
        }
        .about-stat {
            text-align: center; padding: 16px 8px;
            background: var(--bg-white); border-radius: var(--radius-lg);
            border: 1px solid var(--border-light); transition: all 0.3s;
        }
        .about-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .about-stat-number {
            font-size: 1.5rem; font-weight: 800;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .about-stat-label { font-size: 0.72rem; color: var(--fg-muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
        .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .about-feature-card {
            padding: 20px; border-radius: var(--radius-lg);
            background: var(--bg); border: 1px solid var(--border-light); transition: all 0.3s;
        }
        .about-feature-card:hover {
            background: linear-gradient(135deg, rgba(50,227,227,0.04), rgba(20,197,212,0.02));
            border-color: rgba(50,227,227,0.2); transform: translateY(-2px); box-shadow: var(--shadow-md);
        }
        .about-feature-icon {
            width: 40px; height: 40px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, rgba(50,227,227,0.12), rgba(20,197,212,0.08));
            color: var(--secondary); margin-bottom: 12px;
        }
        .about-feature-icon svg { width: 20px; height: 20px; }
        .about-feature-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
        .about-feature-card p { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.6; margin: 0; }
        .about-brand-list { display: flex; flex-direction: column; gap: 12px; }
        .about-brand-item {
            display: flex; align-items: center; gap: 16px;
            padding: 16px 18px; border-radius: var(--radius-lg);
            background: var(--bg); border: 1px solid var(--border-light); transition: all 0.25s;
        }
        .about-brand-item:hover { border-color: rgba(50,227,227,0.25); background: linear-gradient(135deg, rgba(50,227,227,0.04), transparent); transform: translateX(4px); }
        .about-brand-logo {
            width: 44px; height: 44px; border-radius: 12px; object-fit: contain; flex-shrink: 0;
            background: var(--bg-white); border: 1px solid var(--border-light); padding: 6px;
        }
        .about-brand-info { flex: 1; min-width: 0; }
        .about-brand-name { font-size: 0.88rem; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
        .about-brand-desc { font-size: 0.76rem; color: var(--fg-muted); line-height: 1.5; }
        .about-brand-tag {
            font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
            padding: 3px 10px; border-radius: var(--radius-full); flex-shrink: 0;
            background: linear-gradient(135deg, rgba(50,227,227,0.1), rgba(20,197,212,0.08)); color: var(--secondary);
        }
        .about-values { display: flex; flex-direction: column; gap: 10px; }
        .about-value-item {
            display: flex; align-items: flex-start; gap: 14px;
            padding: 16px 18px; border-radius: var(--radius-lg);
            background: var(--bg); border: 1px solid var(--border-light); transition: all 0.25s;
        }
        .about-value-item:hover { border-color: rgba(50,227,227,0.2); transform: translateX(3px); }
        .about-value-num {
            width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: #fff; font-size: 0.72rem; font-weight: 800;
        }
        .about-value-text h4 { font-size: 0.84rem; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
        .about-value-text p { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.55; margin: 0; }
        .about-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        .about-cta-text { font-size: 0.82rem; color: var(--fg-secondary); font-weight: 500; }
        .about-cta-text strong { color: var(--fg); }
        .panel-cta-btn {
            display: inline-flex; align-items: center; gap: 7px;
            padding: 10px 24px; border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: #fff; border: none; font-family: inherit; font-weight: 700; font-size: 0.82rem;
            cursor: pointer; transition: all 0.25s; flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(50,227,227,0.25);
        }
        .panel-cta-btn:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent-hover));
            box-shadow: 0 4px 18px rgba(0,229,255,0.35); transform: translateY(-1px);
        }
        .panel-cta-btn svg { width: 16px; height: 16px; }

        /* === BANTUAN SPECIFIC === */
        .bantuan-hero { background: linear-gradient(135deg, rgba(20,197,212,0.06) 0%, rgba(50,227,227,0.04) 100%); }

        .bantuan-quick-actions {
            display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
            padding: 28px 32px; border-bottom: 1px solid var(--border-light); background: var(--bg);
        }
        .bantuan-quick-btn {
            display: flex; align-items: center; gap: 12px;
            padding: 16px 18px; border-radius: var(--radius-lg);
            background: var(--bg-white); border: 1px solid var(--border);
            cursor: pointer; transition: all 0.25s; font-family: inherit;
        }
        .bantuan-quick-btn:hover {
            border-color: var(--primary); transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(50,227,227,0.1), var(--shadow-md);
        }
        .bantuan-quick-btn-icon {
            width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.25s;
        }
        .bantuan-quick-btn-icon svg { width: 20px; height: 20px; }
        .bantuan-quick-btn-text { font-size: 0.82rem; font-weight: 700; color: var(--fg); line-height: 1.35; }
        .bantuan-quick-btn-text small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--fg-muted); margin-top: 2px; }

        .bantuan-quick-btn.btn-search-action .bantuan-quick-btn-icon {
            background: linear-gradient(135deg, rgba(50,227,227,0.12), rgba(20,197,212,0.08)); color: var(--secondary);
        }
        .bantuan-quick-btn.btn-search-action:hover .bantuan-quick-btn-icon {
            background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff;
        }
        .bantuan-quick-btn.btn-wa-action .bantuan-quick-btn-icon {
            background: var(--green-light); color: var(--green);
        }
        .bantuan-quick-btn.btn-wa-action:hover .bantuan-quick-btn-icon {
            background: linear-gradient(135deg, var(--green), #0EA472); color: #fff;
        }
        .bantuan-quick-btn.btn-lc-action .bantuan-quick-btn-icon {
            background: var(--teal-light); color: var(--teal);
        }
        .bantuan-quick-btn.btn-lc-action:hover .bantuan-quick-btn-icon {
            background: linear-gradient(135deg, var(--teal), #0E7490); color: #fff;
        }
        .bantuan-quick-btn.btn-gallery-action .bantuan-quick-btn-icon {
            background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(139,92,246,0.08)); color: #7C3AED;
        }
        .bantuan-quick-btn.btn-gallery-action:hover .bantuan-quick-btn-icon {
            background: linear-gradient(135deg, #7C3AED, #6D28D9); color: #fff;
        }

        /* FAQ Accordion */
        .faq-list { display: flex; flex-direction: column; gap: 8px; }
        .faq-item {
            border: 1px solid var(--border); border-radius: var(--radius-lg);
            background: var(--bg-white); overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .faq-item:hover { border-color: rgba(50,227,227,0.2); }
        .faq-item.open { border-color: var(--primary); box-shadow: 0 2px 12px rgba(50,227,227,0.08); }
        .faq-question {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 20px; cursor: pointer; gap: 12px;
            font-size: 0.84rem; font-weight: 600; color: var(--fg);
            transition: color 0.2s; user-select: none;
        }
        .faq-question:hover { color: var(--secondary); }
        .faq-item.open .faq-question { color: var(--secondary); }
        .faq-chevron {
            width: 20px; height: 20px; flex-shrink: 0;
            transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); color: var(--fg-muted);
        }
        .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
        .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), padding 0.35s;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px; padding: 0 20px 18px;
        }
        .faq-answer p {
            font-size: 0.82rem; color: var(--fg-secondary); line-height: 1.7; margin: 0;
        }
        .faq-answer a {
            color: var(--secondary); text-decoration: none; font-weight: 600;
            border-bottom: 1px solid rgba(50,227,227,0.3); transition: all 0.2s;
        }
        .faq-answer a:hover { color: var(--primary); border-bottom-color: var(--primary); }
        .faq-answer strong { color: var(--fg); }

        /* Steps */
        .help-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
        .help-steps::before {
            content: ''; position: absolute; left: 19px; top: 28px; bottom: 28px;
            width: 2px; background: linear-gradient(to bottom, var(--primary), rgba(50,227,227,0.15));
            border-radius: 1px;
        }
        .help-step {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 16px 0; position: relative;
        }
        .help-step-num {
            width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            background: var(--bg-white); border: 2px solid var(--primary);
            color: var(--secondary); font-size: 0.82rem; font-weight: 800;
            position: relative; z-index: 1;
            box-shadow: 0 0 0 4px var(--bg-white);
        }
        .help-step-content h4 { font-size: 0.84rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
        .help-step-content p { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.6; margin: 0; }

        /* Contact cards */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .contact-card {
            padding: 20px; border-radius: var(--radius-lg);
            border: 1px solid var(--border); background: var(--bg-white);
            transition: all 0.3s; cursor: pointer;
        }
        .contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .contact-card.card-wa:hover { border-color: var(--green); }
        .contact-card.card-lc:hover { border-color: var(--teal); }
        .contact-card-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 12px;
        }
        .contact-card.card-wa .contact-card-icon { background: var(--green-light); color: var(--green); }
        .contact-card.card-lc .contact-card-icon { background: var(--teal-light); color: var(--teal); }
        .contact-card-icon svg { width: 22px; height: 22px; }
        .contact-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
        .contact-card p { font-size: 0.76rem; color: var(--fg-muted); line-height: 1.55; margin: 0; }
        .contact-card-status {
            display: inline-flex; align-items: center; gap: 5px;
            margin-top: 10px; font-size: 0.68rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.04em;
        }
        .contact-card-status .dot {
            width: 6px; height: 6px; border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
        .contact-card.card-wa .contact-card-status { color: var(--green); }
        .contact-card.card-wa .dot { background: var(--green); }
        .contact-card.card-lc .contact-card-status { color: var(--teal); }
        .contact-card.card-lc .dot { background: var(--teal); }

        /* Bantuan CTA */
        .bantuan-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        .bantuan-cta-text { font-size: 0.82rem; color: var(--fg-secondary); font-weight: 500; }
        .bantuan-cta-text strong { color: var(--fg); }

        /* === HERO === */
        .hero-section {
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; min-height: calc(100vh - 64px);
            padding: 48px 24px; position: relative; z-index: 1;
            transition: min-height 0.5s ease, padding 0.5s ease;
        }
        .hero-section.collapsed { min-height: auto; padding: 28px 24px 20px; }
        .hero-logo {
            margin-bottom: 28px; text-align: center;
            transition: margin 0.5s ease, max-width 0.5s ease;
            max-width: 320px; width: 100%;
            filter: drop-shadow(0 4px 20px rgba(50,227,227,0.12));
        }
        .hero-logo img { width: 100%; height: auto; object-fit: contain; display: block; }
        .hero-section.collapsed .hero-logo { margin-bottom: 12px; max-width: 120px; }
        .hero-subtitle {
            text-align: center; font-size: 0.92rem; color: var(--fg-muted);
            margin-bottom: 30px; font-weight: 500;
            transition: margin 0.4s ease, font-size 0.4s ease;
        }
        .hero-section.collapsed .hero-subtitle { margin-bottom: 10px; font-size: 0.76rem; }

        /* === SEARCH BAR === */
        .search-container { width: 100%; max-width: 700px; position: relative; z-index: 50; }
        .search-bar {
            display: flex; align-items: center; width: 100%; height: 54px;
            border: 2px solid var(--silver); border-radius: var(--radius-full);
            background: var(--bg-input); padding: 0 8px 0 22px;
            transition: border-color 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-sm);
        }
        .search-bar:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(50,227,227,0.1), var(--shadow-md); }
        .search-bar-icon { color: var(--fg-muted); margin-right: 12px; flex-shrink: 0; display: flex; align-items: center; transition: color 0.3s; }
        .search-bar:focus-within .search-bar-icon { color: var(--primary); }
        .search-bar-icon svg { width: 19px; height: 19px; }
        .search-input { flex: 1; min-width: 0; height: 100%; border: none; outline: none; background: transparent; font-size: 0.92rem; font-family: inherit; color: var(--fg); letter-spacing: 0.01em; }
        .search-input::placeholder { color: var(--fg-muted); font-weight: 400; }
        .btn-search {
            display: inline-flex; align-items: center; justify-content: center; gap: 7px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: #fff; border: none; font-family: inherit; font-weight: 700; font-size: 0.88rem;
            padding: 0 26px; height: 40px; border-radius: var(--radius-full);
            cursor: pointer; flex-shrink: 0; transition: all 0.25s;
            box-shadow: 0 2px 10px rgba(50,227,227,0.25);
        }
        .btn-search:hover { background: linear-gradient(135deg, var(--primary), var(--accent-hover)); box-shadow: 0 4px 18px rgba(0,229,255,0.35); transform: translateY(-1px); }
        .btn-search:active { transform: translateY(0) scale(0.97); }
        .btn-search svg { width: 16px; height: 16px; }
        .btn-lucky {
            display: inline-flex; align-items: center; justify-content: center;
            background: transparent; color: var(--fg-secondary); border: 1.5px solid var(--silver);
            font-family: inherit; font-weight: 600; font-size: 0.8rem;
            padding: 0 18px; height: 40px; border-radius: var(--radius-full);
            cursor: pointer; flex-shrink: 0; margin-left: 8px; transition: all 0.25s;
        }
        .btn-lucky:hover { background: var(--bg-hover); border-color: var(--primary); color: var(--secondary); transform: translateY(-1px); }
        .btn-lucky:active { transform: scale(0.97); }

        /* === SUGGEST === */
        .suggest-dropdown {
            position: absolute; top: calc(100% + 8px); left: 0; right: 0;
            background: var(--bg-white); border: 1px solid var(--border);
            border-radius: var(--radius-xl); padding: 0; overflow: hidden;
            box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-8px) scale(0.98);
            pointer-events: none; transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16,1,0.3,1); z-index: 100;
        }
        .suggest-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; position: relative; }
        .suggest-header { padding: 14px 20px 6px; font-size: 0.7rem; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
        .suggest-list { list-style: none; padding: 4px 0 10px; }
        .suggest-item { display: flex; align-items: center; gap: 12px; padding: 10px 20px; cursor: pointer; transition: background 0.15s; }
        .suggest-item:hover, .suggest-item.active { background: var(--bg-hover); }
        .suggest-item-icon { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(50,227,227,0.1), rgba(20,197,212,0.1)); color: var(--secondary); }
        .suggest-item-icon svg { width: 14px; height: 14px; }
        .suggest-item-text { font-size: 0.85rem; color: var(--fg-secondary); font-weight: 500; transition: color 0.15s; }
        .suggest-item:hover .suggest-item-text, .suggest-item.active .suggest-item-text { color: var(--fg); }
        .suggest-item-text mark { background: rgba(50,227,227,0.15); color: var(--secondary); padding: 0 2px; border-radius: 3px; font-weight: 600; }

        /* === GALLERY === */
        .gallery-section { max-width: 1340px; margin: 0 auto; padding: 0 28px 16px; position: relative; z-index: 1; }
        .gallery-section.hidden { display: none; }
        .gallery-brand-group { margin-bottom: 36px; animation: fadeUp 0.5s cubic-bezier(0.16,1,0.3,1) both; }
        .gallery-brand-group:nth-child(2) { animation-delay: 0.1s; }
        .gallery-brand-group:nth-child(3) { animation-delay: 0.2s; }
        .gallery-brand-title { font-size: 0.78rem; font-weight: 800; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; padding-left: 4px; display: flex; align-items: center; gap: 10px; }
        .gallery-brand-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, var(--silver), transparent); }
        .gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
        .gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; border: 1px solid var(--border); background: var(--bg-white); box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); aspect-ratio: 16 / 10; }
        .gallery-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 30px rgba(50,227,227,0.12), var(--shadow-md); border-color: var(--primary); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,41,57,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 12px; }
        .gallery-item:hover .gallery-item-overlay { opacity: 1; }
        .gallery-item-label { font-size: 0.72rem; font-weight: 700; color: #fff; background: rgba(50,227,227,0.85); padding: 4px 12px; border-radius: var(--radius-full); backdrop-filter: blur(4px); }

        /* === LIGHTBOX === */
        .lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
        .lightbox.open { opacity: 1; pointer-events: auto; }
        .lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: scale(0.92); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
        .lightbox.open img { transform: scale(1); }
        .lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border: none; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
        .lightbox-close:hover { background: rgba(255,255,255,0.2); }
        .lightbox-close svg { width: 22px; height: 22px; }
        .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: none; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
        .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
        .lightbox-nav svg { width: 22px; height: 22px; }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        .lightbox-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.4); padding: 8px 20px; border-radius: var(--radius-full); backdrop-filter: blur(8px); white-space: nowrap; }

        /* === TRENDING === */
        .trending-section { margin-top: 28px; text-align: center; transition: margin 0.4s ease, opacity 0.4s ease, max-height 0.5s ease; max-height: 200px; overflow: hidden; }
        .trending-section.hidden { opacity: 0; max-height: 0; margin-top: 0; pointer-events: none; }
        .trending-label { font-size: 0.75rem; color: var(--fg-muted); font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .trending-label::before, .trending-label::after { content: ''; width: 30px; height: 1px; background: var(--silver); }
        .trending-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .trending-tag { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: var(--radius-full); background: var(--bg-white); color: var(--fg-secondary); font-size: 0.82rem; font-weight: 600; cursor: pointer; border: 1px solid var(--silver); transition: all 0.25s; box-shadow: var(--shadow-sm); }
        .trending-tag:hover { background: linear-gradient(135deg, rgba(50,227,227,0.08), rgba(0,229,255,0.08)); color: var(--secondary); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
        .trending-tag svg { width: 14px; height: 14px; opacity: 0.5; }
        .trending-tag:hover svg { opacity: 1; color: var(--primary); }

        /* === INSTRUCTIONS === */
        .instructions { text-align: center; margin-top: 24px; list-style: decimal; list-style-position: inside; font-size: 0.85rem; color: var(--fg-muted); line-height: 2; transition: opacity 0.3s, max-height 0.4s; max-height: 80px; overflow: hidden; }
        .instructions.hidden { opacity: 0; max-height: 0; margin: 0; pointer-events: none; }
        .instructions strong { color: var(--secondary); font-weight: 700; }

        /* === RESULTS === */
        .results-layout { max-width: 1340px; margin: 0 auto; padding: 0 28px 80px; display: grid; grid-template-columns: 230px 1fr 280px; gap: 24px; opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; pointer-events: none; max-height: 0; overflow: hidden; position: relative; z-index: 1; }
        .results-layout.visible { opacity: 1; transform: translateY(0); pointer-events: auto; max-height: none; overflow: visible; }
        .sidebar-left { position: sticky; top: 92px; align-self: start; background: var(--bg-sidebar); border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 10px; box-shadow: var(--shadow-sm); }
        .sidebar-left-title { font-size: 0.67rem; font-weight: 800; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; padding: 8px 14px 8px; }
        .sidebar-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--radius); font-size: 0.84rem; font-weight: 500; color: var(--fg-secondary); cursor: pointer; transition: all 0.2s; }
        .sidebar-item:hover { background: var(--bg-hover); color: var(--fg); }
        .sidebar-item.active { background: linear-gradient(135deg, rgba(50,227,227,0.1), rgba(20,197,212,0.1)); color: var(--secondary); font-weight: 700; }
        .sidebar-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.5; }
        .sidebar-item:hover svg { opacity: 0.8; }
        .sidebar-item.active svg { opacity: 1; color: var(--primary); }
        .sidebar-count { margin-left: auto; font-size: 0.7rem; font-weight: 700; background: var(--bg-hover); color: var(--fg-muted); padding: 2px 9px; border-radius: var(--radius-full); min-width: 26px; text-align: center; }
        .sidebar-item.active .sidebar-count { background: linear-gradient(135deg, rgba(50,227,227,0.15), rgba(20,197,212,0.15)); color: var(--secondary); }
        .results-main { min-width: 0; }
        .results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 0 2px; }
        .results-count { font-size: 0.82rem; color: var(--fg-muted); font-weight: 500; }
        .results-count span { color: var(--secondary); font-weight: 800; }
        .results-count strong { color: var(--fg); }
        .btn-reset { display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px; border-radius: var(--radius-full); background: var(--bg-white); color: var(--fg-secondary); border: 1px solid var(--silver); font-size: 0.78rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.25s; box-shadow: var(--shadow-sm); }
        .btn-reset:hover { background: #FEF3F2; color: #D92D20; border-color: #FECDD3; transform: translateY(-1px); }
        .btn-reset svg { width: 13px; height: 13px; }
        .results-list { display: flex; flex-direction: column; gap: 12px; }
        .result-card { display: flex; text-decoration: none; color: inherit; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px 24px; gap: 16px; align-items: flex-start; cursor: pointer; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); animation: cardIn 0.4s cubic-bezier(0.16,1,0.3,1) both; box-shadow: var(--shadow-sm); }
        .result-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(50,227,227,0.1), var(--shadow-md); border-color: var(--primary); }
        .result-card:active { transform: translateY(-1px) scale(0.998); }
        @keyframes cardIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .card-favicon { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; object-fit: contain; background: linear-gradient(135deg, rgba(50,227,227,0.04), rgba(20,197,212,0.04)); padding: 8px; border: 1px solid var(--border-light); transition: border-color 0.2s; }
        .result-card:hover .card-favicon { border-color: rgba(50,227,227,0.2); }
        .card-body { flex: 1; min-width: 0; }
        .card-url { font-size: 0.72rem; font-weight: 700; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; letter-spacing: 0.03em; }
        .card-url svg { width: 12px; height: 12px; flex-shrink: 0; -webkit-text-fill-color: var(--primary); }
        .card-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 6px; line-height: 1.4; transition: color 0.2s; }
        .result-card:hover .card-title { color: var(--secondary); }
        .card-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .card-desc mark, .card-title mark { background: rgba(50,227,227,0.12); color: var(--secondary); padding: 1px 3px; border-radius: 3px; font-weight: 600; }
        .card-title mark { background: rgba(50,227,227,0.16); font-weight: 700; }
        .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
        .card-tag { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 11px; border-radius: var(--radius-full); background: linear-gradient(135deg, rgba(50,227,227,0.08), rgba(20,197,212,0.08)); color: var(--secondary); }
        .card-tag.tag-wa { background: var(--green-light); color: var(--green); }
        .card-tag.tag-lc { background: var(--teal-light); color: var(--teal); }
        .result-card.card-wa { cursor: default; }
        .result-card.card-wa:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(18,183,106,0.08), var(--shadow-md); }
        .result-card.card-wa:hover .card-title { color: var(--green); }
        .wa-buttons { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
        .wa-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; text-decoration: none; color: #fff; background: linear-gradient(135deg, var(--green), #0EA472); border: none; cursor: pointer; font-family: inherit; transition: all 0.25s; box-shadow: 0 2px 10px rgba(18,183,106,0.2); }
        .wa-btn:hover { background: linear-gradient(135deg, var(--green-hover), var(--green)); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(18,183,106,0.3); }
        .wa-btn:active { transform: scale(0.97); }
        .wa-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
        .group-separator { height: 1px; margin: 6px 0; background: linear-gradient(to right, transparent, var(--silver), transparent); }
        .sidebar-right { position: sticky; top: 92px; align-self: start; display: flex; flex-direction: column; gap: 20px; }
        .sidebar-card { background: var(--bg-sidebar); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s; }
        .sidebar-card:hover { box-shadow: var(--shadow-md); }
        .sidebar-card-title { font-size: 0.82rem; font-weight: 700; color: var(--fg); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
        .sidebar-card-title svg { width: 16px; height: 16px; color: var(--primary); }
        .related-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
        .related-item { padding: 10px 12px; border-radius: var(--radius); font-size: 0.82rem; color: var(--fg-secondary); font-weight: 500; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
        .related-item:hover { background: linear-gradient(135deg, rgba(50,227,227,0.08), rgba(20,197,212,0.05)); color: var(--secondary); }
        .related-item svg { width: 14px; height: 14px; opacity: 0.4; flex-shrink: 0; }
        .related-item:hover svg { opacity: 1; color: var(--primary); }
        .question-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .question-item { padding: 13px 14px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border-light); font-size: 0.8rem; color: var(--fg-secondary); font-weight: 500; cursor: pointer; transition: all 0.25s; line-height: 1.5; display: flex; align-items: flex-start; gap: 0; }
        .question-item:hover { background: linear-gradient(135deg, rgba(50,227,227,0.06), rgba(0,229,255,0.04)); border-color: rgba(50,227,227,0.2); color: var(--secondary); transform: translateX(3px); }
        .question-item::before { content: '?'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, rgba(50,227,227,0.12), rgba(20,197,212,0.12)); color: var(--secondary); font-size: 0.7rem; font-weight: 800; margin-right: 10px; margin-top: 1px; }
        .site-footer { text-align: center; font-size: 0.8rem; padding: 28px 0 36px; color: var(--fg-muted); font-weight: 500; border-top: 1px solid var(--border); background: var(--bg-white); position: relative; z-index: 1; }
        .site-footer .brand { font-weight: 800; background: linear-gradient(135deg, var(--secondary), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .site-footer a { color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
        .site-footer a:hover { color: var(--secondary); }
        .toast-container { position: fixed; top: 80px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
        .toast { background: var(--bg-white); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 14px 20px; font-size: 0.84rem; color: var(--fg); box-shadow: var(--shadow-lg); pointer-events: auto; animation: toastIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; max-width: 360px; font-family: inherit; }
        .toast.out { animation: toastOut 0.3s ease forwards; }
        @keyframes toastIn { from { opacity:0; transform: translateX(30px) scale(0.95); } to { opacity:1; transform: translateX(0) scale(1); } }
        @keyframes toastOut { from { opacity:1; transform: translateX(0); } to { opacity:0; transform: translateX(30px) scale(0.95); } }
        .fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
        .fade-up:nth-child(1) { animation-delay: 0.05s; }
        .fade-up:nth-child(2) { animation-delay: 0.15s; }
        .fade-up:nth-child(3) { animation-delay: 0.25s; }
        @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
        @media (prefers-reduced-motion: reduce) { .fade-up, .result-card, .gallery-brand-group { animation: none !important; opacity: 1; transform: none; } }
        .search-input:focus-visible, .btn-search:focus-visible, .btn-lucky:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
        .search-bar:focus-within .search-input:focus-visible { outline: none; }

        @media (max-width: 1100px) {
            .results-layout { grid-template-columns: 1fr 260px; }
            .sidebar-left { display: none; }
            .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
        }
        @media (max-width: 768px) {
            .header-right-desktop { display: none; }
            .hamburger-btn { display: flex; }
            .hero-section { padding: 32px 16px; min-height: calc(100vh - 56px); }
            .hero-logo { max-width: 260px; }
            .results-layout { grid-template-columns: 1fr; gap: 16px; padding: 0 16px 60px; }
            .sidebar-right { position: static; }
            .result-card { padding: 16px; gap: 12px; }
            .card-favicon { width: 42px; height: 42px; border-radius: 12px; }
            .card-title { font-size: 0.92rem; }
            .card-desc { font-size: 0.78rem; }
            .btn-lucky { display: none; }
            .header-inner { padding: 0 16px; height: 56px; }
            .wa-btn { padding: 8px 14px; font-size: 0.75rem; }
            .gallery-section { padding: 0 16px 12px; }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
            .header-filter-btn { padding: 7px 14px; font-size: 0.8rem; }
            .panel-slide { width: 100vw; }
            .panel-hero { padding: 28px 20px 24px; }
            .panel-hero h1 { font-size: 1.3rem; }
            .panel-section { padding: 24px 20px 0; }
            .panel-header { padding: 16px 20px; }
            .panel-footer { padding: 16px 20px; }
            .about-stats { padding: 20px; gap: 10px; }
            .about-features, .contact-grid, .bantuan-quick-actions { grid-template-columns: 1fr; }
            .about-cta, .bantuan-cta { flex-direction: column; align-items: stretch; text-align: center; }
        }
        @media (max-width: 480px) {
            .hero-section.collapsed .hero-logo { max-width: 90px; }
            .search-bar { height: 50px; padding: 0 6px 0 16px; }
            .btn-search { padding: 0 18px; height: 36px; font-size: 0.82rem; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .header-filter-btn { padding: 6px 12px; font-size: 0.78rem; }
            .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
            .about-stat { padding: 12px 4px; }
            .about-stat-number { font-size: 1.2rem; }
            .about-stat-label { font-size: 0.65rem; }
        }