        /* ============================================
           CONTATTI PAGE — Full-width single form layout
        ============================================ */

        /* ============================================
           INFO STRIP — tre colonne sopra il form
        ============================================ */
        .contact-info-strip {
            background: var(--bg-elevated);
            border-bottom: 1px solid var(--border-subtle);
        }

        .contact-info-strip .container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        .info-tile {
            padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            border-right: 1px solid var(--border-subtle);
            transition: background var(--transition-fast);
        }

        .info-tile:last-child {
            border-right: none;
        }

        .info-tile:hover {
            background: rgba(255,255,255,0.025);
        }

        .info-tile__label {
            font-family: var(--font-condensed);
            font-size: 0.72rem;
            color: var(--accent-red-light);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
        }

        .info-tile__value {
            font-family: var(--font-condensed);
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .info-tile__value a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .info-tile__value a:hover {
            color: var(--accent-red-light);
        }

        @media (max-width: 768px) {
            .contact-info-strip .container {
                grid-template-columns: 1fr;
            }
            .info-tile {
                border-right: none;
                border-bottom: 1px solid var(--border-subtle);
                padding: 1.8rem clamp(1.5rem, 5vw, 2.5rem);
            }
            .info-tile:last-child {
                border-bottom: none;
            }
        }

        /* ============================================
           FORM SECTION
        ============================================ */
        .form-section {
            padding: var(--section-padding) var(--container-padding);
            background: var(--bg-primary);
        }

        .form-wrap {
            max-width: 820px;
            margin: 0 auto;
        }

        .form-header {
            margin-bottom: 3.5rem;
        }

        .form-header .section-label {
            margin-bottom: 1.2rem;
        }

        .form-header__title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            line-height: 0.92;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .form-header__title .red {
            color: var(--accent-red-light);
            text-shadow: 0 0 30px var(--accent-red-glow);
        }

        .form-header__desc {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.75;
            max-width: 560px;
        }

        .form-header__desc strong {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ============================================
           FIELDS
        ============================================ */
        .field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 1.2rem;
        }

        .field-row.full { grid-template-columns: 1fr; }

        @media (max-width: 560px) {
            .field-row { grid-template-columns: 1fr; }
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .field label {
            font-family: var(--font-condensed);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .field label .req {
            color: var(--accent-red-light);
            margin-left: 2px;
        }

        .field input,
        .field textarea,
        .field select {
            width: 100%;
            padding: 0.95rem 1.1rem;
            background: var(--bg-input);
            border: 1px solid var(--border-default);
            border-radius: 6px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.97rem;
            transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
        }

        .field input:focus,
        .field textarea:focus,
        .field select:focus {
            outline: none;
            border-color: var(--accent-red);
            background: rgba(255,255,255,0.05);
            box-shadow: 0 0 0 3px var(--accent-red-glow);
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: var(--text-muted);
            font-size: 0.93rem;
        }

        .field textarea {
            resize: vertical;
            min-height: 120px;
        }

        .field select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .field select option { background: #14141a; }

        .form-divider {
            height: 1px;
            background: var(--border-subtle);
            margin: 2rem 0;
        }

        /* ============================================
           PRIVACY + SUBMIT
        ============================================ */
        .privacy-row {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin: 2rem 0 0;
        }

        .privacy-row input[type="checkbox"] {
            width: 16px; height: 16px;
            accent-color: var(--accent-red);
            flex-shrink: 0;
            margin-top: 3px;
            cursor: pointer;
        }

        .privacy-row label {
            font-size: 0.83rem;
            color: var(--text-muted);
            line-height: 1.6;
            cursor: pointer;
        }

        .privacy-row label a {
            color: var(--accent-red-light);
            text-decoration: underline;
        }

        .submit-row {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .submit-row .btn-primary {
            padding: 1.1rem 2.8rem;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .submit-aside {
            font-family: var(--font-condensed);
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .submit-aside span {
            display: block;
            color: var(--text-tertiary);
        }

        .form-success {
            display: none;
            gap: 1rem;
            align-items: center;
            padding: 1.2rem 1.6rem;
            background: rgba(76,175,80,0.07);
            border: 1px solid rgba(76,175,80,0.25);
            border-radius: 8px;
            color: #5cb85c;
            font-family: var(--font-condensed);
            font-size: 1rem;
            margin-top: 1.5rem;
        }

        .form-success.show {
            display: flex;
            animation: fadeInUp 0.5s var(--ease-out-expo);
        }

        /* ============================================
           MAP STRIP — full-width, nessun filtro scuro
        ============================================ */
        .map-strip {
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .map-strip iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Solo fade laterale e in basso, nessun darkening */
        .map-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right, var(--bg-primary) 0%, transparent 8%, transparent 92%, var(--bg-primary) 100%),
                linear-gradient(to bottom, transparent 65%, var(--bg-primary) 100%);
            pointer-events: none;
            z-index: 2;
        }

        .map-pin-label {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--bg-elevated);
            border: 1px solid var(--border-default);
            border-radius: 8px;
            padding: 0.8rem 1.6rem;
            font-family: var(--font-condensed);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            box-shadow: var(--shadow-md);
        }

        .map-pin-label::before {
            content: '';
            width: 8px; height: 8px;
            background: var(--accent-red);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-red-glow);
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .map-open-link {
            color: var(--accent-red-light);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            margin-left: 0.3rem;
            transition: var(--transition-fast);
        }

        .map-open-link:hover {
            color: var(--accent-red-hover);
        }

        /* ============================================
           FAQ
        ============================================ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border-subtle);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            margin-top: 3rem;
        }

        @media (max-width: 760px) {
            .faq-grid { grid-template-columns: 1fr; }
        }

        .faq-item { background: var(--bg-card); }

        .faq-question {
            width: 100%;
            padding: 1.4rem 1.6rem;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-condensed);
            font-size: 0.98rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            transition: background var(--transition-fast);
            line-height: 1.4;
        }

        .faq-question:hover { background: rgba(255,255,255,0.03); }

        .faq-marker {
            width: 22px; height: 22px;
            flex-shrink: 0;
            border: 1px solid var(--border-default);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--accent-red-light);
            line-height: 1;
            transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
            margin-top: 1px;
        }

        .faq-item.open .faq-marker {
            transform: rotate(45deg);
            background: var(--accent-red);
            border-color: var(--accent-red);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-out-expo);
        }

        .faq-item.open .faq-answer { max-height: 300px; }

        .faq-answer p {
            padding: 0 1.6rem 1.4rem;
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.75;
            border-top: 1px solid var(--border-subtle);
            padding-top: 1rem;
            margin: 0;
        }

        /* ============================================
           WHATSAPP FLOAT
        ============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem; right: 2rem;
            width: 56px; height: 56px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: var(--z-nav);
            transition: transform var(--transition-fast);
            animation: wa-pulse 2.5s infinite;
        }

        .whatsapp-float:hover { transform: scale(1.1); }
        .whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

        @keyframes wa-pulse {
            0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.35); }
            50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.08); }
        }