﻿        :root {
            --primary: #1A5FA8;
            --primary-light: #4A9FE8;
            --secondary: #e8eef5;
            --accent: #2563a8;
            --accent-light: #5b9fd4;
            --dark: #0f1419;
            --dark-light: #161b22;
            --dark-card: rgba(255,255,255,0.04);
            --light: #f0f2f5;
            --success: #2e7d4a;
            --warning: #b8860b;
            --danger: #c62828;
            --gradient-1: linear-gradient(135deg, #1A5FA8 0%, #2d7bc4 100%);
            --gradient-2: #4A9FE8;
            --glass: rgba(255,255,255,0.04);
            --glass-border: rgba(255,255,255,0.1);
            --apple-blur: blur(12px) saturate(140%);
            --transition: all 0.25s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; background: var(--dark); color: var(--light); overflow-x: hidden; line-height: 1.6; }
        h1, h2, h3, h4, h5, h6 { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; font-weight: 700; line-height: 1.2; }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: none;
            transform: none;
            z-index: 1000;
            padding: 0.75rem 1.5rem;
            transition: var(--transition);
            background: rgba(15, 20, 25, 0.92);
            backdrop-filter: blur(12px) saturate(140%);
            -webkit-backdrop-filter: blur(12px) saturate(140%);
            border-radius: 0;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
        }
        .navbar:hover {
            background: rgba(15, 20, 25, 0.96);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
        }
        .nav-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }
        .nav-logo-img {
            height: 44px;
            width: auto;
            transition: var(--transition);
            filter: drop-shadow(0 0 0px transparent);
        }
        .nav-logo:hover .nav-logo-img {
            filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 10px rgba(255,107,53,0.3));
        }
        .nav-logo-text {
            font-family: system-ui, sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--light);
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .nav-logo:hover .nav-logo-text {
            color: var(--primary-light);
        }
        .nav-links {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--light);
            background: rgba(255,255,255,0.08);
        }
        .nav-links a.active {
            color: var(--light);
            background: rgba(255,255,255,0.1);
        }
        .nav-cta {
            background: var(--primary);
            color: white !important;
            padding: 0.5rem 1.2rem !important;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8rem !important;
            transition: var(--transition);
            box-shadow: none;
        }
        .nav-cta:hover {
            background: var(--primary-light) !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* HERO */
        .hero {
            min-height: auto;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            position: relative;
            padding: 100px 2rem 3rem;
            overflow: hidden;
            contain: layout style;
        }
        .hero-bg {
            display: none;
        }
        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(26, 95, 168, 0.15);
            border: 1px solid rgba(74, 159, 232, 0.25);
            padding: 0.4rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--primary-light);
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .badge-dot { display: none; }
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 800;
            min-height: 2.2em;
        }
        .hero h1 .gradient-text {
            color: var(--primary-light);
            background: none;
            -webkit-text-fill-color: var(--primary-light);
        }
        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: rgba(255,255,255,0.6);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            min-height: 88px;
        }
        .stat-item {
            text-align: center;
            padding: 0.75rem 1.25rem;
            background: var(--dark-card);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            transition: var(--transition);
        }
        .stat-item:hover {
            border-color: rgba(74, 159, 232, 0.3);
        }
        .stat-number {
            font-family: system-ui, sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--light);
        }
        .stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 0.3rem;
        }
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 0.85rem 1.75rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            font-family: system-ui, sans-serif;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: none;
            border-radius: 6px;
        }
        .btn-primary::before { display: none; }
        .btn-primary:hover {
            background: var(--primary-light);
        }
        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.05);
            border-color: var(--primary-light);
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-tag {
            display: inline-block;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 1rem;
            font-weight: 800;
        }
        .section-subtitle {
            color: rgba(255,255,255,0.5);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* MARQUEE */
        .marquee {
            overflow: hidden;
            padding: 1rem 0;
            background: var(--dark-light);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }
        .marquee-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.5rem;
            animation: none;
            padding: 0 1rem;
        }
        .marquee-item {
            display: inline;
            padding: 0;
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.03em;
        }
        .marquee-item span { display: none; }

        /* SERVICES */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(255,107,53,0.03) 0%, transparent 50%);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .service-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }
        a.service-card,
        a.branding-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
            opacity: 0.7;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card:hover {
            border-color: rgba(74, 159, 232, 0.25);
            background: rgba(255,255,255,0.04);
        }
        .service-icon {
            display: none;
        }
        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--light);
            font-weight: 700;
        }
        .service-card p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .service-tag {
            display: inline-block;
            background: var(--gradient-1);
            color: white;
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-top: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* PACKAGES */
        .packages-section {
            padding: 100px 0;
        }
        .packages-toggle {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
            align-items: center;
            background: var(--glass);
            padding: 0.5rem;
            border-radius: 50px;
            border: 1px solid var(--glass-border);
            max-width: fit-content;
            margin-left: auto;
            margin-right: auto;
            backdrop-filter: blur(10px);
        }
        .toggle-btn {
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            border: none;
            background: transparent;
            color: rgba(255,255,255,0.6);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: system-ui, sans-serif;
            font-size: 0.9rem;
        }
        .toggle-btn.active {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 15px rgba(255,107,53,0.3);
        }
        .toggle-btn:hover:not(.active) {
            color: var(--light);
            background: rgba(255,255,255,0.05);
        }
        .save-badge {
            background: var(--success);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-left: 0.5rem;
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .package-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 2.5rem;
            position: relative;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            opacity: 0;
            transition: var(--transition);
        }
        .package-card:hover::before {
            opacity: 0.6;
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.4);
            border-color: rgba(255,107,53,0.2);
            background: rgba(255,255,255,0.05);
        }
        .package-card.popular {
            border: 1.5px solid rgba(255,107,53,0.4);
            transform: scale(1.02);
            box-shadow: 0 0 60px rgba(255,107,53,0.15);
        }
        .package-card.popular:hover {
            transform: scale(1.02) translateY(-10px);
            box-shadow: 0 30px 60px rgba(255,107,53,0.25);
        }
        .package-card.popular .package-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 0 0 20px 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .package-card.best-value {
            border: 1.5px solid rgba(157,78,221,0.4);
            box-shadow: 0 0 60px rgba(157,78,221,0.15);
        }
        .package-card.best-value .package-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 0 0 20px 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .package-header {
            margin-bottom: 1.5rem;
        }
        .package-name {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
        }
        .package-desc {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .package-price-wrapper {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--glass-border);
        }
        .package-price {
            font-family: system-ui, sans-serif;
            font-size: 3.2rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        .package-price .currency {
            font-size: 1.6rem;
        }
        .package-price .period {
            font-size: 1rem;
            color: rgba(255,255,255,0.4);
            -webkit-text-fill-color: rgba(255,255,255,0.4);
            font-weight: 500;
        }
        .package-old-price {
            color: rgba(255,255,255,0.35);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        .package-old-price span {
            text-decoration: line-through;
            margin-right: 0.5rem;
        }
        .package-discount {
            display: inline-block;
            background: var(--success);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-left: 0.5rem;
        }
        .package-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        .package-features li {
            padding: 0.7rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.03);
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(255,255,255,0.7);
        }
        .package-features li::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--success);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 8px;
        }
        .package-features li.feature-highlight {
            color: var(--primary-light);
            font-weight: 600;
        }
        .package-features li.feature-highlight::before {
            background: var(--warning);
            width: 6px;
            height: 6px;
        }
        .package-btn {
            width: 100%;
            justify-content: center;
            font-size: 1rem;
            padding: 1.1rem;
        }
        .rf-card {
            background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, rgba(157,78,221,0.05) 100%);
            border: 1.5px solid rgba(255,107,53,0.2);
        }
        .rf-card:hover {
            border-color: rgba(255,107,53,0.4);
            box-shadow: 0 25px 50px rgba(255,107,53,0.2);
        }
        .rf-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* TESTIMONIALS */
        .testimonials-section {
            padding: 100px 0;
        }
        .testimonials-carousel {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 2rem 0;
            scrollbar-width: none;
        }
        .testimonials-carousel::-webkit-scrollbar {
            display: none;
        }
        .testimonial-card {
            min-width: 350px;
            max-width: 400px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2rem;
            scroll-snap-align: start;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255,107,53,0.3);
            background: rgba(255,255,255,0.05);
        }
        .testimonial-stars {
            color: var(--warning);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        .testimonial-text {
            font-style: italic;
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .testimonial-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
        }
        .testimonial-info h3 {
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
            font-weight: 600;
        }
        .testimonial-info p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.72);
        }
        .google-badge { display: none; }
        .branding-icon { display: none; }

        /* MAP / COPERTURA — harta mare, centrată */
        .map-section {
            padding: 100px 0;
            background: var(--dark-light);
        }
        .italy-map-wrap {
            max-width: 640px;
            margin: 2.5rem auto 0;
            padding: 2rem 1.5rem 1.5rem;
            background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,107,53,0.04) 50%, rgba(10,10,15,0.4) 100%);
            border: 1px solid rgba(255,107,53,0.25);
            border-radius: 32px;
            box-shadow:
                0 32px 80px rgba(0,0,0,0.45),
                0 0 0 1px rgba(255,255,255,0.04) inset,
                0 0 60px rgba(255,107,53,0.08);
            position: relative;
            overflow: hidden;
        }
        .italy-map-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 0.5;
            pointer-events: none;
        }
        .italy-map-svg {
            display: block;
            width: 100%;
            height: auto;
            min-height: 480px;
            max-height: 720px;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 8px 32px rgba(255,107,53,0.2));
        }
        .italy-map-svg .italy-land {
            fill: url(#rfItFill);
            stroke: rgba(255, 107, 53, 0.75);
            stroke-width: 2.5;
            stroke-linejoin: round;
        }
        .italy-map-svg .map-pin {
            cursor: pointer;
            text-decoration: none;
            outline: none;
        }
        .italy-map-svg .map-pin-hit {
            fill: transparent;
            pointer-events: all;
        }
        .italy-map-svg .map-pin-pulse {
            fill: rgba(255, 107, 53, 0.35);
            opacity: 0;
        }
        .italy-map-svg .map-pin-dot {
            fill: #ff6b35;
            stroke: #fff;
            stroke-width: 2;
            transition: all 0.3s ease;
        }
        .italy-map-svg .map-pin-pulse {
            fill: rgba(255, 107, 53, 0.25);
        }
        .italy-map-svg .map-pin-pulse-on,
        .italy-map-svg .map-pin.active .map-pin-pulse {
            opacity: 1;
            animation: mapPinPulse 2s ease-out infinite;
        }
        .italy-map-svg .map-pin-label {
            fill: rgba(255, 255, 255, 0.95);
            font: 700 11px system-ui, sans-serif;
            text-anchor: middle;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .italy-map-svg .map-pin:hover .map-pin-dot,
        .italy-map-svg .map-pin.active .map-pin-dot,
        .italy-map-svg .map-pin:focus-visible .map-pin-dot {
            fill: #00c853;
            stroke-width: 3;
            filter: drop-shadow(0 0 10px rgba(0, 200, 83, 0.9));
        }
        .italy-map-svg .map-pin:hover .map-pin-label,
        .italy-map-svg .map-pin.active .map-pin-label,
        .italy-map-svg .map-pin:focus-visible .map-pin-label {
            opacity: 1;
            fill: #fff;
        }
        @keyframes mapPinPulse {
            0% { r: 8; opacity: 0.6; }
            100% { r: 22; opacity: 0; }
        }
        .italy-map-hint {
            text-align: center;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            position: relative;
            z-index: 1;
        }
        .map-cities-bar {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin-top: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .map-city-chip {
            padding: 0.55rem 1.1rem;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            background: var(--glass);
            border: 1px solid var(--glass-border);
            text-decoration: none;
            transition: var(--transition);
        }
        .map-city-chip:hover,
        .map-city-chip.active {
            background: var(--gradient-1);
            border-color: transparent;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255,107,53,0.4);
        }
        .map-all-cities {
            display: block;
            text-align: center;
            margin-top: 1.5rem;
            color: var(--primary-light);
            font-size: 0.95rem;
            text-decoration: none;
            font-weight: 600;
        }
        .map-all-cities:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* AUDIT */
        .audit-section {
            padding: 100px 0;
            position: relative;
        }
        .audit-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 3rem;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }
        .audit-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: var(--gradient-1);
            border-radius: 29px;
            z-index: -1;
            opacity: 0.2;
        }
        .audit-form {
            display: grid;
            gap: 1.5rem;
        }
        .form-group {
            position: relative;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        .form-input {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(255,255,255,0.03);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
            font-family: system-ui, sans-serif;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 25px rgba(255,107,53,0.15);
            background: rgba(255,255,255,0.05);
        }
        .form-input::placeholder {
            color: rgba(255,255,255,0.25);
        }
        select.form-input {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.2rem;
            color: var(--light) !important;
        }
        select.form-input option {
            background: #1a1a2e;
            color: var(--light) !important;
            padding: 12px;
            font-size: 1rem;
        }
        select.form-input option:hover, select.form-input option:focus {
            background: var(--primary) !important;
            color: white !important;
        }
        select.form-input option:checked {
            background: var(--primary) !important;
            color: white !important;
        }
        .audit-btn {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.05rem;
            margin-top: 1rem;
        }
        .audit-result {
            display: none;
            margin-top: 2rem;
        }
        .audit-result.show {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }
        .audit-score-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .audit-score-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        .audit-score-card:hover {
            border-color: rgba(255,107,53,0.3);
            transform: translateY(-5px);
            background: rgba(255,255,255,0.04);
        }
        .audit-score-card .score-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .audit-score-card .score-value {
            font-family: system-ui, sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
        }
        .audit-score-card .score-value.good {
            color: var(--success);
        }
        .audit-score-card .score-value.medium {
            color: var(--warning);
        }
        .audit-score-card .score-value.bad {
            color: var(--danger);
        }
        .audit-score-card .score-detail {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            margin-top: 0.5rem;
        }
        .audit-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.8rem;
            margin-bottom: 2rem;
        }
        .audit-metric {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: rgba(255,255,255,0.02);
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }
        .audit-metric:hover {
            border-color: rgba(255,107,53,0.2);
            background: rgba(255,255,255,0.04);
        }
        .audit-metric-name {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }
        .audit-metric-value {
            font-family: system-ui, sans-serif;
            font-weight: 700;
            font-size: 1rem;
        }
        .audit-metric-value.good {
            color: var(--success);
        }
        .audit-metric-value.medium {
            color: var(--warning);
        }
        .audit-metric-value.bad {
            color: var(--danger);
        }
        .audit-recommendations {
            list-style: none;
        }
        .audit-recommendations li {
            padding: 1rem;
            background: rgba(255,255,255,0.02);
            border-radius: 14px;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }
        .audit-recommendations li:hover {
            border-color: rgba(255,107,53,0.3);
            transform: translateX(5px);
            background: rgba(255,255,255,0.04);
        }
        .audit-recommendations li .rec-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .audit-recommendations li .rec-text {
            flex: 1;
        }
        .audit-recommendations li .rec-title {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--light);
            font-size: 0.95rem;
        }
        .audit-recommendations li .rec-desc {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }
        .audit-recommendations li .rec-savings {
            color: var(--success);
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 0.3rem;
        }
        .audit-error {
            background: rgba(255,23,68,0.08);
            border: 1px solid rgba(255,23,68,0.3);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            color: var(--danger);
        }

        /* CONTACT */
        .contact-section {
            padding: 100px 0;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }
        .contact-info p {
            color: rgba(255,255,255,0.6);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1rem;
        }
        .contact-details {
            list-style: none;
        }
        .contact-details li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid var(--glass-border);
            transition: var(--transition);
        }
        .contact-details li:hover {
            padding-left: 10px;
        }
        .contact-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .contact-form-wrapper {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 3rem;
            backdrop-filter: blur(20px);
        }
        .contact-form {
            display: grid;
            gap: 1.5rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        textarea.form-input {
            resize: vertical;
            min-height: 120px;
        }

        /* FOOTER */
        .footer {
            background: rgba(255,255,255,0.02);
            border-top: 1px solid var(--glass-border);
            padding: 60px 2rem 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .footer-brand p {
            color: rgba(255,255,255,0.78);
            margin-top: 1rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
            color: #F8F9FA;
            font-weight: 700;
        }
        .footer-social-link:hover {
            background: rgba(255,107,53,0.25);
            border-color: var(--primary-light);
            color: #fff;
        }
        .footer-logo {
            height: 60px;
            width: auto;
            margin-bottom: 1rem;
        }
        .footer-logo:hover {
            filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 15px rgba(255,107,53,0.3));
        }
        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.7);
            font-weight: 600;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid var(--glass-border);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.78);
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: #FFB088;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: var(--transition);
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-subline {
            margin-top: 0.5rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.72);
        }
        /* Background effects — disattivati */
        .bg-animated,
        .particles {
            display: none !important;
        }
        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0;
            animation: floatUp 15s infinite;
        }
        @keyframes floatUp {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
        }

        /* Floating buttons — nascosti (sticky CTA su mobile basta) */
        .floating-buttons {
            display: none !important;
        }
        .floating-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            backdrop-filter: blur(10px);
        }
        .floating-btn:hover {
            transform: scale(1.1) translateY(-3px);
        }
        .floating-btn .tooltip {
            position: absolute;
            right: 65px;
            background: rgba(20,20,30,0.9);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            pointer-events: none;
            color: var(--light);
            backdrop-filter: blur(10px);
            font-family: system-ui, sans-serif;
        }
        .floating-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-btn {
            background: rgba(37,211,102,0.9);
            box-shadow: 0 4px 20px rgba(37,211,102,0.3);
            animation: whatsappPulse 2.5s infinite;
        }
        .whatsapp-btn:hover {
            box-shadow: 0 6px 30px rgba(37,211,102,0.5);
            background: rgba(37,211,102,1);
        }

        .call-btn {
            background: rgba(255,107,53,0.9);
            box-shadow: 0 4px 20px rgba(255,107,53,0.3);
            animation: callPulse 2.5s infinite;
        }
        .call-btn:hover {
            box-shadow: 0 6px 30px rgba(255,107,53,0.5);
            background: rgba(255,107,53,1);
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
            50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
        }
        @keyframes callPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(255,107,53,0.3); }
            50% { box-shadow: 0 4px 30px rgba(255,107,53,0.6); }
        }

        /* Animazioni disattivate — contenuto visibile subito */
        .scroll-reveal {
            opacity: 1;
            transform: none;
        }
        .scroll-reveal-delay-1 {
            transition-delay: 0.1s;
        }
        .scroll-reveal-delay-2 {
            transition-delay: 0.2s;
        }
        .scroll-reveal-delay-3 {
            transition-delay: 0.3s;
        }
        .scroll-reveal-delay-4 {
            transition-delay: 0.4s;
        }
        .spinner {
            display: none;
            width: 40px;
            height: 40px;
            border: 3px solid var(--glass-border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 1rem auto;
        }
        .spinner.show {
            display: block;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255,107,53,0.5);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        ::selection {
            background: var(--primary);
            color: white;
        }

        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                width: calc(100% - 24px);
                top: 8px;
                padding: 0.5rem 1rem;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                right: 0;
                background: rgba(20,20,30,0.95);
                flex-direction: column;
                padding: 1.5rem;
                gap: 0.5rem;
                border-radius: 20px;
                border: 1px solid var(--glass-border);
                backdrop-filter: blur(20px);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                padding: 0.8rem 1rem;
                width: 100%;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero-stats {
                gap: 1rem;
                flex-wrap: wrap;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .packages-grid {
                grid-template-columns: 1fr;
            }
            .package-card.popular {
                transform: scale(1);
            }
            .package-card.popular:hover {
                transform: scale(1) translateY(-10px);
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .contact-grid {
                gap: 2rem;
            }
            .audit-card {
                padding: 2rem 1.5rem;
            }
            .audit-score-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .floating-buttons {
                bottom: 15px;
                right: 15px;
            }
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            .nav-logo-img {
                height: 36px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-card {
                min-width: 300px;
            }
            .audit-score-grid {
                grid-template-columns: 1fr;
            }
            .package-price {
                font-size: 2.5rem;
            }
        }
    
        /* ===== MOBILE IMPROVEMENTS ===== */
        @media (max-width: 768px) {
            .hero {
                padding: 78px 1.5rem 2.5rem;
            }
            .hero h1 {
                font-size: clamp(2rem, 7vw, 3rem);
            }
            .hero-stats {
                gap: 0.8rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            .stat-item {
                padding: 0.8rem 1.2rem;
                flex: 1 1 130px;
                min-width: 120px;
            }
            .hero-cta-group .btn {
                width: 100%;
                justify-content: center;
            }
            .section-title {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
            }
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .service-card {
                padding: 1.8rem;
            }
            .packages-grid {
                padding: 0 0.5rem;
            }
            .testimonial-card {
                min-width: 280px;
            }
            .contact-grid {
                grid-template-columns: 1fr !important;
            }
            .section-header {
                margin-bottom: 2.5rem;
            }
            .container {
                padding: 0 1.2rem;
            }
            .map-section {
                padding: 70px 0;
            }
            .italy-map-wrap {
                max-width: 100%;
                margin-top: 1.5rem;
                padding: 1rem 0.35rem 0.75rem;
                border-radius: 24px;
            }
            .italy-map-svg {
                min-height: 0;
                max-height: none;
                width: 100%;
                aspect-ratio: 500 / 820;
            }
            .italy-map-svg .italy-land {
                stroke-width: 2;
            }
            .italy-map-svg .map-pin-dot {
                stroke-width: 2.5;
            }
            .italy-map-svg .map-pin-label {
                font-size: 10px;
            }
            .italy-map-svg .map-pin.active .map-pin-label {
                opacity: 1;
                font-weight: 800;
            }
            .italy-map-hint {
                font-size: 0.8rem;
                padding: 0 0.5rem;
                line-height: 1.45;
            }
            .map-cities-bar {
                margin-top: 1.25rem;
                gap: 0.5rem;
                padding: 0 0.25rem;
            }
            .map-city-chip {
                font-size: 0.8rem;
                padding: 0.5rem 0.9rem;
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-brand {
                grid-column: auto;
            }
            .navbar {
                top: 8px;
                width: calc(100% - 24px);
                padding: 0.5rem 1rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .italy-map-wrap {
                padding: 0.75rem 0.2rem 0.65rem;
            }
            .italy-map-svg .map-pin-label {
                font-size: 9px;
            }
            .map-city-chip {
                font-size: 0.75rem;
                padding: 0.45rem 0.75rem;
            }
            .hero-stats {
                flex-direction: column;
                align-items: center;
            }
            .stat-item {
                width: 100%;
                max-width: 260px;
            }
            .audit-card {
                padding: 1.5rem 1rem;
            }
            .btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
            }
        }
        /* Touch device improvements */
        @media (hover: none) {
            .service-card:hover,
            .package-card:hover {
                transform: none;
            }
            .floating-btn:hover {
                transform: none;
            }
        }
        /* High contrast logo visibility */
        .nav-logo-img rect, .nav-logo-img path {
            transition: var(--transition);
        }
        .nav-logo:hover .nav-logo-img {
            filter: drop-shadow(0 0 8px rgba(74,159,232,0.5));
        }

        /* ===== CITY PAGES ===== */
        .city-page {
            display: none;
            min-height: 100vh;
            padding: 120px 0 80px;
            background: linear-gradient(180deg, rgba(255,107,53,0.05) 0%, transparent 40%);
        }
        .city-page.active {
            display: block;
        }
        .city-hero {
            text-align: center;
            margin-bottom: 4rem;
        }
        .city-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
        }
        .city-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        .city-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .city-cta-section {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 3rem;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        .city-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 3rem 0;
            padding: 0 1rem;
        }
        .city-nav-link {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            transition: var(--transition);
            cursor: pointer;
        }
        .city-nav-link:hover, .city-nav-link.current {
            background: var(--gradient-1);
            border-color: transparent;
            color: white;
        }
        @media (max-width: 768px) {
            .city-page {
                padding: 100px 0 60px;
            }
            .city-cta-section {
                padding: 2rem 1.5rem;
            }
            .city-services-grid {
                grid-template-columns: 1fr;
            }
        }

    
        /* Hero redesign extras */
        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success);
            display: inline-block;
            margin-right: 0.3rem;
            animation: blink 2s ease-in-out infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Cookie banner GDPR */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: rgba(10,10,15,0.96);
            border-top: 1px solid var(--glass-border);
            padding: 1.2rem 1.5rem;
            backdrop-filter: blur(16px);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .cookie-banner.show { transform: translateY(0); }
        .cookie-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .cookie-inner p { color: rgba(255,255,255,0.7); font-size: 0.88rem; max-width: 680px; margin: 0; }
        .cookie-inner a { color: var(--primary-light); }
        .cookie-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
        .cookie-btns button {
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.85rem;
        }
        .cookie-accept { background: var(--gradient-1); color: #fff; }
        .cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid var(--glass-border); }

        /* BRANDING SECTION */
        .branding-section {
            padding: 100px 0;
            background: linear-gradient(180deg, transparent 0%, rgba(157,78,221,0.04) 50%, transparent 100%);
        }
        .branding-section .section-tag::after {
            content: ' NOVITÀ';
            color: var(--primary);
        }
        .branding-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .branding-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        .branding-card:hover {
            transform: translateY(-6px);
            border-color: rgba(157,78,221,0.35);
            box-shadow: 0 12px 28px rgba(0,0,0,0.25);
        }
        .branding-icon {
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            display: block;
        }

        /* PageSpeed 100 */
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
        }
        .marquee-content { animation-play-state: paused; }
        .marquee.in-view .marquee-content { animation-play-state: running; }
        .italy-map-skeleton {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 500 / 820;
            margin: 0 auto;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255,107,53,0.08), rgba(157,78,221,0.06));
        }
        .services-section, .branding-section, .packages-section,
        .testimonials-section, .map-section, .audit-section, .contact-section, .footer {
            content-visibility: auto;
            contain-intrinsic-size: auto 520px;
        }
        @media (max-width: 768px) {
            .navbar, .hero-badge, .stat-item, .service-card, .package-card,
            .testimonial-card, .audit-card, .contact-form-wrapper, .branding-card,
            .packages-toggle, .nav-links.active {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
            }
            .navbar { background: rgba(18, 18, 26, 0.94); }
            .navbar.scrolled { background: rgba(22, 22, 32, 0.98); }
            .whatsapp-btn, .call-btn { animation: none !important; }
            .italy-map-svg .map-pin-pulse-on,
            .italy-map-svg .map-pin.active .map-pin-pulse { animation: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .scroll-reveal { opacity: 1; transform: none; }
        }

        /* SEO locale + conversione */
        .local-seo-section {
            padding: 80px 0;
            background: linear-gradient(180deg, rgba(255,107,53,0.04) 0%, transparent 100%);
        }
        .local-seo-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .local-seo-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            margin-bottom: 1rem;
        }
        .local-seo-content p {
            color: rgba(255,255,255,0.65);
            margin-bottom: 1rem;
            line-height: 1.75;
        }
        .local-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.25rem 0;
        }
        .local-keywords span {
            background: rgba(255,107,53,0.12);
            border: 1px solid rgba(255,107,53,0.25);
            color: var(--primary-light);
            padding: 0.35rem 0.85rem;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
        }
        .local-seo-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        .local-seo-list {
            list-style: none;
            margin-top: 1rem;
        }
        .local-seo-list li {
            padding: 0.55rem 0;
            border-bottom: 1px solid var(--glass-border);
            color: rgba(255,255,255,0.7);
            font-size: 0.92rem;
        }
        .local-seo-list li::before {
            content: '✓';
            color: var(--success);
            margin-right: 0.5rem;
            font-weight: 700;
        }
        .maps-section {
            padding: 0 0 80px;
        }
        .maps-wrap {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            background: var(--glass);
            margin-top: 1.5rem;
        }
        .maps-wrap iframe {
            display: block;
            width: 100%;
            height: 420px;
            border: 0;
        }
        .maps-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            border-top: 1px solid var(--glass-border);
        }
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            display: flex;
            gap: 0.5rem;
            padding: 0.65rem 0.75rem;
            background: rgba(10,10,15,0.96);
            border-top: 1px solid var(--glass-border);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .sticky-cta-btn {
            flex: 1;
            text-align: center;
            padding: 0.75rem 0.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.82rem;
            text-decoration: none;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .sticky-cta-btn.call { background: rgba(255,107,53,0.9); border-color: transparent; }
        .sticky-cta-btn.wa { background: rgba(37,211,102,0.9); border-color: transparent; }
        .sticky-cta-btn.primary { background: var(--gradient-1); border-color: transparent; }
        @media (min-width: 769px) {
            .sticky-cta { display: none; }
        }
        @media (max-width: 768px) {
            .floating-buttons { bottom: 72px; }
            .local-seo-grid { grid-template-columns: 1fr; }
            .maps-wrap iframe { height: 300px; }
        }

        /* Service pages */
        .service-page-hero {
            padding: 120px 0 60px;
            text-align: center;
        }
        .hero-breadcrumb {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 1.5rem;
        }
        .hero-breadcrumb a { color: var(--primary-light); text-decoration: none; }
        .service-page-icon { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
        .service-page-hero h1 {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            margin: 0.75rem 0 1rem;
        }
        .service-page-intro {
            max-width: 680px;
            margin: 0 auto 1.5rem;
            color: rgba(255,255,255,0.75);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .service-article { padding: 40px 0 60px; }
        .service-block {
            max-width: 760px;
            margin: 0 auto 2.5rem;
            padding: 2rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
        }
        .service-block h2 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            color: var(--primary-light);
        }
        .service-block p {
            color: rgba(255,255,255,0.75);
            line-height: 1.75;
        }
        .service-benefits {
            max-width: 760px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(74,159,232,0.08);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
        }
        .service-benefits h2 { margin-bottom: 0.5rem; }
        .service-faq-section { padding: 60px 0; }
        .service-faq-item {
            max-width: 760px;
            margin: 0 auto 0.75rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
        }
        .service-faq-item summary {
            padding: 1.1rem 1.25rem;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
        }
        .service-faq-item summary::-webkit-details-marker { display: none; }
        .service-faq-item p {
            padding: 0 1.25rem 1.1rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.65;
        }
        .service-related-section { padding: 40px 0 60px; }
        .service-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .service-related-card {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            padding: 1.25rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            text-decoration: none;
            color: #fff;
            transition: border-color 0.2s, transform 0.2s;
        }
        .service-related-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .service-related-card span:first-child { font-size: 1.75rem; }
        .service-cta-banner {
            padding: 60px 0 80px;
            text-align: center;
        }
        .service-cta-banner h2 { margin-bottom: 0.75rem; }
        .service-cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
        .services-hub { padding: 40px 0 80px; }
        .hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .hub-card {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            padding: 1.25rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            text-decoration: none;
            color: #fff;
            transition: border-color 0.2s, transform 0.2s;
        }
        .hub-card:hover { border-color: var(--primary); transform: translateY(-2px); }
        .hub-icon { font-size: 1.75rem; }
        .hub-card span:last-child {
            font-size: 0.78rem;
            color: var(--primary-light);
            font-weight: 600;
        }
        .service-card-link {
            display: inline-block;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-light);
            text-decoration: none;
        }
        .service-card-link:hover { text-decoration: underline; }
        .service-card-cta {
            display: inline-block;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-light);
        }
        a.service-card:hover .service-card-cta,
        a.branding-card:hover .service-card-cta {
            text-decoration: underline;
        }