        :root {
            --brand-red: #C85A54;
            --font-main: 'Barlow', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .servizi-strip * { margin: 0; padding: 0; box-sizing: border-box; }
        .servizi-strip { font-family: var(--font-main); background: transparent; -webkit-font-smoothing: antialiased; }

        .servizi-strip .full-width-strip {
            display: flex;
            width: 100%;
            height: 580px;
            background: #000;
            overflow: hidden;
        }

        .servizi-strip .service-card {
            position: relative;
            flex: 1;
            display: flex;
            align-items: flex-end;
            padding: 50px 40px;
            cursor: pointer;
            transition: var(--transition-smooth);
            border-right: 1px solid rgba(255, 255, 255, 0.25);
        }

        /* Essendo 4 elementi, l'espansione è più generosa */
        .servizi-strip .service-card:hover { flex: 2.8; }

        .servizi-strip .card-image {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition-smooth);
            z-index: 1;
        }

        .servizi-strip .card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
            transition: var(--transition-smooth);
        }

        /* Effetto sfocatura allo stato normale per focus sul testo */
        .servizi-strip .service-card:hover .card-overlay {
            background: rgba(200, 90, 84, 0.88);
            backdrop-filter: blur(4px);
        }

        .servizi-strip .card-content {
            position: relative;
            z-index: 3;
            color: #ffffff;
            width: 100%;
        }

        .servizi-strip .card-content h3 {
            font-size: 1.9rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .servizi-strip .card-content p {
            font-size: 1.1rem;
            font-weight: 400;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transform: translateY(15px);
            transition: var(--transition-smooth);
            max-width: 400px;
            line-height: 1.5;
            color: rgba(255,255,255,0.9);
        }

        .servizi-strip .service-card:hover .card-content p {
            opacity: 1;
            max-height: 120px;
            margin-bottom: 30px;
            transform: translateY(0);
        }

        .servizi-strip .cta-link {
            display: inline-flex;
            align-items: center;
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff !important;
            text-decoration: none;
            letter-spacing: 1.2px;
            opacity: 0.7;
            transition: var(--transition-smooth);
            pointer-events: all;
            text-transform: uppercase;
        }

        .servizi-strip .cta-link .pipe { margin-right: 10px; color: rgba(255,255,255,0.5); }
        .servizi-strip .cta-link .arrow { margin-left: 12px; font-size: 1.2rem; transition: transform 0.3s ease; }
        
        .servizi-strip .service-card:hover .cta-link { opacity: 1; }
        .servizi-strip .cta-link:hover .arrow { transform: translateX(10px); }

        @media (max-width: 1024px) {
            .servizi-strip .full-width-strip { height: auto; flex-direction: column; }
            .servizi-strip .service-card {
                height: 450px;
                flex: none;
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }
            .servizi-strip .card-content p { opacity: 1; max-height: 100px; margin-bottom: 20px; transform: none; }
            .servizi-strip .cta-link { opacity: 1; }
            .servizi-strip .card-content h3 { font-size: 1.7rem; }
        }
