    :root {
        --bg: #080c14;
        --surface: #0e1420;
        --surface2: #131926;
        --accent: #00d4ff;
        --accent2: #0066ff;
        --accent3: #00ff88;
        --text: #e8edf5;
        --text-muted: #6b7a94;
        --border: rgba(0, 212, 255, 0.12);
        --glow: 0 0 40px rgba(0, 212, 255, 0.15);
    }
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    html { scroll-behavior: smooth; }
    
    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
        cursor: none;
    }
    
    /* CURSOR */
    .cursor {
        width: 10px; height: 10px;
        background: var(--accent);
        border-radius: 50%;
        position: fixed; top: 0; left: 0;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease;
        mix-blend-mode: screen;
    }
    .cursor-trail {
        width: 32px; height: 32px;
        border: 1px solid rgba(0,212,255,0.4);
        border-radius: 50%;
        position: fixed; top: 0; left: 0;
        pointer-events: none;
        z-index: 9998;
        transition: left 0.12s ease, top 0.12s ease, opacity 0.3s;
    }
    body:hover .cursor-trail { opacity: 1; }
    
    /* NAV */
    nav {
        position: fixed; top: 0; left: 0; right: 0;
        z-index: 100;
        padding: 15px clamp(16px, 5vw, 60px);
        display: flex; align-items: center; justify-content: space-between;
        background: rgba(8,12,20,0.7);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        animation: slideDown 0.8s cubic-bezier(0.16,1,0.3,1) both;
        min-height: clamp(80px, 15vw, 140px);
    }
    
    @keyframes slideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .logo {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        letter-spacing: -0.02em;
        display: flex; align-items: center; gap: 10px;
        text-decoration: none; color: var(--text);
        height: 100%;
    }
    .logo img {
        height: 100%;
        display: block;
    }
    .logo-badge {
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        color: #000;
        font-size: 0.65rem;
        font-weight: 800;
        padding: 3px 7px;
        border-radius: 4px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    
    .nav-links {
        display: flex; gap: clamp(16px, 3vw, 36px); list-style: none;
    }
    .nav-links a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: clamp(0.75rem, 2vw, 0.88rem);
        font-weight: 500;
        letter-spacing: 0.02em;
        position: relative;
        transition: color 0.3s;
    }
    .nav-links a::after {
        content: '';
        position: absolute; bottom: -4px; left: 0;
        width: 0; height: 1px;
        background: var(--accent);
        transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a:hover::after { width: 100%; }
    
    /* NAV TOGGLE BUTTON */
    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 101;
    }
    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* NAV MOBILE */
    .nav-mobile {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        margin-top: 10px;
    }
    .nav-mobile.active {
        display: flex !important;
    }
    .nav-mobile-link {
        padding: 12px 16px;
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s, background 0.3s;
        border-radius: 8px;
    }
    .nav-mobile-link:hover {
        color: var(--accent);
        background: rgba(0, 212, 255, 0.05);
    }
    
    /* HERO */
    .hero {
        min-height: 100vh;
        display: flex; align-items: center; justify-content: space-between;
        padding: clamp(160px, 25vw, 220px) clamp(16px, 5vw, 60px) clamp(40px, 10vw, 80px);
        margin-top: clamp(20px, 2vw, 40px);
        position: relative;
        overflow: hidden;
        flex-direction: row;
        gap: 60px;
    }
    @media (max-width: 1200px) {
        .hero {
            flex-direction: column;
            justify-content: center;
            margin-top: clamp(10px, 1vw, 20px);
        }
    }
    
    .hero-grid {
        position: absolute; inset: 0;
        background-image:
        linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }
    
    .hero-glow {
        position: absolute;
        width: 700px; height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
        top: -200px; right: -100px;
        pointer-events: none;
        animation: pulse 6s ease-in-out infinite;
    }
    .hero-glow2 {
        position: absolute;
        width: 400px; height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
        bottom: 0; left: 200px;
        pointer-events: none;
        animation: pulse 8s ease-in-out infinite reverse;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.7; }
    }
    
    .hero-content { 
        position: relative; 
        z-index: 2; 
        max-width: 700px;
        width: 100%;
    }
    
    .hero-tag {
        display: inline-flex; align-items: center; gap: 8px;
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--accent);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 32px;
        animation: fadeUp 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-tag::before {
        content: '';
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--accent3);
        box-shadow: 0 0 8px var(--accent3);
        animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    
    .hero h1 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(1.8rem, 5.5vw, 5rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.03em;
        margin-bottom: clamp(16px, 4vw, 24px);
        animation: fadeUp 0.8s 0.35s cubic-bezier(0.16,1,0.3,1) both;
    }
    
    .hero h1 .line-accent {
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero p {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 500px;
        margin-bottom: clamp(24px, 5vw, 44px);
        font-weight: 300;
        animation: fadeUp 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both;
    }
    
    .hero-btns {
        display: flex; gap: clamp(12px, 3vw, 16px); flex-wrap: wrap;
        animation: fadeUp 0.8s 0.65s cubic-bezier(0.16,1,0.3,1) both;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--accent2), var(--accent));
        color: #000;
        border: none;
        padding: clamp(10px, 2vw, 14px) clamp(20px, 5vw, 32px);
        border-radius: 8px;
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: clamp(0.8rem, 2vw, 0.92rem);
        letter-spacing: 0.02em;
        cursor: none;
        transition: transform 0.25s, box-shadow 0.25s;
        text-decoration: none;
        display: inline-block;
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0,102,255,0.5);
    }
    
    .btn-ghost {
        background: transparent;
        color: var(--text);
        border: 1px solid var(--border);
        padding: clamp(10px, 2vw, 13px) clamp(20px, 5vw, 32px);
        border-radius: 8px;
        font-family: 'Syne', sans-serif;
        font-weight: 600;
        font-size: clamp(0.8rem, 2vw, 0.92rem);
        cursor: none;
        transition: border-color 0.3s, color 0.3s, transform 0.25s;
        text-decoration: none;
        display: inline-block;
    }
    .btn-ghost:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px);
    }
    
    .hero-stats {
        display: flex; flex-direction: column; gap: clamp(16px, 3vw, 24px);
        z-index: 2;
        animation: fadeLeft 0.8s 0.8s cubic-bezier(0.16,1,0.3,1) both;
        flex-shrink: 0;
    }
    @media (max-width: 1200px) {
        .hero-stats {
            width: 100%;
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: clamp(32px, 5vw, 60px);
            gap: clamp(12px, 2.5vw, 16px);
        }
    }
    
    .stat-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: clamp(16px, 3vw, 20px) clamp(20px, 4vw, 28px);
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        width: clamp(140px, 25vw, 200px);
    }
    @media (max-width: 1200px) {
        .stat-card {
            min-width: clamp(120px, 25vw, 160px);
            width: auto;
        }
    }
    .stat-card::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent2), var(--accent));
    }
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--glow);
    }
    .stat-num {
        font-family: 'Syne', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 800;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .stat-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-top: 4px;
    }
    
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
        from { opacity: 0; transform: translateX(40px) translateY(-50%); }
        to { opacity: 1; transform: translateX(0) translateY(-50%); }
    }
    
    /* SCROLLING MARQUEE */
    .marquee-wrap {
        overflow: hidden;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: clamp(12px, 2vw, 16px) 0;
        background: var(--surface);
    }
    .marquee-track {
        display: flex; gap: clamp(40px, 8vw, 60px);
        animation: marquee 20s linear infinite;
        width: max-content;
    }
    .marquee-item {
        font-family: 'Syne', sans-serif;
        font-size: clamp(0.65rem, 1.5vw, 0.78rem);
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-muted);
        display: flex; align-items: center; gap: clamp(10px, 2vw, 16px);
        white-space: nowrap;
    }
    .marquee-item span { color: var(--accent); }
    @keyframes marquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }
    
    /* CATEGORIES */
    .section {
        padding: clamp(40px, 10vw, 100px) clamp(16px, 5vw, 60px);
        position: relative;
    }
    
    .section-label {
        font-size: clamp(0.65rem, 1.5vw, 0.75rem);
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: clamp(8px, 2vw, 12px);
    }
    
    .section-title {
        font-family: 'Syne', sans-serif;
        font-size: clamp(1.5rem, 4vw, 2.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: clamp(12px, 2vw, 16px);
    }
    
    .section-sub {
        color: var(--text-muted);
        font-size: clamp(0.85rem, 2vw, 1rem);
        font-weight: 300;
        max-width: 480px;
        line-height: 1.7;
        margin-bottom: clamp(32px, 6vw, 60px);
    }
    
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 80vw, 320px), 1fr));
        gap: clamp(12px, 3vw, 20px);
    }
    
    .cat-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: clamp(20px, 4vw, 36px) clamp(20px, 4vw, 32px);
        cursor: none;
        transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.35s;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px);
    }
    .cat-card.visible {
        animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .cat-card:nth-child(2).visible { animation-delay: 0.1s; }
    .cat-card:nth-child(3).visible { animation-delay: 0.2s; }
    .cat-card:nth-child(4).visible { animation-delay: 0.1s; }
    .cat-card:nth-child(5).visible { animation-delay: 0.2s; }
    .cat-card:nth-child(6).visible { animation-delay: 0.3s; }
    
    .cat-card::after {
        content: '';
        position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(0,102,255,0.05), rgba(0,212,255,0.02));
        opacity: 0;
        transition: opacity 0.35s;
    }
    .cat-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0,212,255,0.3);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1);
    }
    .cat-card:hover::after { opacity: 1; }
    
    .cat-icon {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: clamp(12px, 2vw, 20px);
        display: block;
        filter: drop-shadow(0 0 12px rgba(0,212,255,0.3));
    }
    
    .cat-title {
        font-family: 'Syne', sans-serif;
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.01em;
    }
    .cat-desc {
        font-size: clamp(0.75rem, 1.8vw, 0.88rem);
        color: var(--text-muted);
        line-height: 1.6;
        font-weight: 300;
    }
    .cat-arrow {
        position: absolute; bottom: clamp(16px, 3vw, 28px); right: clamp(16px, 3vw, 28px);
        width: clamp(28px, 5vw, 32px); height: clamp(28px, 5vw, 32px);
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: var(--accent);
        font-size: 0.9rem;
        transition: transform 0.3s, background 0.3s, border-color 0.3s;
    }
    .cat-card:hover .cat-arrow {
        transform: rotate(45deg);
        background: var(--accent);
        color: #000;
        border-color: var(--accent);
    }
    
    /* WHY US */
    .why-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(40px, 8vw, 80px);
        align-items: center;
    }
    @media (min-width: 768px) {
        .why-grid {
            grid-template-columns: 1fr 1fr;
        }
        .why-visual {
            display: flex !important;
        }
    }
    .why-visual {
        position: relative;
        height: clamp(300px, 50vw, 500px);
        display: none;
        align-items: center;
        justify-content: center;
    }
    .why-center-ring {
        width: 220px; height: 220px;
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        position: relative;
        animation: spinSlow 20s linear infinite;
    }
    .why-center-ring::before {
        content: '';
        position: absolute;
        width: 300px; height: 300px;
        border: 1px dashed rgba(0,212,255,0.15);
        border-radius: 50%;
        animation: spinSlow 15s linear infinite reverse;
    }
    .why-center-ring::after {
        content: '';
        position: absolute;
        width: 380px; height: 380px;
        border: 1px dashed rgba(0,102,255,0.1);
        border-radius: 50%;
        animation: spinSlow 25s linear infinite;
    }
    @keyframes spinSlow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    .why-inner {
        width: 140px; height: 140px;
        background: linear-gradient(135deg, var(--accent2), var(--accent));
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 3rem;
        position: relative;
        z-index: 2;
        box-shadow: 0 0 60px rgba(0,102,255,0.5), 0 0 120px rgba(0,102,255,0.2);
        animation: none;
    }
    
    .why-features { display: flex; flex-direction: column; gap: 28px; }
    .why-feature {
        display: flex; gap: clamp(12px, 3vw, 18px); align-items: flex-start;
        padding: clamp(16px, 3vw, 24px);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        transition: transform 0.3s, border-color 0.3s;
        opacity: 0;
        transform: translateX(30px);
    }
    .why-feature.visible {
        animation: fadeInRight 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .why-feature:nth-child(2).visible { animation-delay: 0.1s; }
    .why-feature:nth-child(3).visible { animation-delay: 0.2s; }
    .why-feature:nth-child(4).visible { animation-delay: 0.3s; }
    .why-feature:hover { transform: translateX(4px); border-color: rgba(0,212,255,0.25); }
    
    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(30px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    .why-icon {
        width: clamp(36px, 6vw, 44px); height: clamp(36px, 6vw, 44px);
        min-width: clamp(36px, 6vw, 44px);
        background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(0,212,255,0.1));
        border: 1px solid rgba(0,212,255,0.2);
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        font-size: clamp(1rem, 2.5vw, 1.3rem);
    }
    .why-text h4 {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-bottom: 6px;
    }
    .why-text p { 
        font-size: clamp(0.75rem, 1.8vw, 0.85rem); 
        color: var(--text-muted); 
        line-height: 1.6; 
    }
    
    /* BRANDS */
    .brands-section {
        padding: clamp(32px, 8vw, 60px) clamp(16px, 5vw, 60px);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .brands-label {
        text-align: center;
        font-size: clamp(0.65rem, 1.5vw, 0.75rem);
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: clamp(24px, 5vw, 40px);
    }
    .brands-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: clamp(12px, 3vw, 40px) clamp(16px, 4vw, 16px);
    }
    .brand-pill {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 28px);
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: clamp(0.7rem, 1.8vw, 0.9rem);
        color: var(--text-muted);
        letter-spacing: 0.04em;
        transition: color 0.3s, border-color 0.3s, transform 0.3s;
        cursor: none;
    }
    .brand-pill:hover {
        color: var(--accent);
        border-color: rgba(0,212,255,0.3);
        transform: translateY(-3px);
    }
    
    /* INFO SECTION - REPLACES OLD CTA */
    .info-section {
        padding: clamp(40px, 10vw, 100px) clamp(16px, 5vw, 60px);
        text-align: center;
        position: relative;
        overflow: hidden;
        background: var(--surface);
    }
    .info-bg {
        position: absolute; inset: 0;
        background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,102,255,0.08), transparent);
    }
    .info-section h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(1.6rem, 4.5vw, 3.5rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: clamp(12px, 2vw, 20px);
        position: relative;
    }
    .info-section p {
        color: var(--text-muted);
        font-size: clamp(0.85rem, 2vw, 1.05rem);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
        font-weight: 300;
        position: relative;
    }
    
    /* FOOTER */
    footer {
        background: var(--surface);
        border-top: 1px solid var(--border);
        padding: clamp(32px, 8vw, 60px) clamp(16px, 5vw, 60px);
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 60px);
        margin-bottom: clamp(32px, 5vw, 60px);
    }
    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr;
        }
    }
    .footer-brand .logo { margin-bottom: 16px; display: flex; }
    .footer-desc { 
        font-size: clamp(0.75rem, 1.5vw, 0.875rem); 
        color: var(--text-muted); 
        line-height: 1.7; 
        font-weight: 300; 
    }
    .footer-col h5 {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: clamp(0.7rem, 1.5vw, 0.85rem);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text);
        margin-bottom: clamp(12px, 2vw, 20px);
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: clamp(8px, 1.5vw, 12px); }
    .footer-links a { 
        text-decoration: none; 
        font-size: clamp(0.75rem, 1.5vw, 0.875rem); 
        color: var(--text-muted); 
        transition: color 0.3s; 
        cursor: none; 
    }
    .footer-links a:hover { color: var(--accent); }
    .footer-bottom {
        padding-top: clamp(20px, 3vw, 30px);
        border-top: 1px solid var(--border);
        display: flex; justify-content: center;
        font-size: clamp(0.65rem, 1.2vw, 0.8rem); 
        color: var(--text-muted);
        text-align: center;
    }
    
    /* FLOATING PARTICLES */
    .particle {
        position: fixed;
        pointer-events: none;
        border-radius: 50%;
        animation: floatParticle linear infinite;
        opacity: 0;
    }
    @keyframes floatParticle {
        0% { transform: translateY(100vh) scale(0); opacity: 0; }
        10% { opacity: 0.6; }
        90% { opacity: 0.2; }
        100% { transform: translateY(-100px) scale(1); opacity: 0; }
    }
    
    /* RESPONSIVE */
    @media (max-width: 768px) {
        nav {
            padding: 10px clamp(12px, 4vw, 20px);
            min-height: clamp(60px, 12vw, 100px);
        }
        .logo img {
            max-height: 60px;
        }
        .nav-links {
            display: none !important;
        }
        .nav-toggle {
            display: flex !important;
        }
        .nav-mobile {
            display: none !important;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            position: fixed;
            top: 100%;
            left: 0;
            right: 0;
            width: 100vw;
            background: var(--surface);
            border: none;
            border-top: 1px solid var(--border);
            border-radius: 0;
            margin-top: 0;
            z-index: 99;
        }
        .nav-mobile.active {
            display: flex !important;
            max-height: 400px;
            opacity: 1;
            overflow-y: auto;
        }
        .hero {
            padding: clamp(100px, 20vw, 150px) clamp(16px, 4vw, 32px) clamp(32px, 8vw, 60px);
        }
        .hero h1 {
            font-size: clamp(1.5rem, 5vw, 3rem);
            line-height: 1.1;
            margin-bottom: clamp(12px, 3vw, 20px);
        }
        .hero p {
            font-size: clamp(0.85rem, 2.2vw, 1rem);
            margin-bottom: clamp(20px, 4vw, 32px);
        }
        .hero-stats {
            flex-direction: row;
            justify-content: center;
            gap: clamp(12px, 2.5vw, 16px);
            width: 100%;
            margin-top: clamp(24px, 4vw, 40px);
            flex-wrap: wrap;
        }
        .stat-card {
            min-width: clamp(120px, 30vw, 160px);
            padding: clamp(12px, 2vw, 16px) clamp(12px, 2vw, 20px);
        }
        .stat-num {
            font-size: clamp(1.25rem, 3vw, 1.8rem);
        }
        .stat-label {
            font-size: clamp(0.6rem, 1.2vw, 0.7rem);
        }
        .section {
            padding: clamp(32px, 8vw, 60px) clamp(12px, 4vw, 24px);
        }
        .section-title {
            font-size: clamp(1.3rem, 3.5vw, 2.2rem);
        }
        .section-sub {
            font-size: clamp(0.8rem, 2vw, 0.95rem);
            margin-bottom: clamp(24px, 5vw, 40px);
        }
        .categories-grid {
            grid-template-columns: 1fr;
            gap: clamp(12px, 2vw, 16px);
        }
        .cat-card {
            padding: clamp(16px, 3vw, 24px);
        }
        .why-grid {
            gap: clamp(24px, 5vw, 48px);
        }
        .brands-section {
            padding: clamp(24px, 6vw, 40px) clamp(12px, 4vw, 20px);
        }
        .brands-grid {
            gap: clamp(8px, 2vw, 16px) clamp(12px, 3vw, 20px);
        }
        .brand-pill {
            font-size: clamp(0.65rem, 1.5vw, 0.8rem);
            padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
        }
        .info-section {
            padding: clamp(32px, 8vw, 60px) clamp(16px, 4vw, 24px);
        }
        .info-section h2 {
            font-size: clamp(1.3rem, 4vw, 2.5rem);
            margin-bottom: clamp(12px, 2vw, 16px);
        }
        .info-section p {
            font-size: clamp(0.8rem, 1.8vw, 0.95rem);
        }
        footer {
            padding: clamp(24px, 6vw, 40px) clamp(12px, 4vw, 20px);
        }
        .footer-grid {
            gap: clamp(20px, 4vw, 32px);
            margin-bottom: clamp(20px, 4vw, 32px);
        }
    }
    
    @media (max-width: 480px) {
        nav {
            min-height: 60px;
            padding: 8px 12px;
        }
        .logo img {
            max-height: 50px;
        }
        .hero {
            padding: 90px 12px 40px;
            min-height: auto;
        }
        .hero h1 {
            font-size: clamp(1.3rem, 5vw, 2.2rem);
            margin-bottom: 12px;
        }
        .hero p {
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            margin-bottom: 16px;
        }
        .hero-btns {
            gap: 8px;
            flex-direction: column;
        }
        .btn-primary, .btn-ghost {
            width: 100%;
            text-align: center;
            font-size: clamp(0.75rem, 1.8vw, 0.85rem);
            padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
        }
        .hero-stats {
            flex-direction: column;
            gap: 12px;
            width: 100%;
            margin-top: 20px;
        }
        .stat-card {
            width: 100%;
            min-width: unset;
        }
        .section {
            padding: clamp(24px, 6vw, 40px) 12px;
        }
        .section-title {
            font-size: clamp(1.1rem, 3.2vw, 1.6rem);
            margin-bottom: 10px;
        }
        .section-label {
            margin-bottom: 6px;
        }
        .section-sub {
            font-size: clamp(0.75rem, 1.8vw, 0.85rem);
            margin-bottom: 20px;
        }
        .categories-grid {
            gap: 10px;
        }
        .cat-card {
            padding: clamp(14px, 2.5vw, 18px);
            border-radius: 12px;
        }
        .cat-icon {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 10px;
        }
        .cat-title {
            font-size: clamp(0.85rem, 2vw, 1rem);
        }
        .cat-desc {
            font-size: clamp(0.7rem, 1.6vw, 0.8rem);
        }
        .cat-arrow {
            width: 26px;
            height: 26px;
            bottom: 12px;
            right: 12px;
        }
        .why-feature {
            padding: clamp(12px, 2vw, 16px);
            gap: 10px;
        }
        .brands-section {
            padding: clamp(20px, 5vw, 32px) 12px;
        }
        .brands-label {
            margin-bottom: 16px;
        }
        .brand-pill {
            font-size: clamp(0.6rem, 1.3vw, 0.7rem);
            padding: clamp(5px, 1vw, 8px) clamp(10px, 2vw, 14px);
        }
        .info-section {
            padding: clamp(24px, 6vw, 40px) 12px;
        }
        .info-section h2 {
            font-size: clamp(1.1rem, 3.5vw, 1.8rem);
            margin-bottom: 10px;
        }
        .info-section p {
            font-size: clamp(0.75rem, 1.6vw, 0.85rem);
        }
        footer {
            padding: clamp(20px, 5vw, 32px) 12px;
        }
        .footer-col h5 {
            font-size: clamp(0.65rem, 1.2vw, 0.75rem);
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: clamp(0.7rem, 1.3vw, 0.8rem);
        }
        .footer-bottom {
            font-size: clamp(0.6rem, 1vw, 0.7rem);
            padding-top: 16px;
        }
    }