        :root {
            --cg-yellow: #FFDD00;
            --cg-dark: #1a1a2e;
            --cg-navy: #0e1b3d;
            --cg-blue: #1e3a8a;
            --cg-light-bg: #f5f7fa;
            --cg-text: #1a1a2e;
        }

        * { box-sizing: border-box; }
        body { font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--cg-text); overflow-x: hidden; }

        /* ===== NAVBAR ===== */
        .cg-navbar {
            background: var(--cg-navy);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .cg-navbar .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 64px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .cg-navbar .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }
        .cg-navbar .nav-logo img {
            height: 32px;
        }
        .cg-navbar .nav-logo span {
            color: white;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        .cg-navbar .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .cg-navbar .nav-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .cg-navbar .nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }
        .cg-navbar .nav-cta {
            background: var(--cg-yellow);
            color: var(--cg-navy) !important;
            font-weight: 700 !important;
            border-radius: 8px !important;
            padding: 8px 20px !important;
        }
        .cg-navbar .nav-cta:hover { background: #ffe833 !important; }

        /* ===== PROMO BANNER ===== */
        .promo-banner {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f2457 100%);
            color: white;
            text-align: center;
            padding: 18px 20px;
            font-size: 15px;
        }
        .promo-banner strong { color: var(--cg-yellow); font-size: 16px; }
        .promo-banner .promo-btn {
            display: inline-block;
            background: var(--cg-yellow);
            color: var(--cg-navy);
            font-weight: 700;
            padding: 6px 20px;
            border-radius: 6px;
            text-decoration: none;
            margin-left: 14px;
            font-size: 14px;
            transition: background 0.2s;
        }
        .promo-banner .promo-btn:hover { background: #ffe833; }

        /* ===== HERO ===== */
        .hero-section {
            background: linear-gradient(160deg, var(--cg-navy) 0%, #0a1628 55%, #0d2048 100%);
            color: white;
            padding: 80px 20px 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255,221,0,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -150px; left: -100px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(30,58,138,0.3) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-content { position: relative; z-index: 1; max-width: 640px; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,221,0,0.15);
            border: 1px solid rgba(255,221,0,0.3);
            color: var(--cg-yellow);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .hero-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero-title .highlight { color: var(--cg-yellow); }
        .hero-subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255,255,255,0.75);
            margin-bottom: 36px;
            max-width: 500px;
        }
        .hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
        .btn-hero-primary {
            background: var(--cg-yellow);
            color: var(--cg-navy);
            font-weight: 800;
            font-size: 16px;
            padding: 14px 32px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-hero-primary:hover { background: #ffe833; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,221,0,0.3); color: var(--cg-navy); }
        .hero-guarantee {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.6);
            font-size: 13px;
        }
        .hero-image-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ghost-shield {
            width: 280px;
            height: 280px;
            background: radial-gradient(circle at 40% 40%, rgba(255,221,0,0.12) 0%, rgba(14,27,61,0.4) 60%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .ghost-shield-inner {
            width: 180px;
            height: 200px;
            background: linear-gradient(160deg, rgba(255,221,0,0.2) 0%, rgba(30,58,138,0.3) 100%);
            border-radius: 50% 50% 40% 40%;
            border: 2px solid rgba(255,221,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        /* ===== PLATFORMS ===== */
        .platforms-section {
            background: #f8f9fb;
            padding: 48px 20px;
            border-bottom: 1px solid #e8eaf0;
        }
        .platform-label {
            text-align: center;
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 24px;
            font-weight: 500;
        }
        .platform-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 32px;
        }
        .platform-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-size: 11px;
            font-weight: 500;
            cursor: default;
            transition: color 0.2s;
        }
        .platform-item:hover { color: var(--cg-blue); }
        .platform-item svg, .platform-item i {
            font-size: 28px;
            color: #adb5bd;
        }
        .platform-item:hover svg, .platform-item:hover i { color: var(--cg-blue); }

        /* ===== TAGLINE SECTION ===== */
        .tagline-section {
            background: white;
            padding: 80px 20px;
            text-align: center;
        }
        .tagline-section h2 {
            font-size: clamp(24px, 4vw, 42px);
            font-weight: 800;
            color: var(--cg-navy);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .tagline-section p {
            max-width: 700px;
            margin: 0 auto;
            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }

        /* ===== FEATURES ===== */
        .features-section {
            background: var(--cg-light-bg);
            padding: 80px 20px;
        }
        .section-title {
            text-align: center;
            font-size: clamp(22px, 3.5vw, 36px);
            font-weight: 800;
            color: var(--cg-navy);
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            text-align: center;
            color: #6c757d;
            font-size: 16px;
            margin-bottom: 52px;
        }
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 32px 28px;
            height: 100%;
            border: 1px solid #eee;
            transition: all 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-color: rgba(30,58,138,0.15);
        }
        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 18px;
        }
        .feature-card h5 {
            font-weight: 700;
            font-size: 17px;
            color: var(--cg-navy);
            margin-bottom: 10px;
        }
        .feature-card p { color: #666; font-size: 14px; line-height: 1.7; margin: 0; }

        /* ===== DEVICES SECTION ===== */
        .devices-section {
            background: white;
            padding: 80px 20px;
        }
        .devices-section .device-text h2 {
            font-size: clamp(24px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--cg-navy);
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }
        .devices-section .device-text p {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .device-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f0f4ff;
            border: 1px solid #c7d4ff;
            color: var(--cg-blue);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin: 4px 4px 4px 0;
        }
        .devices-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .devices-mockup {
            width: 300px;
            height: 280px;
            background: linear-gradient(135deg, var(--cg-navy) 0%, #1e3a8a 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 50px rgba(14,27,61,0.25);
            font-size: 100px;
        }

        /* ===== PRICING ===== */
        .pricing-section {
            background: var(--cg-light-bg);
            padding: 80px 20px;
        }
        .pricing-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            background: white;
            border-radius: 12px;
            padding: 6px;
            width: fit-content;
            margin: 0 auto 48px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .pricing-tab {
            padding: 10px 28px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: transparent;
            color: #666;
            transition: all 0.2s;
        }
        .pricing-tab.active {
            background: var(--cg-navy);
            color: white;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 36px 28px;
            border: 2px solid #e8eaf0;
            position: relative;
            transition: all 0.3s;
        }
        .plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
        .plan-card.featured {
            border-color: var(--cg-yellow);
            box-shadow: 0 8px 30px rgba(255,221,0,0.2);
        }
        .plan-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--cg-yellow);
            color: var(--cg-navy);
            font-size: 12px;
            font-weight: 800;
            padding: 4px 16px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .plan-name {
            font-size: 14px;
            font-weight: 700;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .plan-price {
            font-size: 44px;
            font-weight: 900;
            color: var(--cg-navy);
            line-height: 1;
            margin-bottom: 4px;
            letter-spacing: -1px;
        }
        .plan-price sup { font-size: 20px; vertical-align: super; }
        .plan-price-unit {
            font-size: 13px;
            color: #888;
            margin-bottom: 6px;
        }
        .plan-billing {
            font-size: 12px;
            color: #aaa;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .plan-save {
            display: inline-block;
            background: #fff3cd;
            color: #856404;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 6px;
            margin-bottom: 20px;
        }
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }
        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: #444;
            margin-bottom: 10px;
        }
        .plan-features li i { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
        .btn-plan {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-plan-primary {
            background: var(--cg-yellow);
            color: var(--cg-navy);
        }
        .btn-plan-primary:hover { background: #ffe833; transform: translateY(-1px); }
        .btn-plan-secondary {
            background: var(--cg-navy);
            color: white;
        }
        .btn-plan-secondary:hover { background: #1e3a8a; transform: translateY(-1px); }
        .plan-guarantee {
            text-align: center;
            font-size: 12px;
            color: #888;
            margin-top: 12px;
        }

        /* ===== REVIEWS ===== */
        .reviews-section {
            background: white;
            padding: 80px 20px;
        }
        .review-card {
            background: #f8f9fb;
            border-radius: 16px;
            padding: 28px;
            height: 100%;
            border: 1px solid #eee;
        }
        .review-stars { color: #fbbf24; font-size: 16px; margin-bottom: 12px; }
        .review-text { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 16px; }
        .review-author { font-size: 13px; font-weight: 700; color: var(--cg-navy); }
        .review-platform { font-size: 12px; color: #888; }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--cg-light-bg);
            padding: 80px 20px;
        }
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid #eee;
        }
        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--cg-navy);
            font-size: 15px;
            user-select: none;
        }
        .faq-question:hover { background: #fafafa; }
        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.32s cubic-bezier(.4,0,.2,1);
            border-top: 0px solid #f0f0f0;
        }
        .faq-answer > .faq-answer-inner {
            overflow: hidden;
            padding: 0 24px;
            color: #555;
            font-size: 14px;
            line-height: 1.8;
        }
        .faq-answer.open {
            grid-template-rows: 1fr;
            border-top-width: 1px;
        }
        .faq-answer.open > .faq-answer-inner { padding-bottom: 20px; }

        /* ===== CTA BANNER ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--cg-navy) 0%, #1e3a8a 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(26px, 4vw, 44px);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .cta-section p {
            color: rgba(255,255,255,0.7);
            font-size: 16px;
            margin-bottom: 36px;
        }

        /* ===== FOOTER ===== */
        .cg-footer {
            background: #0d1a35;
            color: rgba(255,255,255,0.6);
            padding: 60px 20px 40px;
        }
        .footer-logo {
            font-size: 20px;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
        .footer-col h6 {
            color: rgba(255,255,255,0.9);
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li { margin-bottom: 8px; }
        .footer-col ul li a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p { margin: 0; font-size: 12px; }
        .trustpilot-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #00b67a;
            color: white;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
        }

        /* ===== PAYMENT MODAL ===== */
        .pay-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(4px);
            z-index: 9000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .pay-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }
        .pay-modal {
            background: white;
            border-radius: 20px;
            width: 92%;
            max-width: 480px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        .pay-overlay.show .pay-modal { transform: translateY(0); }
        .pay-modal-header {
            background: linear-gradient(135deg, var(--cg-navy) 0%, #1e3a8a 100%);
            color: white;
            padding: 24px 28px;
            border-radius: 20px 20px 0 0;
            position: relative;
        }
        .pay-modal-header h4 { margin: 0; font-weight: 800; font-size: 20px; }
        .pay-modal-header p { margin: 4px 0 0; opacity: 0.7; font-size: 13px; }
        .pay-modal-close {
            position: absolute;
            top: 16px; right: 20px;
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 32px; height: 32px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .pay-modal-close:hover { background: rgba(255,255,255,0.25); }
        .pay-modal-body { padding: 28px; }
        .pay-plan-info {
            background: #f8f9fb;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .pay-plan-info .plan-label { font-size: 13px; color: #888; }
        .pay-plan-info .plan-value { font-size: 22px; font-weight: 900; color: var(--cg-navy); }
        .pay-plan-info .plan-period { font-size: 13px; color: var(--cg-navy); font-weight: 700; }
        .pay-usdt-amount {
            text-align: center;
            margin-bottom: 24px;
        }
        .pay-usdt-amount .amount-label { font-size: 13px; color: #888; margin-bottom: 4px; }
        .pay-usdt-amount .amount-value { font-size: 36px; font-weight: 900; color: #0d9488; }
        .pay-usdt-amount .amount-unit { font-size: 14px; color: #888; margin-left: 4px; }
        .pay-network-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e6f7f5;
            color: #0d9488;
            border: 1px solid #a7f3d0;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-top: 6px;
        }
        .pay-address-wrap {
            margin-bottom: 20px;
        }
        .pay-address-label {
            font-size: 12px;
            font-weight: 700;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .pay-address-group {
            display: flex;
            gap: 8px;
        }
        .pay-address-input {
            flex: 1;
            background: #f8f9fb;
            border: 1px solid #e0e4ed;
            border-radius: 10px;
            padding: 12px 14px;
            font-size: 12px;
            font-family: monospace;
            color: var(--cg-navy);
            outline: none;
        }
        .pay-copy-btn {
            background: var(--cg-navy);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .pay-copy-btn:hover { background: #1e3a8a; }
        .pay-copy-btn.copied { background: #22c55e; }

        .pay-wallet-section {
            background: #f0f4ff;
            border: 1px solid #c7d4ff;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 20px;
        }
        .pay-wallet-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--cg-blue);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .pay-wallet-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
        }
        .wallet-status-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }
        .wallet-status-badge.disconnected { background: #e9ecef; color: #666; }
        .wallet-status-badge.connected { background: #d1fae5; color: #065f46; }
        .wallet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 12px;
        }
        .wallet-btn {
            background: white;
            border: 1px solid #e0e4ed;
            border-radius: 10px;
            padding: 10px 6px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .wallet-btn:hover { background: #f8f9fb; border-color: #c7d4ff; color: inherit; }
        .wallet-btn:active { transform: scale(0.95); }
        .wallet-btn img { width: 36px; height: 36px; border-radius: 8px; margin-bottom: 6px; }
        .wallet-btn span { font-size: 11px; color: #555; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .pay-web3-btn {
            width: 100%;
            background: var(--cg-blue);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .pay-web3-btn:hover { background: #1e3a8a; }

        .pay-wallet-functions {
            display: flex;
            gap: 8px;
            flex-direction: column;
            margin-top: 10px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-6px);
            transition: max-height 0.38s cubic-bezier(.4,0,.2,1),
                        opacity 0.28s ease,
                        transform 0.28s ease;
        }
        .pay-wallet-functions.visible {
            max-height: 300px;
            opacity: 1;
            transform: translateY(0);
        }
        .wallet-func-btn {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 13px;
            font-weight: 700;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .pay-notices {
            background: #fff9e6;
            border: 1px solid #fde68a;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 20px;
        }
        .pay-notices h6 {
            font-size: 13px;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .pay-notice-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 12px;
            color: #555;
            margin-bottom: 8px;
        }
        .pay-notice-item:last-child { margin-bottom: 0; }
        .pay-notice-item i { color: #22c55e; flex-shrink: 0; margin-top: 2px; }

        .pay-confirm-btn {
            width: 100%;
            background: var(--cg-yellow);
            color: var(--cg-navy);
            border: none;
            border-radius: 12px;
            padding: 16px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 12px;
        }
        .pay-confirm-btn:hover { background: #ffe833; transform: translateY(-1px); }

        .pay-countdown {
            text-align: center;
            font-size: 12px;
            color: #888;
        }
        .pay-countdown strong { color: #e53e3e; }

        .pay-mobile-section {
            margin-bottom: 20px;
        }
        .pay-step {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .pay-step:last-child { border-bottom: none; }
        .pay-step-num {
            width: 24px;
            height: 24px;
            background: var(--cg-navy);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .pay-step-text { font-size: 13px; color: #555; }

        /* ===== QR section ===== */
        .pay-qr-section {
            text-align: center;
            margin-bottom: 20px;
        }
        .pay-qr-section img {
            border-radius: 12px;
            border: 4px solid #f0f0f0;
        }
        .pay-qr-label {
            font-size: 12px;
            color: #888;
            margin-top: 10px;
        }

        /* ===== LOADING ===== */
        .pay-loading {
            display: none;
            text-align: center;
            padding: 20px;
        }
        .pay-loading.show { display: block; }
        .spinner-ring {
            width: 44px; height: 44px;
            border: 4px solid #e0e4ed;
            border-top-color: var(--cg-blue);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 12px;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ===== SCROLL-REVEAL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,1,.36,1);
        }
        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,1,.36,1);
        }
        .reveal-left.in-view { opacity: 1; transform: translateX(0); }
        .reveal-right {
            opacity: 0;
            transform: translateX(32px);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22,1,.36,1);
        }
        .reveal-right.in-view { opacity: 1; transform: translateX(0); }

        /* Stagger children */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.22,1,.36,1);
        }
        .stagger-children.in-view > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0s; }
        .stagger-children.in-view > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: .08s; }
        .stagger-children.in-view > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: .16s; }
        .stagger-children.in-view > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: .24s; }
        .stagger-children.in-view > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: .32s; }
        .stagger-children.in-view > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: .40s; }

        /* Hero entrance — uses transitions triggered by JS class so elements start VISIBLE */
        .hero-badge, .hero-title, .hero-subtitle, .hero-cta-group, .hero-guarantee {
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.22,1,.36,1);
        }
        body:not(.hero-loaded) .hero-badge,
        body:not(.hero-loaded) .hero-title,
        body:not(.hero-loaded) .hero-subtitle,
        body:not(.hero-loaded) .hero-cta-group,
        body:not(.hero-loaded) .hero-guarantee {
            /* Intentionally NOT setting opacity:0 here — elements stay visible by default */
        }
        body.hero-loaded .hero-badge   { /* no extra opacity needed */ }

        @media (prefers-reduced-motion: reduce) {
            .reveal, .reveal-left, .reveal-right, .stagger-children > * { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
        }

        /* ===== TOAST ===== */
        .cg-toast {
            position: fixed;
            bottom: 32px; left: 50%;
            transform: translateX(-50%) translateY(80px);
            background: var(--cg-navy);
            color: white;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            z-index: 99999;
            opacity: 0;
            transition: all 0.35s ease;
            pointer-events: none;
        }
        .cg-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .cg-toast.success { background: #22c55e; }
        .cg-toast.error { background: #ef4444; }

        /* ===== LOGIN GATE MODAL ===== */
        .login-gate-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10,15,40,0.65);
            backdrop-filter: blur(8px) saturate(160%);
            -webkit-backdrop-filter: blur(8px) saturate(160%);
            z-index: 9100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, backdrop-filter 0.25s ease;
        }
        .login-gate-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }
        .login-gate-overlay.closing {
            opacity: 0;
            pointer-events: none;
        }
        .login-gate-modal {
            background: white;
            border-radius: 24px;
            width: 92%;
            max-width: 420px;
            overflow: hidden;
            box-shadow: 0 32px 72px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,.06);
            transform: scale(0.88) translateY(28px);
            opacity: 0;
            transition: transform 0.38s cubic-bezier(.34,1.48,.64,1), opacity 0.28s ease;
            will-change: transform, opacity;
        }
        .login-gate-overlay.show .login-gate-modal {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        .login-gate-overlay.closing .login-gate-modal {
            transform: scale(0.94) translateY(12px);
            opacity: 0;
            transition: transform 0.22s ease-in, opacity 0.18s ease-in;
        }
        /* Step icons pulse animation */
        .login-gate-step-num {
            animation: none;
        }
        .login-gate-overlay.show .login-gate-step-num:nth-child(1) { animation: stepPop 0.4s 0.25s both cubic-bezier(.34,1.56,.64,1); }
        .login-gate-overlay.show .login-gate-step:nth-child(1) .login-gate-step-num { animation: stepPop 0.4s 0.25s both cubic-bezier(.34,1.56,.64,1); }
        .login-gate-overlay.show .login-gate-step:nth-child(2) .login-gate-step-num { animation: stepPop 0.4s 0.35s both cubic-bezier(.34,1.56,.64,1); }
        .login-gate-overlay.show .login-gate-step:nth-child(3) .login-gate-step-num { animation: stepPop 0.4s 0.45s both cubic-bezier(.34,1.56,.64,1); }
        @keyframes stepPop {
            from { transform: scale(0.5); opacity: 0; }
            to   { transform: scale(1);   opacity: 1; }
        }
        .login-gate-top {
            background: linear-gradient(135deg, var(--cg-navy) 0%, #1e3a8a 100%);
            padding: 36px 32px 28px;
            text-align: center;
            position: relative;
        }
        .login-gate-icon {
            width: 64px;
            height: 64px;
            background: rgba(255,221,0,0.15);
            border: 2px solid rgba(255,221,0,0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
        }
        .login-gate-top h3 {
            color: white;
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 8px;
        }
        .login-gate-top p {
            color: rgba(255,255,255,0.65);
            font-size: 14px;
            margin: 0;
            line-height: 1.5;
        }
        .login-gate-close {
            position: absolute;
            top: 14px; right: 16px;
            background: rgba(255,255,255,0.12);
            border: none;
            color: white;
            width: 30px; height: 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .login-gate-close:hover { background: rgba(255,255,255,0.22); }
        .login-gate-body {
            padding: 28px 32px 32px;
        }
        .login-gate-plan {
            background: #f8f9fb;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }
        .login-gate-plan-icon {
            width: 40px; height: 40px;
            background: #fff3cd;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .login-gate-plan-info .label { font-size: 12px; color: #888; }
        .login-gate-plan-info .value { font-size: 15px; font-weight: 800; color: var(--cg-navy); }
        .login-gate-steps {
            margin-bottom: 24px;
        }
        .login-gate-step {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 14px;
            color: #444;
        }
        .login-gate-step-num {
            width: 26px; height: 26px;
            background: var(--cg-navy);
            color: white;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .login-gate-step-num.done {
            background: #22c55e;
        }
        .login-gate-btn-primary {
            width: 100%;
            background: var(--cg-yellow);
            color: var(--cg-navy);
            border: none;
            border-radius: 12px;
            padding: 15px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }
        .login-gate-btn-primary:hover {
            background: #ffe833;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(255,221,0,0.35);
            color: var(--cg-navy);
        }
        .login-gate-btn-secondary {
            width: 100%;
            background: #f3f4f6;
            color: #444;
            border: none;
            border-radius: 12px;
            padding: 13px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .login-gate-btn-secondary:hover { background: #e5e7eb; color: #333; }
        .login-gate-divider {
            text-align: center;
            font-size: 12px;
            color: #bbb;
            margin: 10px 0;
        }

        /* ===== LANG SWITCHER ===== */
        .lang-switcher {
            position: relative;
        }
        .lang-btn {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.18);
            color: white;
            padding: 7px 13px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .lang-btn:hover { background: rgba(255,255,255,0.18); }
        .lang-btn svg { flex-shrink: 0; }
        .lang-btn .lang-code { font-size: 13px; font-weight: 700; letter-spacing: 1px; }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            padding: 10px;
            min-width: 280px;
            display: none;
            z-index: 2000;
            animation: dropFade 0.18s ease;
        }
        .lang-dropdown.open { display: block; }
        @keyframes dropFade {
            from { opacity: 0; transform: translateY(-6px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .lang-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }
        .lang-option {
            padding: 9px 14px;
            border-radius: 8px;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            transition: background 0.15s;
            white-space: nowrap;
        }
        .lang-option:hover { background: #f3f4f6; }
        .lang-option.active { background: #eff6ff; color: var(--cg-blue); font-weight: 700; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .cg-navbar .nav-links { display: none; }
            /* Keep logo icon, hide logo text to free space for user avatar + lang */
            .cg-navbar .nav-logo span { display: none; }
            /* Hide username text next to avatar, show avatar circle only */
            .nav-username-text { display: none; }
            /* Tighten navbar padding */
            .cg-navbar .navbar-inner { padding: 0 14px; }
            .hero-section { padding: 52px 20px 64px; }
            .hero-image-wrap { display: none; }
            .pricing-grid { grid-template-columns: 1fr; }
            .ghost-shield { width: 200px; height: 200px; }
            .ghost-shield-inner { width: 130px; height: 150px; font-size: 60px; }
            .wallet-grid { grid-template-columns: repeat(3, 1fr); }
            .lang-dropdown { right: -10px; min-width: 240px; }
        }