        /* Typography */
        h1, h2, h3, h4, .font-display { font-family: 'Outfit', sans-serif; }
        body { font-family: 'Inter', sans-serif; background-color: #000000; }

        /* Premium Monochrome Gradients & Cards */
        .grad-card {
            background: linear-gradient(160deg, #101010 0%, #000000 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .grad-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(255,255,255,0.02), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        /* Floating Header Button Style */
        .header-btn {
            background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
            color: #000;
            box-shadow: 0 4px 15px rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .header-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255,255,255,0.2);
        }

        /* --- SPARSE GRID HERO BACKGROUND --- */
        .hero-bg-grid {
            background-size: 100px 100px;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 90%);
            -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 90%);
        }

        /* --- HERO STARS (Smaller, fainter) --- */
        @keyframes twinkle {
            0%, 100% { opacity: 0.05; transform: scale(0.8); }
            50% { opacity: 0.35; transform: scale(1.1); }
        }
        .star {
            position: absolute;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 4px 0px rgba(255, 255, 255, 0.3);
            animation: twinkle 3s infinite ease-in-out;
            pointer-events: none;
        }

        /* --- HERO PLANET (BANANA EFFECT) --- */
        .hero-glow-ellipse {
            width: 150vw;
            max-width: 1600px;
            height: 150vw;
            max-height: 450px;
            position: absolute;
            bottom: -35vw;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 50%;
            background: #000;
            border-top: 6px solid rgba(255, 255, 255, 0.5);
            box-shadow: 
                0 -8px 0 0 rgba(255, 255, 255, 0.2), 
                0 -20px 60px rgba(255, 255, 255, 0.08),
                0 -100px 180px rgba(255, 255, 255, 0.05),
                inset 0 30px 80px rgba(255, 255, 255, 0.05);
            z-index: 0;
            pointer-events: none;
        }

        @media (min-width: 1100px) {
            .hero-glow-ellipse {
                bottom: -150px;
            }
        }

        /* Glass Cards (Stats) */
        .glass-card {
            background: linear-gradient(160deg, rgba(20,20,20,0.6) 0%, rgba(0,0,0,0.8) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        /* Glitch Text Effect */
        .glitch-wrapper {
            position: relative;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255,255,255,0.1);
            animation: glitch-anim 4s infinite alternate-reverse;
        }
        .glitch-wrapper::before, .glitch-wrapper::after {
            content: attr(data-text);
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%; opacity: 0.8;
        }
        .glitch-wrapper::before {
            left: 2px;
            text-shadow: -1px 0 rgba(200,200,200,0.5);
            clip: rect(24px, 550px, 90px, 0);
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }
        .glitch-wrapper::after {
            left: -2px;
            text-shadow: -1px 0 rgba(255,255,255,0.5);
            clip: rect(85px, 550px, 140px, 0);
            animation: glitch-anim 2.5s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim {
            0% { clip: rect(10px, 9999px, 44px, 0); }
            5% { clip: rect(66px, 9999px, 98px, 0); }
            10% { clip: rect(31px, 9999px, 83px, 0); opacity: 1; text-shadow: 2px 0 rgba(255,255,255,0.3); }
            15% { clip: rect(2px, 9999px, 14px, 0); opacity: 0.9; }
            20% { clip: rect(80px, 9999px, 99px, 0); }
            25% { clip: rect(22px, 9999px, 43px, 0); text-shadow: -2px 0 rgba(200,200,200,0.2); }
            30%, 100% { clip: rect(0, 0, 0, 0); opacity: 1; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
        }
        @keyframes glitch-anim-2 {
            0% { clip: rect(65px, 9999px, 100px, 0); }
            10% { clip: rect(12px, 9999px, 44px, 0); }
            20% { clip: rect(89px, 9999px, 15px, 0); }
            30%, 100% { clip: rect(0, 0, 0, 0); }
        }

        /* Animations for Stat Cards */
        @keyframes bar { 0% { height: 20%; } 100% { height: 100%; } }
        @keyframes fillBar { 0% { width: 0%; } 100% { width: 100%; } }

        /* Smooth Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stats Container Custom Reveal */
        .stats-container {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }
        .stats-container.scrolled-in {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }



 .widget-card {
        background: linear-gradient(180deg, rgba(20,20,20,0.6) 0%, rgba(5,5,5,0.8) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        backdrop-filter: blur(12px);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .widget-card:hover {
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
 
    .ping-dot { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
    @keyframes ping { 75%, 100% { transform: scale(2.5); opacity: 0; } }

 
    .mountain-path {
        transition: d 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .scanner-line {
        animation: scan 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    @keyframes scan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(300%); }
    }

  
    .cursor-blink { animation: blink 1s step-end infinite; }
    @keyframes blink { 50% { opacity: 0; } }


   .main-features-wrap {
        position: relative;
        width: 100%;
    }

    .main-features-grid {
        display: grid;
        grid-template-columns: 1.4fr 0.8fr;
        gap: 12px;
    }

    .feature-card {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.08);
        background:
            radial-gradient(circle at top, rgba(255,255,255,0.035), transparent 45%),
            linear-gradient(180deg, rgba(16,16,16,0.94) 0%, rgba(6,6,6,0.98) 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 40px rgba(0,0,0,0.25);
    }

    .feature-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 35%, transparent 65%, rgba(255,255,255,0.015));
        pointer-events: none;
    }

    .feature-large {
        padding: 16px;
        display: flex;
        flex-direction: column;
    }

    .feature-stack {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
    }

    .feature-small {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .feature-bottom-row {
        margin-top: 12px;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 12px;
    }

    .feature-eyebrow {
        font-size: 9px;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(255,255,255,0.4);
        margin-bottom: 8px;
    }

    .feature-title {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        line-height: 1.1;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
    }

    .feature-desc {
        font-size: 11px;
        line-height: 1.5;
        color: rgba(255,255,255,0.5);
    }


    .feature-ui-frame {
        margin-top: 12px;
        position: relative;
        flex: 1;
        min-height: 200px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        background: radial-gradient(circle at center, rgba(255,255,255,0.05), #050505 80%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 10px;
    }

    .feature-ui-img {
        max-width: 95%;
        max-height: 95%;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        z-index: 2;
    }

    .feature-ui-glow {
        position: absolute;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,0.1);
        filter: blur(50px);
        z-index: 1;
    }


    .feature-curve-box {
        position: relative;
        height: 75px;
        margin-top: 10px;
        border-radius: 10px;
        overflow: hidden;
        background: rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .feature-curve-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .feature-curve-line {
        fill: none;
        stroke: rgba(255,255,255,0.8);
        stroke-width: 1.5;
    }

    .feature-curve-fill {
        fill: url(#featuresAreaGradient);
        opacity: 0.8;
    }


    .chart-scanner {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        animation: chartScan 4.5s linear infinite; 
        pointer-events: none;
    }
    @keyframes chartScan {
        0% { left: -40%; }
        100% { left: 100%; }
    }

    /* Live Feed */
    .downloads-feed {
        margin-top: 10px;
        display: grid;
        gap: 8px; 
    }

    .download-toast {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        border-radius: 8px;
        padding: 10px 12px; 
        border: 1px solid rgba(255,255,255,0.05);
        background: rgba(255,255,255,0.02);
        opacity: 0;
        transform: translateY(5px);
        animation: downloadIn 0.3s ease forwards;
    }

    @keyframes downloadIn {
        to { opacity: 1; transform: translateY(0); }
    }

    .download-avatar {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }

    .download-name {
        font-size: 11px;
        color: #fff;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .download-badge {
        font-size: 8px;
        padding: 2px 5px;
        border-radius: 4px;
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.8);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .download-time {
        font-size: 9px;
        color: rgba(255,255,255,0.4);
    }

    /* Library Block */
    .lib-snippet {
        background: #050505;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: 10px;
        font-family: monospace;
        font-size: 9px;
        color: rgba(255,255,255,0.6);
        margin-top: auto;
    }
    .lib-snippet span { color: #fff; }

    @media (max-width: 768px) {
        .main-features-grid, .feature-bottom-row { grid-template-columns: 1fr; }
        .feature-stack { grid-template-rows: auto; }
    }



    .install-tab.active {
        background: #ffffff;
        color: #000000;
        font-weight: 600;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    
    .install-pane {
        display: none;
        animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    
    .install-pane.active {
        display: block;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .install-card-wrap {
        background: linear-gradient(145deg, rgba(15,15,15,0.9) 0%, rgba(5,5,5,1) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 50px rgba(0,0,0,0.5);
    }

    .step-box {
        background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
        border: 1px solid rgba(255,255,255,0.05);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .step-box:hover {
        border-color: rgba(255,255,255,0.15);
        transform: translateY(-2px);
    }

    .step-num {
        position: absolute;
        top: -12px;
        left: -12px;
        width: 28px;
        height: 28px;
        background: #fff;
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 13px;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        z-index: 10;
    }

    .bg-os-icon {
        position: absolute;
        bottom: -40px;
        right: -30px;
        width: 320px;
        height: 320px;
        color: rgba(255, 255, 255, 0.02);
        pointer-events: none;
        z-index: 0;
        transform: rotate(-10deg);
    }

    .floating-logo {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
        z-index: 10;
        filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
        opacity: 0.8;
    }
    
    .dl-btn {
        flex-shrink: 0;
        min-width: 200px;
    }



.scripts-wrap {
        position: relative;
        width: 100%;
    }

    .script-card {
        background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.95) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 18px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .script-card:hover {
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .script-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 12px;
    }

    .script-badge {
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 8.5px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 999px;
    }

    .badge-hot { background: rgba(255, 60, 60, 0.1); color: #ff6b6b; border: 1px solid rgba(255, 60, 60, 0.2); }
    .badge-new { background: rgba(60, 255, 120, 0.1); color: #6bff8e; border: 1px solid rgba(60, 255, 120, 0.2); }
    .badge-pop { background: rgba(60, 150, 255, 0.1); color: #6ba8ff; border: 1px solid rgba(60, 150, 255, 0.2); }
    .badge-reg { background: rgba(255, 255, 255, 0.05); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.1); }

    .script-title {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .script-desc {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 14px;
        line-height: 1.4;
        min-height: 32px;
    }

    .script-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: auto;
    }

    .script-features li {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
    }

    .feature-check {
        width: 12px;
        height: 12px;
        color: #4ade80;
        flex-shrink: 0;
    }

    /* Special 8th Card */
    .cta-card {
        background: linear-gradient(135deg, rgba(20,20,30,0.9) 0%, rgba(5,5,10,0.95) 100%);
        border: 1px solid rgba(100, 150, 255, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
    }

    .cta-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(100, 150, 255, 0.1), transparent 60%);
        pointer-events: none;
    }

    .cta-number {
        font-family: 'Outfit', sans-serif;
        font-size: 42px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        margin-bottom: 8px;
        text-shadow: 0 0 20px rgba(100, 150, 255, 0.4);
    }

    .cta-button {
        margin-top: auto;
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        background: #fff;
        color: #000;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background: #e0e0e0;
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(255,255,255,0.2);
    }

  .mac-window {
        background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .mac-header {
        height: 38px;
        background: linear-gradient(180deg, #2a2a2a 0%, #1e1e1e 100%);
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        padding: 0 16px;
        position: relative;
    }

    .mac-dots {
        display: flex;
        gap: 8px;
    }

    .mac-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot-close { background: #ff5f56; border: 1px solid #e0443e; }
    .dot-min { background: #ffbd2e; border: 1px solid #dea123; }
    .dot-max { background: #27c93f; border: 1px solid #1aab29; }

    .mac-title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .mac-body {
        display: flex;
        flex-direction: row;
        height: 380px;
    }

    .mac-sidebar {
        width: 220px;
        background: rgba(255, 255, 255, 0.02);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .mac-sidebar::-webkit-scrollbar, .mac-content::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    .mac-sidebar::-webkit-scrollbar-track, .mac-content::-webkit-scrollbar-track {
        background: transparent;
    }
    .mac-sidebar::-webkit-scrollbar-thumb, .mac-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    .mac-sidebar::-webkit-scrollbar-thumb:hover, .mac-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .version-tab {
        padding: 14px 20px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        cursor: pointer;
        transition: background 0.2s ease;
        position: relative;
    }

    .version-tab:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .version-tab.active {
        background: rgba(255, 255, 255, 0.08);
    }

    .version-tab.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #fff;
        border-radius: 0 4px 4px 0;
    }

    .v-name {
        font-family: 'Outfit', sans-serif;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

    .v-date {
        color: rgba(255, 255, 255, 0.4);
        font-size: 11px;
    }

    .mac-content {
        flex: 1;
        padding: 24px 32px;
        overflow-y: auto;
        background: rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .log-pane {
        display: none;
        animation: fadeIn 0.3s ease forwards;
    }

    .log-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(5px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .log-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }

    .log-title {
        font-family: 'Outfit', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
    }

    .log-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
    }

    .log-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .log-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }

    .log-badge {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 6px;
        flex-shrink: 0;
        width: 70px;
        text-align: center;
    }

    .badge-add { background: rgba(74, 222, 128, 0.1); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.2); }
    .badge-fix { background: rgba(96, 165, 250, 0.1); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.2); }
    .badge-imp { background: rgba(192, 132, 252, 0.1); color: #c084fc; border: 1px solid rgba(192, 132, 252, 0.2); }
    .badge-rem { background: rgba(248, 113, 113, 0.1); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.2); }

    @media (max-width: 768px) {
        .mac-body {
            flex-direction: column;
            height: 500px;
        }

        .mac-sidebar {
            width: 100%;
            flex-direction: row;
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow-x: auto;
            overflow-y: hidden;
            flex-shrink: 0;
        }

        .version-tab {
            min-width: 120px;
            border-bottom: none;
            border-right: 1px solid rgba(255, 255, 255, 0.03);
            align-items: center;
            text-align: center;
        }

        .version-tab.active::before {
            width: 100%;
            height: 2px;
            top: auto;
            bottom: 0;
            left: 0;
            border-radius: 4px 4px 0 0;
        }

        .mac-content {
            padding: 20px;
        }
    }


   .comp-wrap {
        background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.95) 100%);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 1px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .comp-inner {
        background: #050505;
        border-radius: 19px;
        overflow-x: auto;
    }

    /* Custom Scrollbar for mobile swiping */
    .comp-inner::-webkit-scrollbar {
        height: 6px;
    }
    .comp-inner::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.02);
        border-radius: 10px;
    }
    .comp-inner::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
    }

    .comp-table {
        width: 100%;
        min-width: 650px;
        border-collapse: collapse;
    }

    .comp-table th, .comp-table td {
        padding: 20px 24px;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .comp-table th {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(255,255,255,0.4);
        font-weight: 600;
    }

    .comp-table td {
        font-size: 14px;
        color: rgba(255,255,255,0.7);
    }

    .comp-table tr:last-child td {
        border-bottom: none;
    }

    .comp-feature {
        font-weight: 500;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
    }

    .col-xeno {
        background: rgba(255,255,255,0.03);
        position: relative;
        width: 35%;
    }

    .col-xeno::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
    }

    .col-xeno::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
    }

    .xeno-header {
        color: #fff !important;
        background: rgba(255,255,255,0.05);
        position: relative;
        font-size: 15px !important;
    }

    .xeno-header-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: #fff;
        box-shadow: 0 0 20px rgba(255,255,255,0.8);
    }

    .xeno-val {
        color: #fff;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .other-val {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,0.4);
    }

    .icon-check {
        width: 18px;
        height: 18px;
        color: #4ade80;
        flex-shrink: 0;
    }

    .icon-cross {
        width: 18px;
        height: 18px;
        color: #f87171;
        flex-shrink: 0;
    }

    .badge-xeno {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 3px 8px;
        border-radius: 999px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        margin-left: auto;
    }


  .faq-wrap {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(255,255,255,0.1);
        background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    }

    .faq-item.active {
        border-color: rgba(255,255,255,0.15);
        background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .faq-btn {
        width: 100%;
        text-align: left;
        padding: 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        outline: none;
        background: transparent;
        border: none;
    }

    .faq-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: rgba(255,255,255,0.9);
        transition: color 0.3s ease;
    }

    .faq-item.active .faq-title {
        color: #fff;
    }

    .faq-icon-wrap {
        width: 24px;
        height: 24px;
        position: relative;
        flex-shrink: 0;
        color: rgba(255,255,255,0.4);
        transition: color 0.3s ease;
    }

    .faq-item.active .faq-icon-wrap {
        color: #fff;
    }

    .faq-icon-line {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 2px;
        background: currentColor;
        transform: translate(-50%, -50%);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

    .faq-icon-line.vertical {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item.active .faq-icon-line.vertical {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    
    .faq-item.active .faq-icon-line {
        transform: translate(-50%, -50%) rotate(180deg);
    }

  
    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .faq-item.active .faq-content {
        max-height: 500px; 
    }

    .faq-content-inner {
        padding: 0 24px 24px 24px;
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        line-height: 1.6;
    }

    .faq-content-inner strong {
        color: rgba(255,255,255,0.8);
        font-weight: 600;
    }



