* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

        body {
    background-color: #060b19;
    color: #ffffff;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

        /* Sticky Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-sizing: border-box; /* <-- Aggiungi questa riga */
            background-color: rgba(6, 11, 25, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo-area {
            display: flex;
            align-items: center;
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif; /* O un altro font che preferisci */
            font-size: 20px;
            font-weight: 850;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .logo-text span {
            color: #e50914; /* Riprende il rosso del tuo pulsante di assistenza */
            margin-left: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            color: #b0c0d0;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        nav ul li a:hover {
            color: #ffffff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .call-text {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #b0c0d0;
            text-decoration: none;
        }

        .btn-assistenza {
            background-color: #e50914;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.2s;
        }

        .btn-assistenza:hover {
            background-color: #b80710;
        }

        /* Hero Section */
        .hero {
            padding: 140px 40px 60px 40px;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .badge-address {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            color: #b0c0d0;
            width: fit-content;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background-color: #e50914;
            border-radius: 50%;
        }

        h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.1;
            color: #ffffff;
        }

        h1 span {
            color: #e50914;
        }

        .hero-desc {
            color: #9ba8bc;
            font-size: 16px;
            max-width: 480px;
        }

        .hero-quote {
            color: #6c7d93;
            font-style: italic;
            font-size: 14px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .btn-primary {
            background-color: #e50914;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-primary:hover {
            background-color: #b80710;
        }

        .btn-whatsapp {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        /* Stats Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 30px;
        }

        .stat-item .number {
            font-size: 28px;
            font-weight: bold;
            color: white;
        }

        .stat-item .label {
            font-size: 13px;
            color: #7b8b9e;
        }

        /* Hero Image & Cards Column */
        .hero-media {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .image-card-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #111a30;
            height: 320px;
        }

        .image-card-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }

        .floating-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(11, 19, 38, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 12px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .floating-icon {
            width: 32px;
            height: 32px;
            background: rgba(229, 9, 20, 0.2);
            border: 1px solid #e50914;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e50914;
        }

        .floating-text .title {
            font-weight: 600;
            font-size: 14px;
        }

        .floating-text .subtitle {
            font-size: 12px;
            color: #9ba8bc;
        }

        .feature-bars {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .feature-bar {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 13px;
            color: #c0d0e0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-bar svg {
            color: #e50914;
            flex-shrink: 0;
        }

        /* --- SECTION 2: CURVED TRANSITION & LIGHT SECTION --- */
        .section-transition-container {
            position: relative;
            background-color: #ffffff; /* Facciamo partire il bianco direttamente da sotto */
            overflow: hidden;
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
            margin-top: -1px; /* Tira su tutto di un pixel per coprire eventuali linee */
        }

        .light-section {
            background-color: #ffffff;
            color: #111827;
            padding: 48px 40px 60px 40px;
            text-align: center;
        }

        .brand-intro-box {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .center-logo-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 24px;
            width: 160px;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .light-section h2.brand-title {
            font-size: 32px;
            font-weight: 800;
            color: #111827;
            letter-spacing: -0.5px;
        }

        .light-section p.brand-subtitle {
            font-size: 16px;
            color: #4b5563;
            max-width: 600px;
            line-height: 1.6;
        }

        .red-dash {
            width: 40px;
            height: 3px;
            background-color: #e50914;
            border-radius: 2px;
            display: none
        }

        /* Cosa Ripariamo Section */
        .services-intro {
            max-width: 1300px;
            margin: 60px auto 0 auto;
            text-align: left;
            padding: 0 40px;
        }

        .services-intro .red-dash {
            margin-bottom: 12px;
        }

        .services-intro h3 {
            font-size: 32px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 10px;
        }

        .services-intro p {
            font-size: 16px;
            color: #4b5563;
            max-width: 600px;
        }

        /* Services Cards Grid */
        .services-grid-container {
            max-width: 1300px;
            margin: 30px auto 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .service-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            text-align: left;
        }

        .service-card-top {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .service-icon-box {
            width: 48px;
            height: 48px;
            background: rgba(229, 9, 20, 0.05);
            border: 1px solid rgba(229, 9, 20, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e50914;
        }

        .service-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
        }

        .service-card p.service-desc {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.5;
        }

        .service-bullet-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin: 16px 0 24px 0;
            padding-top: 16px;
            border-top: 1px solid #f3f4f6;
        }

        .service-bullet-list li {
            font-size: 13px;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-bullet-list li svg {
            color: #e50914;
            flex-shrink: 0;
        }

        .btn-service-card {
            background-color: #e50914;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background-color 0.2s;
        }

        .btn-service-card:hover {
            background-color: #b80710;
        }

        /* Bottom Banner Section */
        .bottom-banner-section {
            background-color: #ffffff;
            padding: 40px 40px 80px 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .bottom-banner-image {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            background: #060b19;
            height: 380px;
        }

        .bottom-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- STILI PER: Servizi per Aziende --- */
        .corporate-section {
            background-color: #060b19;
            padding: 80px 40px;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .corporate-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .corporate-header {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 50px;
        }

        .corporate-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: #ffffff;
        }

        .corporate-header p {
            font-size: 15px;
            color: #9ba8bc;
        }

        .corporate-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .corp-card {
            background: #0b1326;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .corp-card-wide {
            grid-column: span 2;
        }

        .corp-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 15px;
        }

        .corp-icon-box {
            width: 38px;
            height: 38px;
            background: rgba(229, 9, 20, 0.1);
            border: 1px solid rgba(229, 9, 20, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e50914;
            flex-shrink: 0;
        }

        .corp-card-header h3 {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .corp-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .corp-list li {
            font-size: 13.5px;
            color: #b0c0d0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .corp-list li span {
            color: #e50914;
            font-weight: bold;
        }

        .corp-wide-columns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .corporate-footer-cta {
            text-align: center;
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .corporate-footer-cta p {
            font-size: 16px;
            color: #b0c0d0;
        }

        /* --- STILI PER: Le nostre riparazioni più comuni --- */
        .common-repairs-section {
            background-color: #060b19;
            padding: 80px 40px;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .common-repairs-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .common-repairs-header {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 40px;
        }

        .common-repairs-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: #ffffff;
        }

        .common-repairs-header p {
            font-size: 15px;
            color: #9ba8bc;
        }

        .repairs-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 20px;
        }

        .repair-image-card {
            background: #0b1326;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            height: 260px;
            transition: transform 0.2s, border-color 0.2s;
            cursor: pointer;
        }

        .repair-image-card:hover {
            border-color: rgba(229, 9, 20, 0.4);
            transform: translateY(-4px);
        }

        .repair-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-footer-text {
            text-align: center;
            font-size: 13.5px;
            color: #7b8b9e;
            margin-top: 15px;
        }

        /* --- STILI PER: Cosa dicono i nostri clienti (Recensioni) --- */
        .testimonials-section {
            background-color: #060b19;
            padding: 80px 40px;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonials-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 40px;
        }

        .testimonials-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: #ffffff;
        }

        .testimonials-header p {
            font-size: 15px;
            color: #9ba8bc;
        }

        .testimonials-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }

        .testi-stat-card {
            background: #0b1326;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .testi-stat-card .stat-val {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
        }

        .testi-stat-card .stat-lbl {
            font-size: 13px;
            color: #9ba8bc;
        }

        .testimonial-slider-card {
            background: #0b1326;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 25px;
        }

        .testimonial-top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .testimonial-author-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background-color: #e50914;
            color: #ffffff;
            font-weight: bold;
            font-size: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-details .author-name {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
        }

        .author-details .author-role {
            font-size: 13px;
            color: #9ba8bc;
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .testimonial-quote-text {
            font-size: 18px;
            font-style: italic;
            color: #e2e8f0;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .testimonial-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #9ba8bc;
        }

        .testimonial-tag .dot-red {
            width: 6px;
            height: 6px;
            background-color: #e50914;
            border-radius: 50%;
        }

        .testimonials-controls-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .slider-dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            transition: width 0.2s, background 0.2s;
        }

        .slider-dot.active {
            width: 24px;
            background: #e50914;
        }

        .slider-arrows {
            display: flex;
            gap: 10px;
        }

        .slider-arrow-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
        }

        .slider-arrow-btn:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .testimonials-bottom-cta {
            text-align: center;
            margin-top: 40px;
        }

        /* --- STILI PER: Perché scegliere WIN COMPUTER (Sfondo Bianco) --- */
        .why-us-section {
            background-color: #ffffff;
            padding: 80px 40px;
            color: #111827;
            border-top: 1px solid #e5e7eb;
        }

        .why-us-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .why-us-left {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .why-us-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
        }

        .why-us-header h2 {
            font-size: 38px;
            font-weight: 800;
            color: #111827;
            line-height: 1.1;
        }

        .why-us-header p {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.5;
        }

        .why-us-features-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-feature-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .why-feature-icon {
            width: 42px;
            height: 42px;
            background: rgba(229, 9, 20, 0.05);
            border: 1px solid rgba(229, 9, 20, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e50914;
            flex-shrink: 0;
        }

        .why-feature-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 4px;
        }

        .why-feature-content p {
            font-size: 13.5px;
            color: #4b5563;
            line-height: 1.5;
        }

        .why-us-cta-wrapper {
            margin-top: 10px;
        }

        .why-us-right {
            position: relative;
        }

        .why-us-image-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            background: #f9fafb;
            height: 450px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .why-us-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .why-floating-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: #111827;
            padding: 14px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
        }

        .why-floating-badge .badge-num {
            font-size: 26px;
            font-weight: 800;
            color: #e50914;
            line-height: 1;
        }

        .why-floating-badge .badge-txt {
            font-size: 11px;
            font-weight: 600;
            color: #4b5563;
            margin-top: 2px;
        }

        .why-floating-banner {
            position: absolute;
            bottom: 25px;
            left: 25px;
            background: #e50914;
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 6px 15px rgba(229, 9, 20, 0.3);
        }

        /* --- STILI PER: Prima e dopo la riparazione --- */
        .before-after-section {
            background-color: #060b19;
            padding: 80px 40px;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .before-after-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .ba-image-box {
            position: relative;
            background: #0b1326;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            height: 380px;
            display: flex;
        }

        .ba-half {
            flex: 1;
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .ba-half img {
            width: 200%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
        }

        .ba-half.prima img {
            left: 0;
            filter: contrast(1.1);
        }

        .ba-half.dopo img {
            right: 0;
            left: auto;
        }

        .ba-divider-line {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background-color: #e50914;
            z-index: 10;
            transform: translateX(-50%);
        }

        .ba-label {
            position: absolute;
            top: 20px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(6px);
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1px;
            z-index: 15;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .ba-half.prima .ba-label {
            left: 20px;
            color: #ffffff;
        }

        .ba-half.dopo .ba-label {
            right: 20px;
            color: #ffffff;
        }

        .ba-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .ba-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .ba-header h2 {
            font-size: 38px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
        }

        .ba-header p {
            font-size: 15px;
            color: #9ba8bc;
            line-height: 1.6;
        }

        .ba-alert-box {
            background: rgba(229, 9, 20, 0.05);
            border: 1px solid rgba(229, 9, 20, 0.2);
            padding: 16px 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .ba-alert-icon {
            color: #e50914;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ba-alert-text {
            font-size: 13.5px;
            color: #b0c0d0;
            line-height: 1.4;
        }

        .ba-alert-text strong {
            color: #ffffff;
        }

        /* --- STILI PER: Sezione Form "Richiedi una riparazione" --- */
        .repair-form-section {
            background-color: #060b19;
            padding: 80px 40px;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .repair-form-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        

        .form-info-side {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-info-side h2 {
            font-size: 38px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
        }

        .form-info-side > p {
            font-size: 15px;
            color: #9ba8bc;
            line-height: 1.5;
        }

        .form-benefits-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-benefits-list li {
            font-size: 14px;
            color: #b0c0d0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-benefits-list li svg {
            color: #e50914;
            flex-shrink: 0;
        }

        .form-whatsapp-box {
            background: #0b1326;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 10px;
        }

        .form-whatsapp-box p {
            font-size: 14px;
            color: #9ba8bc;
        }

        .btn-whatsapp-solid {
            background-color: #25d366;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.2s;
            width: fit-content;
        }

        .btn-whatsapp-solid:hover {
            background-color: #20ba5a;
        }

        /* Card bianca contenente il form a destra */
        .form-card-side {
            background: #ffffff;
            color: #111827;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .form-card-header {
            margin-bottom: 25px;
        }

        .form-card-header h3 {
            font-size: 22px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 4px;
        }

        .form-card-header p {
            font-size: 13px;
            color: #6b7280;
        }

        .styled-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        

        .styled-form label {
            font-size: 12.5px;
            font-weight: 700;
            color: #374151;
        }

        .input-with-icon {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-with-icon span {
            position: absolute;
            left: 14px;
            color: #9ca3af;
            font-size: 15px;
        }

        .styled-form input,
        .styled-form select,
        .styled-form textarea {
            width: 100%;
            background-color: #f9fafb;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 12px 14px 12px 40px;
            font-size: 14px;
            color: #111827;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .styled-form select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' 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 14px center;
        }

        .styled-form input:focus,
        .styled-form select:focus,
        .styled-form textarea:focus {
            border-color: #e50914;
            box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
            background-color: #ffffff;
        }

        .styled-form textarea {
            padding-left: 40px;
            resize: vertical;
            min-height: 100px;
        }

        .form-checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #4b5563;
            cursor: pointer;
        }

        .form-checkbox-label input {
            width: 16px;
            height: 16px;
            accent-color: #e50914;
            padding: 0;
        }

        .btn-submit-repair {
            background-color: #e50914;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 14px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background-color 0.2s;
            margin-top: 5px;
        }

        .btn-submit-repair:hover {
            background-color: #b80710;
        }

        .form-card-footer {
            text-align: center;
            margin-top: 15px;
            font-size: 12px;
            color: #9ca3af;
        }
        
        .faq-section {
            max-width: 900px;
            margin: 50px auto;
            padding: 40px 20px;
            text-align: center;
            background-color: #f8fafc;
            border-radius: 16px;
        }
        .faq-section .red-line {
            width: 40px;
            height: 3px;
            background-color: #e53e3e;
            margin: 0 auto 15px auto;
        }
        .faq-section h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 10px;
        }
        .faq-section p {
            font-size: 1.05rem;
            color: #4a5568;
            margin-bottom: 40px;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            text-align: left;
        }
        .faq-item:hover {
            border-color: #cbd5e0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .faq-question {
            padding: 22px 24px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a202c;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }
        .faq-icon {
            width: 32px;
            height: 32px;
            background-color: #ebf8ff;
            color: #3182ce;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background-color: #3182ce;
            color: #ffffff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.6;
            background-color: #ffffff;
        }
        .faq-item.active .faq-answer {
            max-height: 600px; /* più spazio per risposte lunghe */
            padding: 0 24px 22px 24px;
        }

        /* --- STILI PER: Footer --- */
        footer.site-footer {
            background-color: #040711;
            color: #9ba8bc;
            padding: 60px 40px 30px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        

        

        .footer-col h3 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            color: #9ba8bc;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links li a {
            color: #b0c0d0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links li a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #6c7d93;
        }

        

/* Sezione Dove Siamo */
.location-section {
    padding: 80px 20px;
    background-color: #060b19; /* Stesso sfondo scuro del tuo header */
    color: #ffffff;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.location-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.location-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.6;
}

/* Griglia a 2 colonne */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.location-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card informative */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.2s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.info-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.red-bg { background-color: #e50914; color: white; }
.blue-bg { background-color: #3b82f6; color: white; }

.info-content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: #e50914;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* Orari */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.hour-row .day {
    color: rgba(255, 255, 255, 0.7);
}

.hour-row .time {
    font-weight: 500;
}

.hour-row .closed {
    color: #e50914;
}

/* Sotto-griglia contatti */
.contact-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-card {
    display: flex;
    text-decoration: none;
    align-items: center;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 2px;
}

.contact-value {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Banner Urgenze */
.urgency-banner {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgency-icon {
    font-size: 24px;
}

.urgency-banner strong {
    font-size: 14px;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.urgency-banner p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Colonna Mappa */
.location-map-col {
    min-height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#servizi,
#faq {
    scroll-margin-top: 100px;
}
/* =====================================================
   RESPONSIVE + MOBILE MENU
   ===================================================== */

/* Hamburger button (nascosto su desktop) */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay quando menu aperto */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
}
.nav-overlay.visible {
    display: block;
}

/* =====================================================
   MEDIA QUERIES CONSOLIDATE
   Breakpoint: 1024px | 900px | 600px | 400px
   ===================================================== */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
header {
        padding: 12px 24px;
    }
    nav ul {
        gap: 18px;
    }
    .hero {
        padding: 120px 24px 50px 24px;
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }
    h1 {
        font-size: 34px;
    }
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
        gap: 20px;
    }
    .services-intro {
        padding: 0 24px;
    }
    .corporate-section,
    .common-repairs-section,
    .testimonials-section,
    .why-us-section,
    .before-after-section,
    .repair-form-section,
    .location-section {
        padding: 60px 24px;
    }
    .corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .corp-card-wide {
        grid-column: span 2;
    }
    .repairs-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-container,
    .before-after-container {
        gap: 40px;
    }
    .why-us-header h2,
    .ba-header h2,
    .form-info-side h2 {
        font-size: 32px;
    }
    .footer-container {
        gap: 30px;
    }
    footer.site-footer {
        padding: 50px 24px 25px 24px;
    }
}

/* ---------- TABLET / MOBILE LARGE (max-width: 900px) ---------- */
@media (max-width: 900px) {
/* Header diventa hamburger */
    .menu-toggle {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: #0b1326;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: 90px 28px 40px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    nav.open {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 8px;
    }
    nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        color: #e2e8f0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .header-actions .call-text {
        display: none;
    }
    .header-actions .btn-assistenza {
        padding: 9px 14px;
        font-size: 13px;
    }

    /* Hero stack */
    .hero {
        grid-template-columns: 1fr;
        padding: 110px 20px 40px 20px;
        gap: 36px;
    }
    .hero-content {
        order: 1;
    }
    .hero-media {
        order: 2;
    }
    h1 {
        font-size: 30px;
    }
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .stat-item .number {
        font-size: 22px;
    }

    /* Services */
    .services-grid-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
    }
    .services-intro {
        padding: 0 20px;
        margin-top: 40px;
    }
    .services-intro h3 {
        font-size: 26px;
    }

    /* Corporate */
    .corporate-grid {
        grid-template-columns: 1fr;
    }
    .corp-card-wide {
        grid-column: span 1;
    }
    .corp-wide-columns {
        grid-template-columns: 1fr;
    }
    .corporate-header h2 {
        font-size: 28px;
    }

    /* Gallery */
    .repairs-gallery-grid {
        grid-template-columns: 1fr;
    }
    .repair-image-card {
        height: 220px;
    }

    /* Testimonials */
    .testimonials-stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .testimonial-slider-card {
        padding: 28px 22px;
    }
    .testimonial-quote-text {
        font-size: 16px;
    }

    /* Why us + Before/After */
    .why-us-container,
    .before-after-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .why-us-image-container,
    .ba-image-box {
        height: 320px;
    }
    .why-us-header h2,
    .ba-header h2 {
        font-size: 28px;
    }

    /* Visit / Location */
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-map-col,
    .map-wrapper {
        min-height: 320px;
    }

    /* Form */
    .repair-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-card-side {
        padding: 28px 22px;
    }
    .form-info-side h2 {
        font-size: 28px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    /* Light section */
    .light-section {
        padding: 30px 20px 50px 20px;
    }
    .light-section h2.brand-title {
        font-size: 26px;
    }
    .bottom-banner-section {
        padding: 30px 20px 50px 20px;
    }
    .bottom-banner-image {
        height: 240px;
    }
}

/* ---------- MOBILE (max-width: 600px) ---------- */
@media (max-width: 600px) {
header {
        padding: 10px 16px;
    }
    .logo-text {
        font-size: 17px;
    }
    .header-actions .btn-assistenza {
        display: none;
    }

    .hero {
        padding: 100px 16px 32px 16px;
    }
    h1 {
        font-size: 26px;
        line-height: 1.15;
    }
    .hero-desc {
        font-size: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    .image-card-container {
        height: 240px;
    }

    .services-grid-container {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 16px;
    }
    .service-card {
        padding: 24px 20px;
    }
    .services-intro {
        padding: 0 16px;
    }
    .services-intro h3 {
        font-size: 24px;
    }

    .corporate-section,
    .common-repairs-section,
    .testimonials-section,
    .why-us-section,
    .before-after-section,
    .repair-form-section,
    .location-section {
        padding: 48px 16px;
    }
    .corporate-header h2,
    .common-repairs-header h2,
    .testimonials-header h2,
    .why-us-header h2,
    .ba-header h2,
    .location-header h2,
    .form-info-side h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-subgrid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    footer.site-footer {
        padding: 40px 16px 24px 16px;
    }

    .faq-section {
        margin: 30px 12px;
        padding: 28px 16px;
    }
    .faq-section h2 {
        font-size: 1.6rem;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 1rem;
    }

    .testimonial-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .why-us-image-container,
    .ba-image-box {
        height: 260px;
    }
    .why-floating-badge {
        top: 12px;
        right: 12px;
        padding: 10px 14px;
    }
    .why-floating-banner {
        bottom: 12px;
        left: 12px;
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
h1 {
        font-size: 23px;
    }
    .btn-primary,
    .btn-whatsapp-solid,
    .btn-assistenza,
    .btn-service-card,
    .btn-submit-repair {
        font-size: 13px;
        padding: 11px 16px;
    }
}
