/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --bg: #05050A;
            --bg-card: rgba(255,255,255,0.03);
            --border: rgba(255,255,255,0.06);
            --border-hover: rgba(255,255,255,0.12);
            --text: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --accent: #06B6D4;
            --accent-light: #67E8F9;
            --accent-glow: rgba(6, 182, 212, 0.15);
            --purple: #8B5CF6;
            --purple-glow: rgba(139, 92, 246, 0.15);
            --gradient: linear-gradient(135deg, #06B6D4, #8B5CF6);
            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html { scroll-behavior: smooth; }
        body {
            background: var(--bg);
            color: var(--text);
            font-family: var(--font);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
        }

        /* ===== ANIMATED BACKGROUND ===== */
        .bg-grid {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0; pointer-events: none;
        }
        .bg-glow-1 {
            position: fixed; top: -20%; left: -10%; width: 600px; height: 600px;
            background: radial-gradient(circle, var(--accent-glow), transparent 70%);
            filter: blur(80px); z-index: 0; pointer-events: none;
            animation: floatGlow1 20s ease-in-out infinite;
        }
        .bg-glow-2 {
            position: fixed; top: 30%; right: -15%; width: 500px; height: 500px;
            background: radial-gradient(circle, var(--purple-glow), transparent 70%);
            filter: blur(80px); z-index: 0; pointer-events: none;
            animation: floatGlow2 25s ease-in-out infinite;
        }
        @keyframes floatGlow1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(80px, 60px); }
        }
        @keyframes floatGlow2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-60px, -40px); }
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 16px 0;
            background: rgba(5, 5, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .nav.scrolled {
            padding: 10px 0;
            background: rgba(5, 5, 10, 0.95);
        }
        .nav-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo {
            font-size: 20px; font-weight: 800; letter-spacing: -0.03em;
            background: var(--gradient); -webkit-background-clip: text; background-clip: text;
            -webkit-text-fill-color: transparent; text-decoration: none;
        }
        .nav-links {
            display: flex; align-items: center; gap: 8px;
        }
        .nav-link {
            padding: 8px 16px; color: var(--text-secondary); text-decoration: none;
            font-size: 14px; font-weight: 500; border-radius: 8px;
            transition: all 0.2s ease;
        }
        .nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }

        /* Language Switcher */
        .lang-switch {
            position: relative;
        }
        .lang-btn {
            background: rgba(255,255,255,0.05); border: 1px solid var(--border);
            color: var(--text); font-family: inherit; font-size: 13px; font-weight: 600;
            padding: 8px 14px; border-radius: 8px; cursor: pointer;
            display: flex; align-items: center; gap: 6px; transition: all 0.2s;
        }
        .lang-btn:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.08); }
        .lang-arrow { font-size: 10px; opacity: 0.6; transition: transform 0.3s; }
        .lang-dropdown {
            position: absolute; top: calc(100% + 8px); right: 0;
            width: 160px; background: rgba(15, 15, 25, 0.95);
            backdrop-filter: blur(20px); border: 1px solid var(--border);
            border-radius: 12px; padding: 6px;
            opacity: 0; visibility: hidden; transform: translateY(-8px);
            transition: all 0.25s ease; z-index: 100;
            max-height: 320px; overflow-y: auto;
        }
        .lang-switch.open .lang-dropdown {
            opacity: 1; visibility: visible; transform: translateY(0);
        }
        .lang-switch.open .lang-arrow { transform: rotate(180deg); }
        .lang-option {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 12px; color: var(--text-secondary); text-decoration: none;
            font-size: 13px; border-radius: 8px; transition: 0.2s; cursor: pointer;
        }
        .lang-option:hover { background: rgba(255,255,255,0.08); color: #fff; }

        /* Community dropdown */
        .community-switch { position: relative; }
        .community-dropdown {
            position: absolute; top: calc(100% + 8px); right: 0;
            width: 180px; background: rgba(15, 15, 25, 0.95);
            backdrop-filter: blur(20px); border: 1px solid var(--border);
            border-radius: 12px; padding: 6px;
            opacity: 0; visibility: hidden; transform: translateY(-8px);
            transition: all 0.25s ease; z-index: 100;
        }
        .community-switch.open .community-dropdown {
            opacity: 1; visibility: visible; transform: translateY(0);
        }

        /* Nav CTA */
        .nav-cta {
            padding: 10px 24px; background: var(--gradient); color: #fff;
            border-radius: 8px; font-weight: 600; text-decoration: none;
            font-size: 14px; transition: all 0.3s; border: none; cursor: pointer;
        }
        .nav-cta:hover { box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4); transform: translateY(-1px); }

        /* Mobile menu */
        .mobile-toggle {
            display: none; background: none; border: none; color: var(--text);
            padding: 8px; cursor: pointer;
        }
        .mobile-toggle svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
        .mobile-menu {
            display: none; position: fixed; top: 64px; left: 12px; right: 12px;
            background: rgba(15, 15, 25, 0.98); backdrop-filter: blur(20px);
            border: 1px solid var(--border); border-radius: 16px;
            padding: 12px; z-index: 999; flex-direction: column; gap: 4px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            padding: 12px 16px; color: var(--text-secondary); text-decoration: none;
            font-size: 15px; font-weight: 500; border-radius: 10px; transition: 0.2s;
        }
        .mobile-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
        .mobile-lang-grid {
            display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
            padding: 8px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
            margin: 4px 0;
        }
        .mobile-lang-grid button {
            background: rgba(255,255,255,0.05); border: 1px solid var(--border);
            color: var(--text-secondary); font-size: 12px; padding: 8px 4px;
            border-radius: 6px; cursor: pointer; font-family: inherit; transition: 0.2s;
        }
        .mobile-lang-grid button:hover { background: rgba(6,182,212,0.15); color: #fff; border-color: var(--accent); }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative; z-index: 2;
            min-height: 100vh;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center;
            padding: 120px 24px 60px;
        }

        /* Animated badge */
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px; border-radius: 100px; margin-bottom: 32px;
            background: rgba(6, 182, 212, 0.08);
            border: 1px solid rgba(6, 182, 212, 0.2);
            font-size: 13px; font-weight: 600; color: var(--accent-light);
            letter-spacing: 0.02em;
            animation: badgePulse 3s ease-in-out infinite;
        }
        .hero-badge .pulse-dot {
            width: 8px; height: 8px; border-radius: 50%; background: #22D3EE;
            animation: dotPulse 2s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.1); }
            50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
        }
        @keyframes dotPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }

        /* Hero title */
        .hero-title {
            font-size: clamp(40px, 7vw, 80px);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
            margin-bottom: 24px;
            max-width: 900px;
        }
        .hero-title .gradient-text {
            background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 50%, #EC4899 100%);
            -webkit-background-clip: text; background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite;
        }
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Hero subtitle */
        .hero-subtitle {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .hero-subtitle strong { color: #fff; font-weight: 600; }

        /* Bonus line */
        .hero-bonus {
            font-size: 16px; color: var(--accent-light); font-weight: 600;
            margin-bottom: 40px;
            animation: glowText 2.5s ease-in-out infinite;
        }
        @keyframes glowText {
            0%, 100% { text-shadow: 0 0 10px rgba(6,182,212,0.2); }
            50% { text-shadow: 0 0 25px rgba(6,182,212,0.5); }
        }

        /* CTA buttons */
        .hero-ctas {
            display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
            margin-bottom: 48px;
        }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 16px 40px; background: var(--gradient); color: #fff;
            font-size: 17px; font-weight: 700; border-radius: 12px;
            text-decoration: none; border: none; cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 24px rgba(6, 182, 212, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 40px rgba(6, 182, 212, 0.5);
        }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 16px 40px; color: #fff; font-size: 17px; font-weight: 600;
            border-radius: 12px; text-decoration: none;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        /* Stats */
        .hero-stats {
            display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
            margin-bottom: 48px;
        }
        .stat {
            display: flex; flex-direction: column; align-items: center;
        }
        .stat-value {
            font-size: clamp(32px, 5vw, 48px); font-weight: 800;
            background: var(--gradient); -webkit-background-clip: text; background-clip: text;
            -webkit-text-fill-color: transparent; line-height: 1.2;
        }
        .stat-label {
            font-size: 13px; color: var(--text-muted); text-transform: uppercase;
            letter-spacing: 1.5px; font-weight: 500; margin-top: 4px;
        }

        /* Trust badges */
        .hero-trust {
            display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
            justify-content: center;
            padding: 20px 32px;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border);
            border-radius: 16px;
        }
        .trust-item {
            display: flex; align-items: center; gap: 8px;
            font-size: 13px; color: var(--text-secondary); font-weight: 500;
        }
        .trust-icon {
            width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
        }
        .trust-divider {
            width: 1px; height: 20px; background: var(--border);
        }

        /* ===== Floating particles ===== */
        .particles {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; overflow: hidden; z-index: 0;
        }
        .particle {
            position: absolute; width: 3px; height: 3px; border-radius: 50%;
            background: var(--accent); opacity: 0.3;
            animation: particleFloat linear infinite;
        }
        @keyframes particleFloat {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100px) translateX(40px); opacity: 0; }
        }

        /* ===== SCROLL INDICATOR ===== */
        .scroll-indicator {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            color: var(--text-muted); font-size: 12px; letter-spacing: 1px;
            text-transform: uppercase; animation: scrollBounce 2s infinite;
        }
        .scroll-arrow {
            width: 24px; height: 24px; border-right: 2px solid var(--text-muted);
            border-bottom: 2px solid var(--text-muted);
            transform: rotate(45deg); margin-top: -4px;
        }
        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
            .nav-links .nav-link,
            .nav-links .lang-switch,
            .nav-links .community-switch { display: none; }
            .mobile-toggle { display: flex; }
            .hero { padding: 100px 16px 60px; min-height: auto; }
            .hero-title { margin-bottom: 20px; }
            .hero-subtitle { font-size: 15px; }
            .hero-bonus { font-size: 14px; margin-bottom: 28px; }
            .hero-ctas { flex-direction: column; align-items: center; }
            .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; padding: 14px 32px; font-size: 16px; }
            .hero-stats { gap: 24px; }
            .stat-value { font-size: 28px; }
            .stat-label { font-size: 11px; }
            .hero-trust { flex-direction: column; gap: 12px; padding: 16px; }
            .trust-divider { display: none; }
            .scroll-indicator { display: none; }
        }
        @media (max-width: 400px) {
            .hero { padding: 90px 12px 40px; }
            .hero-badge { font-size: 11px; padding: 6px 14px; }
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 100px 0; position: relative; z-index: 2;
        }
        .features-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
        }
        .feat-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 20px; padding: 32px 22px;
            transition: all 0.35s ease; position: relative; overflow: hidden;
        }
        .feat-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: var(--gradient); opacity: 0; transition: opacity 0.35s;
        }
        .feat-card:hover {
            border-color: var(--border-hover); transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .feat-card:hover::before { opacity: 1; }
        .feat-wide {
            grid-column: span 3;
            display: grid; grid-template-columns: auto 1fr; gap: 24px;
            align-items: start;
        }
        .feat-icon-wrap {
            width: 56px; height: 56px; border-radius: 14px;
            background: rgba(6, 182, 212, 0.06); border: 1px solid rgba(6, 182, 212, 0.12);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px; flex-shrink: 0;
        }
        .feat-wide .feat-icon-wrap { margin-bottom: 0; }
        .feat-icon { font-size: 26px; }
        .feat-card h3 {
            font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px;
        }
        .feat-card p {
            font-size: 14px; color: var(--text-secondary); line-height: 1.7;
        }
        .feat-content h3 { margin-bottom: 10px; }
        .feat-tags {
            display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
        }
        .feat-tag {
            padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 500;
            background: rgba(255,255,255,0.04); border: 1px solid var(--border);
            color: var(--text-secondary);
        }

        /* ===== FEATURES MOBILE ===== */
        @media (max-width: 768px) {
            .features-section { padding: 60px 0; }
            .features-grid { grid-template-columns: 1fr; gap: 14px; }
            .feat-wide { grid-column: span 1; grid-template-columns: 1fr; }
            .feat-card { padding: 24px 20px; }
            .feat-icon-wrap { width: 48px; height: 48px; margin-bottom: 16px; }
            .feat-icon { font-size: 22px; }
            .feat-card h3 { font-size: 16px; }
            .feat-card p { font-size: 13px; }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .feat-wide { grid-column: span 2; }
        }

        /* ===== SHARED SECTION STYLES ===== */
        .section-container {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            position: relative; z-index: 2;
        }
        .section-header {
            text-align: center; margin-bottom: 56px;
        }
        .section-tag {
            display: inline-block; padding: 6px 18px; border-radius: 100px;
            background: rgba(6, 182, 212, 0.08); border: 1px solid rgba(6, 182, 212, 0.2);
            font-size: 12px; font-weight: 600; color: var(--accent-light);
            text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
        }
        .section-title {
            font-size: clamp(28px, 5vw, 44px); font-weight: 800;
            letter-spacing: -0.03em; line-height: 1.15; color: #fff; margin-bottom: 16px;
        }
        .section-subtitle {
            font-size: 17px; color: var(--text-secondary); max-width: 560px;
            margin: 0 auto; line-height: 1.6;
        }

        /* ===== HOW IT WORKS ===== */
        .how-section {
            padding: 100px 0 80px; position: relative; z-index: 2;
        }
        .steps-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
            margin-bottom: 48px;
        }
        .step-card {
            position: relative;
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 20px; padding: 40px 32px;
            transition: all 0.3s ease;
        }
        .step-card:hover {
            border-color: var(--border-hover); transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .step-card-accent {
            border-color: rgba(6, 182, 212, 0.2);
            background: rgba(6, 182, 212, 0.03);
        }
        .step-card-accent:hover { border-color: rgba(6, 182, 212, 0.4); }
        .step-number {
            font-size: 64px; font-weight: 900; line-height: 1;
            background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            -webkit-background-clip: text; background-clip: text;
            -webkit-text-fill-color: transparent; margin-bottom: 16px;
        }
        .step-icon { font-size: 36px; margin-bottom: 20px; }
        .step-card h3 {
            font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px;
        }
        .step-card p {
            font-size: 15px; color: var(--text-secondary); line-height: 1.65;
        }
        .step-arrow {
            position: absolute; top: 50%; right: -18px;
            font-size: 24px; color: var(--accent); font-weight: 700;
            transform: translateY(-50%); z-index: 3;
            width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
            background: var(--bg); border: 1px solid var(--border); border-radius: 50%;
        }
        .how-cta { text-align: center; }

        /* ===== SHOWCASE INFINITE SCROLL ===== */
        .showcase-section {
            padding: 80px 0 100px; position: relative; z-index: 2;
        }
        .showcase-carousel-wrapper {
            position: relative; overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        }
        .showcase-grid {
            display: flex; gap: 24px; width: max-content;
            animation: showcaseScroll 40s linear infinite;
        }
        .showcase-grid:hover { animation-play-state: paused; }
        @keyframes showcaseScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .showcase-card {
            background: rgba(15, 15, 25, 0.6); border: 1px solid var(--border);
            border-radius: 14px; overflow: hidden;
            text-decoration: none; color: inherit;
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; cursor: pointer;
            flex: 0 0 380px;
        }
        .showcase-card:hover {
            transform: translateY(-6px); border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }
        .browser-chrome {
            display: flex; align-items: center; gap: 8px;
            padding: 10px 14px;
            background: linear-gradient(180deg, #1a1a24, #141420);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }
        .browser-dots { display: flex; gap: 5px; }
        .browser-dots span {
            width: 8px; height: 8px; border-radius: 50%;
        }
        .browser-dots span:nth-child(1) { background: #ff5f57; }
        .browser-dots span:nth-child(2) { background: #febc2e; }
        .browser-dots span:nth-child(3) { background: #28c840; }
        .browser-url {
            flex: 1; background: rgba(0,0,0,0.3); border-radius: 5px;
            padding: 4px 10px; font-size: 10px; color: rgba(255,255,255,0.35);
            margin-left: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .browser-viewport {
            position: relative; aspect-ratio: 16/9; overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
        }
        .browser-viewport iframe {
            width: 200%; height: 200%; border: none;
            transform: scale(0.5); transform-origin: top left;
            pointer-events: none;
        }
        .showcase-label { padding: 14px 16px; }
        .showcase-name {
            font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px;
        }
        .showcase-type {
            font-size: 12px; color: var(--text-muted);
        }

        /* ===== MOBILE: HOW + SHOWCASE ===== */
        @media (max-width: 768px) {
            .how-section { padding: 60px 0 40px; }
            .steps-grid { grid-template-columns: 1fr; gap: 16px; }
            .step-card { padding: 28px 20px; }
            .step-arrow { display: none; }
            .step-number { font-size: 40px; }
            .step-icon { font-size: 28px; margin-bottom: 14px; }
            .step-card h3 { font-size: 18px; }
            .step-card p { font-size: 14px; }
            .section-header { margin-bottom: 36px; }
            .section-subtitle { font-size: 15px; }
            .showcase-section { padding: 40px 0 60px; }
            .showcase-card { flex: 0 0 300px; }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
            .step-card { padding: 28px 20px; }
            .step-arrow { display: none; }
            .showcase-card { flex: 0 0 340px; }
        }


        /* ===== PRICING ===== */
        .pricing-section {
            padding: 100px 0; position: relative; z-index: 2;
        }
        .token-packages { margin-bottom: 64px; }
        .token-title, .plans-title {
            text-align: center; font-size: 20px; font-weight: 700; color: #fff;
            margin-bottom: 28px;
        }
        .token-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
            max-width: 640px; margin: 0 auto;
        }
        .token-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 16px; padding: 28px 20px; text-align: center;
            transition: all 0.3s;
        }
        .token-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
        .token-card-best {
            border-color: rgba(6, 182, 212, 0.3); background: rgba(6, 182, 212, 0.04);
            position: relative;
        }
        .token-badge {
            position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
            background: var(--gradient); color: #fff; font-size: 11px; font-weight: 700;
            padding: 3px 14px; border-radius: 100px; white-space: nowrap;
        }
        .token-amount {
            font-size: 32px; font-weight: 800; color: #fff; line-height: 1.2;
        }
        .token-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
        .token-price {
            font-size: 24px; font-weight: 700; color: var(--accent-light); margin-bottom: 4px;
        }
        .token-note { font-size: 12px; color: var(--text-muted); }

        /* Plans */
        
        .plans-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
            margin-bottom: 32px;
        }
        .plan-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 20px; padding: 32px 22px;
            display: flex; flex-direction: column;
            transition: all 0.3s; position: relative;
        }
        .plan-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
        .plan-popular {
            border-color: rgba(6, 182, 212, 0.4);
            background: linear-gradient(180deg, rgba(6, 182, 212, 0.06), rgba(6, 182, 212, 0.01));
            transform: scale(1.03);
        }
        .plan-popular:hover { transform: scale(1.03) translateY(-4px); }
        .plan-popular-badge {
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            background: var(--gradient); color: #fff; font-size: 12px; font-weight: 700;
            padding: 5px 20px; border-radius: 100px; white-space: nowrap;
        }
        .plan-agency {
            border-color: rgba(139, 92, 246, 0.3);
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), rgba(139, 92, 246, 0.01));
        }
        .plan-agency-badge {
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, #8B5CF6, #EC4899); color: #fff;
            font-size: 12px; font-weight: 700; padding: 5px 20px; border-radius: 100px; white-space: nowrap;
        }
        .plan-header { margin-bottom: 8px; }
        .plan-name { font-size: 18px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
        .plan-price { font-size: 40px; font-weight: 800; color: #fff; line-height: 1.1; }
        .plan-period { font-size: 16px; font-weight: 500; color: var(--text-muted); }
        .plan-tokens {
            font-size: 15px; font-weight: 600; color: var(--accent-light);
            padding: 8px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px;
        }
        .plan-tokens span { font-weight: 400; color: var(--text-muted); }
        .plan-features {
            list-style: none; display: flex; flex-direction: column; gap: 10px;
            flex: 1; margin-bottom: 24px;
        }
        .plan-features li { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
        .plan-btn {
            display: block; text-align: center; padding: 14px 24px;
            border-radius: 10px; font-size: 15px; font-weight: 700;
            text-decoration: none; transition: all 0.3s;
            background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: #fff;
        }
        .plan-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); }
        .plan-btn-primary {
            background: var(--gradient); border: none;
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
        }
        .plan-btn-primary:hover { box-shadow: 0 8px 32px rgba(6, 182, 212, 0.5); transform: translateY(-1px); }
        .plan-btn-agency {
            background: linear-gradient(135deg, #8B5CF6, #EC4899); border: none;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        }
        .plan-btn-agency:hover { box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5); transform: translateY(-1px); }
        .pricing-note {
            text-align: center; font-size: 14px; color: var(--text-muted); max-width: 500px; margin: 0 auto;
        }

        /* Pricing Mobile */
        @media (max-width: 768px) {
            .pricing-section { padding: 60px 0; }
            .token-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
            .token-card { padding: 20px 12px; }
            .token-amount { font-size: 24px; }
            .token-price { font-size: 20px; }
            .plans-grid { grid-template-columns: 1fr; gap: 20px; max-width: 400px; margin: 0 auto 32px; }
            .plan-popular { transform: none; }
            .plan-popular:hover { transform: translateY(-4px); }
            .plan-price { font-size: 32px; }
        }
        
        @media (min-width: 769px) and (max-width: 1024px) {
            .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .plan-card { padding: 28px 20px; }
        }


        /* ===== COMPARISON ===== */
        .comparison-section {
            padding: 100px 0; position: relative; z-index: 2;
        }
        .comp-table-wrap {
            overflow-x: auto; margin-bottom: 56px; border-radius: 16px;
            border: 1px solid var(--border);
        }
        .comp-table {
            width: 100%; border-collapse: collapse; min-width: 640px;
        }
        .comp-table th, .comp-table td {
            padding: 14px 18px; text-align: center; font-size: 14px;
            border-bottom: 1px solid var(--border);
        }
        .comp-table th {
            background: rgba(255,255,255,0.03); font-weight: 700; color: #fff;
            font-size: 15px; padding: 18px;
        }
        .comp-table td:first-child, .comp-table th:first-child {
            text-align: left; font-weight: 600; color: var(--text-secondary);
        }
        .comp-table tbody tr:hover { background: rgba(255,255,255,0.02); }
        .comp-table tbody tr:last-child td { border-bottom: none; }
        .comp-highlight {
            background: rgba(6, 182, 212, 0.04) !important;
            border-left: 1px solid rgba(6, 182, 212, 0.15);
            border-right: 1px solid rgba(6, 182, 212, 0.15);
        }
        th.comp-highlight {
            background: rgba(6, 182, 212, 0.1) !important;
            color: var(--accent-light) !important;
            border-top: 2px solid var(--accent);
        }
        .comp-best {
            color: var(--accent-light); font-weight: 700; font-size: 15px;
        }
        .comp-yes { color: #22C55E; font-weight: 700; }
        .comp-no { color: #EF4444; font-weight: 700; }
        .comp-partial { color: #F59E0B; }

        /* Why Cards */
        .why-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
        }
        .why-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 16px; padding: 32px 24px; text-align: center;
            transition: all 0.3s;
        }
        .why-card:hover {
            border-color: var(--border-hover); transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.3);
        }
        .why-icon { font-size: 36px; display: block; margin-bottom: 16px; }
        .why-card h3 {
            font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px;
        }
        .why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

        /* Comparison Mobile */
        @media (max-width: 768px) {
            .comparison-section { padding: 60px 0; }
            .comp-table th, .comp-table td { padding: 10px 12px; font-size: 12px; }
            .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .why-card { padding: 24px 16px; }
            .why-icon { font-size: 28px; margin-bottom: 12px; }
            .why-card h3 { font-size: 16px; }
        }
        @media (max-width: 480px) {
            .why-grid { grid-template-columns: 1fr; }
        }

        /* ===== FAQ ===== */
        .faq-section { padding: 100px 0; position: relative; z-index: 2; }
        .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
        .faq-item {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 14px; overflow: hidden; transition: border-color 0.3s;
        }
        .faq-item.open { border-color: rgba(6, 182, 212, 0.25); }
        .faq-q {
            width: 100%; display: flex; align-items: center; justify-content: space-between;
            padding: 20px 24px; background: none; border: none; cursor: pointer;
            font-family: var(--font); font-size: 16px; font-weight: 600; color: #fff;
            text-align: left; gap: 16px; transition: color 0.2s;
        }
        .faq-q:hover { color: var(--accent-light); }
        .faq-arrow {
            font-size: 11px; color: var(--text-muted); transition: transform 0.3s;
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
        .faq-a {
            max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
        }
        .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
        .faq-a p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

        @media (max-width: 768px) {
            .faq-section { padding: 60px 0; }
            .faq-q { padding: 16px 18px; font-size: 15px; }
            .faq-item.open .faq-a { padding: 0 18px 16px; }
            .faq-a p { font-size: 14px; }
        }

        /* ===== SUPPORT CHAT WIDGET ===== */
        .support-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
        .support-fab {
            width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
            background: var(--gradient); color: #fff;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 24px rgba(6, 182, 212, 0.4);
            transition: all 0.3s; position: relative;
        }
        .support-fab:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(6, 182, 212, 0.5); }
        .support-fab-icon { font-size: 26px; transition: transform 0.3s; }
        .support-widget.open .support-fab-icon { transform: rotate(90deg); }
        .support-contact-btn {
            width: 100%; background: transparent; border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted); font-size: 12px; padding: 8px; border-radius: 8px;
            cursor: pointer; transition: all 0.2s; margin-top: 8px; font-family: inherit;
        }
        .support-contact-btn:hover { background: rgba(255,255,255,0.05); color: #fff; border-color: var(--accent); }
        .support-human-panel {
            padding: 16px; flex-direction: column; gap: 10px;
            border-top: 1px solid var(--border);
        }
        .support-human-header { font-size: 14px; font-weight: 700; color: #fff; }
        .support-human-send {
            background: var(--gradient); color: #fff; border: none; padding: 10px;
            border-radius: 8px; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 13px;
        }
        .support-human-send:hover { opacity: 0.9; }
        .support-human-back {
            background: transparent; border: 1px solid var(--border); color: var(--text-muted);
            padding: 8px; border-radius: 8px; cursor: pointer; font-family: inherit; font-size: 12px; text-align: center;
        }
        .support-human-back:hover { color: #fff; border-color: var(--accent); }
        .support-human-sent { text-align: center; padding: 20px; color: var(--accent-light); font-size: 14px; }
        .support-fab-pulse {
            position: absolute; inset: -4px; border-radius: 50%;
            border: 2px solid var(--accent); opacity: 0;
            animation: fabPulse 3s ease-in-out infinite;
        }
        @keyframes fabPulse {
            0%, 100% { transform: scale(1); opacity: 0; }
            50% { transform: scale(1.15); opacity: 0.4; }
        }
        .support-panel {
            position: absolute; bottom: 72px; right: 0;
            width: 380px; max-height: 520px;
            background: rgba(12, 12, 20, 0.98); backdrop-filter: blur(20px);
            border: 1px solid var(--border); border-radius: 20px;
            display: flex; flex-direction: column;
            opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.95);
            transition: all 0.3s ease; overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        .support-widget.open .support-panel {
            opacity: 1; visibility: visible; transform: translateY(0) scale(1);
        }
        .support-header {
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 20px; border-bottom: 1px solid var(--border);
            background: rgba(6, 182, 212, 0.04);
        }
        .support-header-info { display: flex; align-items: center; gap: 12px; }
        .support-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(6, 182, 212, 0.1); display: flex;
            align-items: center; justify-content: center; font-size: 20px;
        }
        .support-header-name { font-size: 15px; font-weight: 700; color: #fff; }
        .support-header-status { font-size: 12px; color: var(--text-muted); }
        .support-close {
            background: none; border: none; color: var(--text-muted); font-size: 18px;
            cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: 0.2s;
        }
        .support-close:hover { color: #fff; background: rgba(255,255,255,0.05); }
        .support-body {
            flex: 1; overflow-y: auto; padding: 16px 20px;
            display: flex; flex-direction: column; gap: 12px;
            min-height: 200px; max-height: 300px;
        }
        .support-welcome-text {
            font-size: 14px; color: var(--text-secondary); line-height: 1.6;
            background: rgba(255,255,255,0.03); border-radius: 12px; padding: 14px 16px;
        }
        .support-msg-bubble {
            max-width: 85%; padding: 10px 14px; border-radius: 14px;
            font-size: 14px; line-height: 1.5; word-wrap: break-word;
        }
        .support-msg-user {
            align-self: flex-end; background: rgba(6, 182, 212, 0.15);
            color: #fff; border-bottom-right-radius: 4px;
        }
        .support-msg-bot {
            align-self: flex-start; background: rgba(255,255,255,0.05);
            color: var(--text-secondary); border-bottom-left-radius: 4px;
        }
        .support-input-area {
            padding: 12px 16px; border-top: 1px solid var(--border);
            display: flex; flex-direction: column; gap: 8px;
        }
        .support-email-row { display: flex; }
        .support-email {
            width: 100%; padding: 10px 14px; border-radius: 10px;
            background: rgba(255,255,255,0.04); border: 1px solid var(--border);
            color: #fff; font-family: var(--font); font-size: 13px; outline: none;
            transition: border-color 0.2s;
        }
        .support-email:focus { border-color: rgba(6, 182, 212, 0.4); }
        .support-msg-row { display: flex; gap: 8px; align-items: flex-end; }
        .support-textarea {
            flex: 1; padding: 10px 14px; border-radius: 10px; resize: none;
            background: rgba(255,255,255,0.04); border: 1px solid var(--border);
            color: #fff; font-family: var(--font); font-size: 14px; outline: none;
            transition: border-color 0.2s; min-height: 42px; max-height: 100px;
        }
        .support-textarea:focus { border-color: rgba(6, 182, 212, 0.4); }
        .support-send {
            width: 42px; height: 42px; border-radius: 10px; border: none;
            background: var(--gradient); color: #fff; font-size: 18px; font-weight: 700;
            cursor: pointer; flex-shrink: 0; transition: 0.3s;
        }
        .support-send:hover { box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4); }
        .support-send:disabled { opacity: 0.5; cursor: not-allowed; }
        .support-typing {
            font-size: 13px; color: var(--text-muted); font-style: italic;
            padding: 8px 14px;
        }

        @media (max-width: 480px) {
            .support-widget { bottom: 16px; right: 16px; }
            .support-fab { width: 52px; height: 52px; }
            .support-fab-icon { font-size: 22px; }
            .support-panel {
                width: calc(100vw - 32px); right: 0; bottom: 64px;
                max-height: 70vh;
            }
        }

        /* ===== FINAL CTA ===== */
        .final-cta-section { padding: 80px 0 60px; position: relative; z-index: 2; }
        .final-cta-box {
            position: relative; text-align: center; padding: 64px 40px;
            border-radius: 24px; overflow: hidden;
            background: rgba(6, 182, 212, 0.04);
            border: 1px solid rgba(6, 182, 212, 0.15);
        }
        .final-cta-glow {
            position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
            width: 600px; height: 400px;
            background: radial-gradient(ellipse, rgba(6,182,212,0.12), transparent 70%);
            pointer-events: none;
        }
        .final-cta-title {
            font-size: clamp(28px, 5vw, 40px); font-weight: 800;
            color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
        }
        .final-cta-text {
            font-size: 17px; color: var(--text-secondary); max-width: 520px;
            margin: 0 auto 32px; line-height: 1.6; position: relative; z-index: 1;
        }
        .final-cta-trust {
            display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
            margin-top: 20px; position: relative; z-index: 1;
        }
        .final-cta-trust span {
            font-size: 13px; color: var(--text-muted); font-weight: 500;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 60px 0 32px; position: relative; z-index: 2;
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand { max-width: 300px; }
        .footer-desc {
            font-size: 14px; color: var(--text-muted); line-height: 1.6;
            margin: 16px 0;
        }
        .footer-social { display: flex; gap: 10px; }
        .footer-social-link {
            width: 40px; height: 40px; border-radius: 10px;
            background: rgba(255,255,255,0.04); border: 1px solid var(--border);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; text-decoration: none; transition: 0.2s;
        }
        .footer-social-link:hover { background: rgba(255,255,255,0.08); border-color: var(--border-hover); }
        .footer-col { display: flex; flex-direction: column; gap: 10px; }
        .footer-col h4 {
            font-size: 14px; font-weight: 700; color: #fff;
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
        }
        .footer-col a {
            font-size: 14px; color: var(--text-muted); text-decoration: none;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--text-secondary); }
        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 24px; border-top: 1px solid var(--border);
        }
        .footer-bottom p { font-size: 13px; color: var(--text-muted); }
        .footer-eu { font-size: 13px; }

        @media (max-width: 768px) {
            .final-cta-section { padding: 40px 0; }
            .final-cta-box { padding: 40px 20px; }
            .final-cta-trust { gap: 12px; }
            .final-cta-trust span { font-size: 12px; }
            .footer { padding: 40px 0 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
            .footer-brand { grid-column: span 2; max-width: none; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .footer-brand { grid-column: span 1; }
        }
        .hero-desktop-notice {
            font-size: 13px; color: #F59E0B; text-align: center;
            margin-bottom: 20px; padding: 8px 20px;
            background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 8px; display: inline-block;
        }
        .footer-email {
            font-size: 14px; color: var(--accent-light) !important;
            text-decoration: none; font-weight: 600;
        }
        .footer-email:hover { color: #fff !important; }

        /* ===== MARKETPLACE SECTION ===== */
        .marketplace-section { padding: 80px 0; position: relative; }
        .marketplace-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(6,182,212,0.03) 50%, transparent); pointer-events: none; }
        .mp-header { text-align: center; margin-bottom: 48px; }
        .mp-carousel-wrap { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .mp-grid { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 10px 0 20px; }
        .mp-grid::-webkit-scrollbar { display: none; }
        .mp-grid .mp-card { min-width: 340px; max-width: 340px; flex-shrink: 0; }
        .mp-nav { position: absolute; top: 50%; transform: translateY(-60%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(6,182,212,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(6,182,212,0.3); color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
        .mp-nav:hover { background: rgba(6,182,212,0.3); border-color: rgba(6,182,212,0.5); transform: translateY(-60%) scale(1.1); }
        .mp-nav-left { left: -8px; }
        .mp-nav-right { right: -8px; }
        .mp-card { background: rgba(12,12,20,0.8); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
        .mp-card:hover { transform: translateY(-6px); border-color: rgba(6,182,212,0.2); box-shadow: 0 24px 60px -12px rgba(6,182,212,0.1); }
        .mp-screen { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #0a0a14; border-bottom: 1px solid rgba(255,255,255,0.06); }
        .mp-screen iframe { position: absolute; top: 0; left: 0; width: 1440px; height: 900px; border: none; pointer-events: none; transform-origin: top left; }
        .mp-screen-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,5,8,0.8)); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; gap: 8px; opacity: 0; transition: all 0.3s; }
        .mp-card:hover .mp-screen-overlay { opacity: 1; }
        .mp-overlay-btn { padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; }
        .mp-overlay-btn.preview { background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(8px); }
        .mp-overlay-btn.action { background: linear-gradient(135deg, #06b6d4, #8b5cf6); color: #fff; }
        .mp-card-info { padding: 16px 20px; }
        .mp-card-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: #06b6d4; font-weight: 700; margin-bottom: 4px; }
        .mp-card-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #fff; }
        .mp-card-price { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 500; }
        .mp-card-price b { color: #10b981; }
        .mp-card-price .eur { background: linear-gradient(135deg, #06b6d4, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
        .mp-cta { text-align: center; margin-top: 40px; }
        .mp-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 12px; background: linear-gradient(135deg, #06b6d4, #8b5cf6); color: #fff; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.3s; }
        .mp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,182,212,0.25); }
        .mp-sell-banner { max-width: 1200px; margin: 48px auto 0; padding: 0 24px; }
        .mp-sell-box { background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(139,92,246,0.08)); border: 1px solid rgba(6,182,212,0.15); border-radius: 16px; padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
        .mp-sell-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
        .mp-sell-text p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }
        .mp-sell-btn { padding: 12px 28px; border-radius: 10px; background: #fff; color: #000; font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; transition: all 0.2s; }
        .mp-sell-btn:hover { transform: scale(1.04); }
        @media (max-width: 768px) { .mp-grid .mp-card { min-width: 280px; max-width: 280px; } .mp-nav { display: none; } .mp-sell-box { flex-direction: column; text-align: center; } }