        .swipe-hint {
            display: none;
            font-size: 0.8rem;
            color: var(--gold);
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .service-link {
            display: block;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        .services-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            padding: 50px 30px;
            border-left: 3px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            background: transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            will-change: transform;
        }

        .service-card:hover {
            border-left: 3px solid var(--gold);
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
            transform: translateX(10px);
            cursor: pointer;
        }

        .service-icon {
            margin-bottom: 30px;
            display: block;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .feature-list li {
            list-style: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: #ddd;
            display: flex;
            align-items: flex-start;
        }

        .feature-list li::before {
            content: '•';
            color: var(--gold);
            margin-right: 15px;
            font-size: 1.5rem;
            line-height: 1.2;
        }

        .service-action {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .service-card:hover .service-action {
            padding-left: 10px;
            color: #fff;
        }

        #plus-valore {
            position: relative;
            background-color: #020202;
            overflow: hidden;
            border-top: 1px solid #111;
        }

        .tech-bg-grid {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: linear-gradient(var(--tech-grid) 1px, transparent 1px), linear-gradient(90deg, var(--tech-grid) 1px, transparent 1px);
            background-size: 50px 50px;
            transform: perspective(500px) rotateX(60deg);
            animation: gridMove 20s linear infinite;
            z-index: 0;
            opacity: 0.4;
            pointer-events: none;
        }

        @keyframes gridMove {
            0% {
                transform: perspective(500px) rotateX(60deg) translateY(0);
            }

            100% {
                transform: perspective(500px) rotateX(60deg) translateY(50px);
            }
        }

        .tech-badge {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(45deg, #000, #111);
            border: 1px solid var(--gold);
            color: var(--gold);
            font-family: 'Fira Code', monospace;
            font-size: 0.75rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
        }

        .tech-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .tech-card {
            background: rgba(10, 10, 10, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: 0.4s ease;
            backdrop-filter: blur(10px);
            border-radius: 4px;
        }

        .tech-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid var(--gold);
            border-right: 2px solid var(--gold);
            transition: 0.4s;
        }

        .tech-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
        }

        .tech-card h3 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tech-card p {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .code-list li {
            font-family: 'Fira Code', monospace;
            font-size: 0.85rem;
            color: #aaa;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            padding-left: 5px;
        }

        .method-row {
            display: flex;
            justify-content: space-between;
            margin-top: 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .step {
            flex: 1;
            padding: 50px 20px 0 0;
            position: relative;
        }

        .step::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: 1s ease;
        }

        .step:hover::before {
            width: 100%;
        }

        .step-num {
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.5;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
            font-family: 'Playfair Display';
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .project-item {
            display: block;
            text-decoration: none;
            color: #fff;
            transition: var(--transition);
            position: relative;
        }

        .project-img {
            height: 450px;
            width: 100%;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease, filter 0.5s ease;
            filter: grayscale(100%);
        }

        .project-item:hover img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        .project-details {
            margin-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .review-card {
            background: var(--bg-glass);
            border: var(--border-glass);
            padding: 40px;
            text-align: center;
            transition: var(--transition);
        }

        .review-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
        }

        .stars {
            margin-bottom: 20px;
            font-size: 0.9rem;
            letter-spacing: 3px;
            display: flex;
            justify-content: center;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        input:not([type="checkbox"]),
        select,
        textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            transition: 0.4s;
            border-radius: 0;
            outline: none;
        }

        option {
            background: #111;
            color: #fff;
        }

        input:not([type="checkbox"]):focus,
        select:focus,
        textarea:focus {
            border-bottom: 1px solid var(--gold);
            background: linear-gradient(to top, rgba(212, 175, 55, 0.05), transparent);
        }

        label {
            display: block;
            font-size: 0.8rem;
            color: #aaa;
            margin-bottom: 5px;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-link {
            font-size: 1.5rem;
            color: #fff;
            transition: 0.3s;
            border: 1px solid #333;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
        }

        .social-link:hover {
            color: var(--gold);
            border-color: var(--gold);
            transform: scale(1.1);
        }

        .privacy-check {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
            margin-top: 20px;
        }

        .privacy-check input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 5px;
            accent-color: var(--gold);
            cursor: pointer;
            min-width: 20px;
        }

        .privacy-check label {
            font-size: 0.8rem;
            color: #aaa;
            line-height: 1.6;
            cursor: pointer;
            text-align: justify;
        }

        /* MOBILE OPTIMIZATION: DENSITY (APPLE STYLE) */
        @media (max-width: 768px) {
            section {
                padding: 40px 0;
                /* Ridotto da 60/90 */
            }

            .container {
                padding: 0 20px;
                /* Ridotto da 25/30 */
            }

            .hero-content h1 {
                font-size: clamp(2.2rem, 8vw, 3.5rem);
                /* Meno ingombrante */
            }

            .tech-grid-wrapper,
            .services-wrapper {
                display: flex;
                flex-direction: column;
                gap: 20px;
                /* Più stretto */
            }

            /* Horizontal Scroll Snap per Portfolio per evitare scroll infinito */
            .portfolio-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 15px;
                padding-bottom: 20px;
                margin-top: 30px;
            }

            .project-item {
                min-width: 85vw;
                /* Mostra un pezzo della prossima card */
                scroll-snap-align: center;
            }

            .project-img {
                height: 250px;
            }
        }

        @media (max-width: 900px) {
            section {
                padding: 40px 0;
            }

            .container {
                padding: 0 15px;
            }

            h1 {
                font-size: 2.5rem !important;
            }

            h2 {
                font-size: 2rem !important;
            }

            header {
                padding: 15px 20px;
            }

            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(3, 3, 3, 0.98);
                backdrop-filter: blur(20px);
                z-index: 1000;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            }

            nav ul {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }

            nav a {
                font-size: 1.5rem;
                font-weight: 300;
                letter-spacing: 3px;
            }

            nav.active {
                transform: translateX(0);
            }

            .mobile-menu-btn {
                display: block;
            }

            .btn-luxury.mobile-hide {
                display: none;
            }

            .swipe-hint {
                display: flex;
                justify-content: center;
                margin-top: 20px;
            }

            /* SLIDER ORIZZONTALE SERVIZI & METODO */
            .services-wrapper,
            .method-row {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 20px;
                scroll-snap-type: x mandatory;
                padding-bottom: 30px;
                margin-right: -15px;
                padding-right: 15px;
                -webkit-overflow-scrolling: touch;
            }

            .service-card,
            .step {
                min-width: 85vw;
                scroll-snap-align: center;
                border-left: 3px solid var(--gold);
                margin: 0;
            }

            .service-card {
                background: #080808;
                border: 1px solid rgba(255, 255, 255, 0.05);
                padding: 0;
                /* Padding handled by content */
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .spotlight-content {
                padding: 25px 20px;
                display: flex;
                flex-direction: column;
                height: 100%;
                justify-content: space-between;
                z-index: 2;
                position: relative;
            }

            .service-card p {
                min-height: 80px;
                /* Align following lists */
                margin-bottom: 20px;
            }

            .service-action {
                margin-top: auto;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 600;
                font-size: 0.9rem;
                color: var(--gold);
            }

            .service-card .btn-text {
                margin-top: auto;
                align-self: flex-start;
            }

            /* VANTAGGIO COMPETITIVO: GRIGLIA 2x2 COMPATTA */
            .tech-grid-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .tech-card {
                padding: 15px;
                height: 100%;
                background: #0a0a0a;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            .tech-card h3 {
                font-size: 0.8rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                margin-bottom: 8px;
                line-height: 1.3;
            }

            .tech-card p {
                font-size: 0.7rem;
                line-height: 1.3;
                margin-bottom: 0;
                color: #aaa;
            }

            .code-list {
                display: none;
            }

            /* RECENSIONI */
            .reviews-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 30px;
            }

            .review-card {
                padding: 20px;
                font-size: 0.8rem;
                text-align: left;
                background: #0a0a0a;
                border: 1px solid #222;
            }

            .review-card:nth-child(1) {
                grid-column: auto;
                background: #111;
                border-left: 3px solid var(--gold);
            }

            .stars {
                font-size: 0.7rem;
                margin-bottom: 10px;
            }

            /* MOBILE SLIDERS (Cosa Facciamo, Metodo, Portfolio) */
            .services-wrapper,
            .method-row,
            .portfolio-grid {
                display: flex !important;
                overflow-x: auto;
                gap: 15px;
                padding-bottom: 20px;
                margin-right: -15px;
                padding-right: 15px;
                scroll-snap-type: x mandatory;
                grid-template-columns: none !important;
                /* Reset grid */
            }

            .service-link,
            .step,
            .project-item {
                min-width: 85vw;
                scroll-snap-align: center;
                flex-shrink: 0;
            }

            /* VANTAGGIO COMPETITIVO: 2 COLONNE (A DUE A DUE) */
            .tech-grid-wrapper {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px;
            }

            .tech-card {
                padding: 15px !important;
                min-height: 180px;
                /* Uniform height */
            }

            .tech-card h3 {
                font-size: 0.9rem !important;
            }

            .tech-card p,
            .code-list {
                display: none;
                /* Compact view requested? Or just smaller text? Request was "blocchi più compatti" */
                /* Assuming standard 2-col allows text, but for extreme compactness on mobile 2-col, maybe hideDesc? 
                   I will keep text but make it small. */
            }

            .tech-card p {
                display: block;
                font-size: 0.7rem !important;
                line-height: 1.3;
                margin-bottom: 10px;
            }

            .code-list li {
                font-size: 0.65rem !important;
            }

            /* CONTACT LAYOUT COMPATTO */
            .contact-layout {
                display: flex;
                flex-direction: column;
                gap: 40px;
            }

            .form-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                margin-bottom: 15px;
            }

            .glass-panel {
                padding: 25px 20px;
                border-top: 3px solid var(--gold);
            }

            input:not([type="checkbox"]),
            select,
            textarea {
                padding: 15px 0;
                font-size: 0.9rem;
            }

            label {
                font-size: 0.75rem;
                margin-bottom: 3px;
            }

            /* CHATBOT MOBILE FULLSCREEN */
            #ars-chat-window {
                width: 100% !important;
                height: 100% !important;
                bottom: 0 !important;
                right: 0 !important;
                border-radius: 0 !important;
                z-index: 10000;
            }

            .chat-header {
                padding: 20px;
            }

            #ars-bot-launcher {
                bottom: 20px;
                right: 20px;
            }
        }



        /* --- ANIMATIONS (Reveal) --- */
        .reveal-up {
            opacity: 0;
            transform: translateY(50px);
            transition: 1s cubic-bezier(0.2, 1, 0.3, 1);
            will-change: transform, opacity;
            /* GPU Optimization */
        }

        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        .policy-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            padding: 20px;
        }

        .policy-modal.active {
            display: flex;
            animation: fadeIn 0.4s;
        }

        .policy-content {
            background: #111;
            border: 1px solid #333;
            width: 100%;
            max-width: 900px;
            height: 85vh;
            overflow-y: auto;
            padding: 50px;
            position: relative;
            border-radius: 4px;
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .policy-content h3 {
            color: #fff;
            margin-bottom: 20px;
            margin-top: 40px;
            font-size: 1.5rem;
            text-transform: uppercase;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 10px;
        }

        .policy-content h4 {
            color: var(--gold);
            margin-bottom: 15px;
            margin-top: 30px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .policy-content p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .policy-content a {
            color: #fff;
            text-decoration: underline;
            font-weight: 600;
            transition: 0.3s;
        }

        .policy-content a:hover {
            color: var(--gold);
        }

        .close-policy {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: #fff;
            z-index: 3001;
        }

        #ars-bot-launcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gold);
            color: #000;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 9999;
            border: none;
            will-change: transform;
        }

        #ars-bot-launcher::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid var(--gold);
            opacity: 0;
            z-index: -1;
            animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(0.9);
                opacity: 1;
            }

            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        #ars-chat-window {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 380px;
            height: 550px;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid #333;
            border-radius: 12px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 9999;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
        }

        #ars-chat-window.active {
            display: flex;
            animation: slideUp 0.3s;
        }

        .chat-header {
            padding: 15px 20px;
            border-bottom: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.02);
        }

        .chat-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            max-width: 85%;
            padding: 12px 16px;
            font-size: 0.9rem;
            border-radius: 8px;
        }

        .bot-msg {
            background: #1a1a1a;
            color: #e0e0e0;
            border-left: 2px solid var(--gold);
        }

        .user-msg {
            background: var(--gold);
            color: #000;
            align-self: flex-end;
            font-weight: 600;
        }

        .chat-options {
            padding: 15px;
            background: #080808;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-top: 1px solid #1a1a1a;
        }

        .chat-btn {
            background: transparent;
            border: 1px solid #333;
            color: #ccc;
            padding: 12px;
            border-radius: 6px;
            text-align: left;
            cursor: pointer;
            transition: 0.2s;
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* --- MOBILE REDESIGN (High-End Optimization) --- */
        @media(max-width: 480px) {

            /* PERFORMANCE & SPACING FIXES */
            /* PERFORMANCE & SPACING FIXES */
            .swipe-hint {
                margin-top: 10px !important;
                margin-bottom: 25px !important;
                margin-bottom: 25px !important;
                /* Increased to push blocks down "un poco poco" */
            }

            /* 1. Remove padding top from Service Cards to reduce "black space" */
            .spotlight-content {
                padding-top: 5px !important;
                /* Aggressive reduction from 15px */
            }

            /* 2. Lower Methodology blocks ("falli scendere un poco poco") */
            .method-row {
                margin-top: 35px !important;
                /* Increased from 20px */
            }

            /* 3. Remove Golden Line from FIRST Step ("non mi piace sopra al primo blocco") */
            /* Using more specific selector */
            .method-row .step:first-child {
                border-left: none !important;
                padding-left: 0 !important;
            }

            /* 4. ACCESSIBILITY 100/100 (Contrast Boost) */
            .step-num {
                opacity: 1 !important;
                /* Full opacity */
                color: #D4AF37;
                /* Pure Gold */
            }

            .tech-card p,
            .service-card p,
            .step p,
            p {
                color: #ffffff !important;
                /* Maximum Contrast on Black */
                opacity: 0.95;
            }

            /* Reduce space between swipe hint and other blocks (except method which needs to go down) */
            .services-wrapper,
            .tech-grid-wrapper,
            .portfolio-grid,
            .reviews-grid {
                margin-top: 0 !important;
                padding-top: 5px !important;
            }

            /* "Il Tuo Vantaggio" Text Fix */
            .tech-card p {
                text-align: justify !important;
                -webkit-hyphens: auto;
                -moz-hyphens: auto;
                -ms-hyphens: auto;
                hyphens: auto;
                word-spacing: -1px;
                /* Tweak to reduce gaps */
                display: block !important;
            }

            /* Footer Spacing */
            #faq {
                padding-bottom: 40px !important;
            }

            #contatti section {
                padding-top: 40px !important;
            }

            /* 1. CONTAINER & TYPOGRAPHY */
            .container {
                padding: 0 20px;
            }

            h2 {
                font-size: 2rem !important;
                margin-bottom: 20px !important;
            }

            /* 2. UNIVERSAL HORIZONTAL SLIDER MIXIN */
            .services-wrapper,
            .method-row,
            .tech-grid-wrapper,
            .portfolio-grid,
            .reviews-grid {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                gap: 20px;
                padding-bottom: 30px;
                /* Space for scrollbar/swipe */
                margin-right: -20px;
                /* Bleed off screen */
                padding-right: 20px;
                /* Padding for last item */
                scroll-snap-type: x mandatory;
                grid-template-columns: none !important;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                /* Hide scrollbar Firefox */
            }

            /* Hide scrollbar Webkit */
            .services-wrapper::-webkit-scrollbar,
            .method-row::-webkit-scrollbar,
            .tech-grid-wrapper::-webkit-scrollbar,
            .portfolio-grid::-webkit-scrollbar,
            .reviews-grid::-webkit-scrollbar {
                display: none;
            }

            /* 3. CARD SIZING & SNAPPING */
            .service-card,
            .tech-card,
            .method-step,
            .review-card {
                min-width: 85vw;
                max-width: 85vw;
                scroll-snap-align: center;
                flex: 0 0 auto;
                border-right: none !important;
                /* Remove any divider borders */
                margin: 0 !important;
            }


            /* 3. SERVICES (Round 3: FORCE HORIZONTAL SWIPE) */
            .services-wrapper {
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                /* CRITICAL: Prevent wrapping */
                overflow-x: auto !important;
                scroll-snap-type: x mandatory;
                gap: 15px;
                padding: 10px 20px 40px 20px;
                /* Bottom padding for scrollbar/shadow */
                -webkit-overflow-scrolling: touch;
            }

            .service-link {
                flex: 0 0 85vw !important;
                /* Force width */
                width: 85vw !important;
                text-decoration: none;
                scroll-snap-align: center;
            }

            .service-card {
                min-height: 380px;
                height: 100%;
                margin: 0 !important;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                background: #000 !important;
                /* DEEP BLACK */
                border: 1px solid rgba(255, 255, 255, 0.05);
                /* Subtle border */
                border-radius: 12px;
                /* Smooth corners */
            }

            /* Add Aura later via JS? No, Service card hover usually */


            /* 4. METHOD SECTION (Round 5: DEEP BLACK + GOLDEN AURA) */
            .method-row .step {
                background: #000 !important;
                /* DEEP BLACK */
                border: 1px solid rgba(255, 255, 255, 0.05) !important;
                border-radius: 12px;
                padding: 15px !important;
                transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
                opacity: 0.4;
                transform: scale(0.95);
                filter: blur(2px);
                margin: 0 !important;
                flex: 0 0 85vw;
                min-height: auto;
            }

            .method-row .step.in-focus {
                opacity: 1;
                transform: scale(1);
                filter: blur(0);
                background: #050505 !important;
                /* Slightly lighter black */
                border-color: rgba(212, 175, 55, 0.3) !important;
                /* GOLDEN AURA MAGIC */
                box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), inset 0 0 10px rgba(212, 175, 55, 0.05);
                z-index: 2;
            }

            /* 5. PORTFOLIO (Round 3: Refined) */
            .portfolio-grid {
                gap: 0;
            }

            .project-item {
                min-width: 100vw;
                width: 100vw;
                padding: 0 20px;
                scroll-snap-align: center;
                margin-bottom: 0 !important;
                filter: grayscale(100%);
                transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
                opacity: 0.5;
                transform: scale(0.95);
            }

            .project-item.in-focus {
                filter: grayscale(0%);
                opacity: 1;
                transform: scale(1);
                /* GOLDEN AURA FOR PORTFOLIO TOO */
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
            }

            /* 6. TECH SECTION (Round 5: LUXURY COMPACT) */
            .tech-grid-wrapper {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 8px;
                overflow: visible !important;
                padding: 0;
                white-space: normal !important;
            }

            .tech-card {
                min-width: auto;
                width: 100%;
                height: auto;
                min-height: 120px;
                /* Even smaller */
                padding: 12px 10px !important;
                background: #000 !important;
                /* DEEP BLACK */
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 8px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                text-align: justify !important;
                /* JUSTIFIED TEXT */
                -webkit-hyphens: auto;
                hyphens: auto;
            }

            .tech-card h3 {
                font-size: 0.7rem;
                margin-bottom: 6px;
                line-height: 1.2;
                display: flex;
                align-items: center;
                justify-content: center;
                /* Title centered */
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                color: #D4AF37;
                /* Gold Title */
            }

            .tech-card p {
                display: -webkit-box !important;
                -webkit-line-clamp: 4;
                line-clamp: 4;
                /* Standard property */
                -webkit-box-orient: vertical;
                overflow: hidden;
                font-size: 0.7rem !important;
                line-height: 1.3;
                color: rgba(255, 255, 255, 0.7);
                margin: 0;
                text-align: left;
                /* Better for reading small text */
            }

            .tech-card h3 svg {
                width: 12px !important;
                height: 12px !important;
            }

            .tech-card p {
                font-size: 0.65rem;
                line-height: 1.35;
                display: block !important;
                margin-bottom: 0;
                opacity: 0.9;
                text-align: justify !important;
                /* CRITICAL */
                text-align-last: center;
                /* Last line centered for balance */
            }

            .tech-card .code-list {
                display: none;
            }

            /* 7. CONTACT COMPACT */
            .contact-section {
                padding: 40px 0;
            }

            .contact-wrapper {
                padding: 15px;
                gap: 20px;
                display: flex;
                flex-direction: column;
            }

            .contact-info,
            .contact-form {
                padding: 20px 15px;
            }

            .form-row {
                flex-direction: column;
                gap: 15px;
            }

            /* 8. CHATBOT MOBILE OPTIMIZATION */
            #ars-chat-window {
                width: 100% !important;
                height: 100% !important;
                max-height: 100% !important;
                bottom: 0 !important;
                right: 0 !important;
                border-radius: 0 !important;
                border: none;
                background: #050505;
                /* Deep luxury black */
            }

            /* FIX MESSAGE OVERFLOW */
            .msg {
                max-width: 85% !important;
                word-break: break-word !important;
                white-space: pre-wrap !important;
                font-size: 0.9rem !important;
            }

            .ars-chips-container {
                flex-wrap: wrap !important;
                justify-content: flex-end;
                /* Align chips better */
                width: 100% !important;
                padding-right: 10px;
            }

            .ars-chip {
                white-space: normal !important;
                /* Allow chip text to wrap if huge */
                max-width: 90% !important;
                text-align: center;
                height: auto !important;
                padding: 10px 14px !important;
            }

            /* Hide generic mobile menu behind chat if needed */
            .mobile-menu-btn {
                z-index: 9998;
            }

            #ars-chat-window {
                z-index: 99999 !important;
            }

            .chat-header {
                padding-top: max(20px, env(safe-area-inset-top));
                border-bottom: 1px solid #D4AF37;
                /* Gold border */
            }

            .mobile-menu-btn svg {
                fill: #D4AF37 !important;
            }
        }

        /* --- 3D FLIP CARD SYSTEM (Mobile Only) --- */
        .mobile-3d-view {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 10px;
        }

        .desktop-static-view {
            display: none !important;
        }

        .flip-card {
            background-color: transparent;
            perspective: 1000px;
            cursor: pointer;
            min-height: 220px;
            height: 100%;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .flip-card.flipped .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 16px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }

        .flip-card-front {
            background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .flip-card-back {
            background: linear-gradient(135deg, #111 0%, #050505 100%);
            border: 1px solid var(--gold);
            transform: rotateY(180deg);
            align-items: flex-start;
            padding: 15px;
        }

        /* DESKTOP SWITCH (Show Static, Hide Flip) */
        @media(min-width: 768px) {
            .mobile-3d-view {
                display: none !important;
            }

            .desktop-static-view {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin-top: 50px;
            }
        }
        /* FIX ALIGNMENT SERVICES */
        .services-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: stretch;
            /* Cards stretch to same height */
        }

        .service-link {
            display: block;
            height: 100%;
            text-decoration: none;
        }

        .service-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            /* Align content to top */
            padding-top: 40px !important;
            /* Force equal top padding */
        }

        .service-icon {
            margin-bottom: 20px;
            margin-top: 0 !important;
            /* Remove any accidental top margin */
            height: 50px;
            /* Fixed height for icon container */
            display: flex;
            align-items: center;
            /* Center icon in its container */
        }
        :root {
            --gold: #D4AF37;
            --gold-glow: rgba(212, 175, 55, 0.6);
            --bg-glass: rgba(10, 10, 10, 0.85);
            --blur: 30px;
            --font-main: 'Manrope', -apple-system, sans-serif;
            --transition: cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* HOLOGRAPHIC ORB LAUNCHER */
        #ars-bot-launcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 100000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s var(--transition);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        #ars-bot-launcher:hover {
            transform: scale(1.1);
        }

        .orb-core {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--gold), #8B7222);
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .orb-glow {
            position: absolute;
            width: 120%;
            height: 120%;
            border-radius: 50%;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
            opacity: 0.6;
            animation: breathe 4s infinite ease-in-out;
        }

        .orb-icon {
            position: relative;
            z-index: 2;
            width: 28px;
            height: 28px;
            /* Slightly larger for sparkle */
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes breathe {

            0%,
            100% {
                transform: scale(0.95);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes floatIcon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-2px);
            }
        }

        /* WINDOW */
        #ars-chat-window {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 380px;
            height: 600px;
            max-height: 75vh;
            border-radius: 24px;
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur));
            -webkit-backdrop-filter: blur(var(--blur));
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: none;
            flex-direction: column;
            z-index: 100001;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
            font-family: var(--font-main);
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: opacity 0.3s, transform 0.3s var(--transition);
        }

        #ars-chat-window.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* HEADER */
        .chat-header {
            padding: 20px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            box-shadow: 0 0 8px #00ff88;
        }

        .bot-name {
            display: block;
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .bot-status {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            font-size: 11px;
        }

        #ars-chat-close {
            color: rgba(255, 255, 255, 0.4);
            font-size: 28px;
            cursor: pointer;
            transition: 0.2s;
            line-height: 0.8;
        }

        #ars-chat-close:hover {
            color: #fff;
        }

        /* BODY */
        .chat-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
            scroll-behavior: smooth;
        }

        .chat-body::-webkit-scrollbar {
            width: 4px;
        }

        .chat-body::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
        }

        .chat-intro {
            text-align: center;
            color: rgba(255, 255, 255, 0.2);
            margin-top: 40px;
        }

        .intro-logo {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 auto 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: serif;
            color: var(--gold);
        }

        /* MESSAGES */
        .msg {
            max-width: 85%;
            padding: 14px 18px;
            border-radius: 18px;
            font-size: 15px;
            line-height: 1.5;
            animation: slideIn 0.3s var(--transition) forwards;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .msg.bot {
            background: rgba(255, 255, 255, 0.08);
            color: #f0f0f0;
            border-bottom-left-radius: 4px;
            align-self: flex-start;
        }

        .msg.user {
            background: var(--gold);
            color: #000;
            border-bottom-right-radius: 4px;
            align-self: flex-end;
            font-weight: 600;
        }

        /* CHIPS */
        .ars-chips-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 5px;
            animation: slideIn 0.4s ease forwards;
        }

        .ars-chip {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--gold);
            padding: 9px 18px;
            border-radius: 50px;
            font-size: 13px;
            cursor: pointer;
            transition: 0.2s;
            font-weight: 500;
        }

        .ars-chip:hover {
            background: var(--gold);
            color: #000;
            border-color: var(--gold);
        }

        /* FOOTER */
        .chat-footer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .input-capsule {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 6px 6px 6px 20px;
            transition: 0.2s;
        }

        .input-capsule:focus-within {
            border-color: var(--gold);
            background: rgba(0, 0, 0, 0.5);
        }

        #ars-input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 15px;
            outline: none;
        }

        #ars-send {
            background: var(--gold);
            border: none;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: #000;
            transition: transform 0.2s;
        }

        #ars-send:hover {
            transform: scale(1.1);
        }

        #ars-send svg {
            width: 18px;
            height: 18px;
            margin-left: -2px;
        }

        /* TYPING */
        .chat-typing {
            padding-left: 20px;
            margin-bottom: 20px;
            display: none;
            gap: 5px;
        }

        .chat-typing span {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .chat-typing span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .chat-typing span:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes bounce {

            0%,
            80%,
            100% {
                transform: scale(0);
            }

            40% {
                transform: scale(1);
            }
        }

        /* MOBILE */
        @media(max-width: 480px) {
            #ars-chat-window {
                width: 100% !important;
                height: 100% !important;
                max-height: 100% !important;
                bottom: 0 !important;
                right: 0 !important;
                border: none !important;
                border-radius: 0 !important;
                background: #000;
            }

            .chat-header {
                padding-top: max(20px, env(safe-area-inset-top));
            }

            .chat-footer {
                padding-bottom: max(20px, env(safe-area-inset-bottom));
            }

            #ars-bot-launcher {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
            }

            .ars-chips-container {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 5px;
                mask-image: linear-gradient(to right, black 90%, transparent 100%);
            }

            .ars-chip {
                flex-shrink: 0;
            }
        }
