:root {
    --primary: #FF3B30;
    --primary-light: #FF5A52;
    --primary-dark: #cc2f26;
    --primary-glow: rgba(255, 59, 48, 0.35);
    
    --dark: #0A0A0F;
    --dark-card: #14141A;
    --dark-border: rgba(255, 255, 255, 0.08);
    
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray-text: #8E8E93;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    
    --border-radius-sm: 12px;
    --border-radius: 20px;
    --border-radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
p { color: #555; }

/* Premium Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B00 100%);
    color: white;
    padding: 16px 42px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px var(--primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF6B00 0%, var(--primary) 100%);
    z-index: -1;
    transition: opacity 0.4s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.45);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary:hover::before { opacity: 1; }

.btn-nav {
    background: var(--dark);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--font-heading);
    transition: all 0.3s;
}
.btn-nav:hover { background: var(--primary); transform: translateY(-2px); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 2; }
.section-tag {
    display: inline-block;
    background: rgba(255, 59, 48, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 59, 48, 0.2);
}
.section-header h2 { font-size: 56px; color: var(--dark); margin-bottom: 16px; text-transform: uppercase; margin-top: -5px; }
.section-subtitle { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; font-weight: 400; }

@media (max-width: 768px) {
    .section-header h2 { font-size: 36px; }
}

/* Glassmorphism Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex; align-items: center; justify-content: space-between; height: 80px;
}

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

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 59, 48, 0.15); }
    50% { box-shadow: 0 0 30px rgba(255, 59, 48, 0.65), 0 0 10px rgba(255, 107, 0, 0.4); transform: scale(1.02); }
}

.logo-img {
    height: 64px; width: auto;
    border-radius: 10px; /* Linee morbide al logo */
    animation: logoGlow 4s infinite ease-in-out; /* Effetto illuminato costante */
}

.logo span {
    font-family: var(--font-heading);
    font-size: 24px; font-weight: 900; color: var(--dark);
    letter-spacing: -0.5px; text-transform: uppercase;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 15px; color: #555; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 7px; background: none; border: none; cursor: pointer; padding: 12px; z-index: 1001; }
.mobile-menu-btn span { width: 32px; height: 3px; background: var(--dark); border-radius: 4px; transition: 0.3s; }

@media (max-width: 900px) {
    /* Blocca scorrimento pagina quando menu è aperto */
    body.menu-open {
        overflow: hidden !important;
    }
    
    /* =============================================
       FIX DEFINITIVO: Trasformo la NAVBAR STESSA 
       in overlay full-screen quando il menu è aperto.
       Questo bypassa il bug di backdrop-filter che
       intrappola position:fixed dei figli.
       ============================================= */
    body.menu-open .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: var(--dark) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
        z-index: 9998;
    }
    
    /* Il container della navbar diventa verticale e centrato */
    body.menu-open .navbar .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 0;
    }
    
    /* Nascondo il logo quando il menu è aperto */
    body.menu-open .navbar .logo {
        display: none;
    }

    /* Il menu hamburger rimane visibile sopra tutto */
    .mobile-menu-btn { 
        display: flex; 
        position: relative;
        z-index: 9999;
    }

    /* Per default i link sono nascosti su mobile */
    .nav-links { 
        display: none; 
    }

    /* Quando il menu è attivo, mostra i link */
    .nav-links.active {
        display: flex; 
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }

    .nav-links.active li {
        text-align: center;
        width: 100%;
        list-style: none;
    }

    .nav-links.active a { 
        display: block; 
        padding: 16px 0; 
        font-size: 26px; 
        font-family: var(--font-heading);
        font-weight: 800;
        color: white !important;
        text-transform: uppercase;
        letter-spacing: 2px;
        -webkit-text-fill-color: white !important;
    }

    .nav-links.active .btn-nav { 
        margin-top: 20px; 
        background: var(--primary) !important;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 20px;
    }

    /* Hamburger icon diventa bianco quando aperto */
    .mobile-menu-btn.active span { 
        background: white !important; 
    }
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
}

/* Hero Section - Ultra Premium Dark */
.hero {
    padding: 200px 0 140px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex; align-items: center;
}

/* Hero Dynamic Background */
.hero::before {
    content: '';
    position: absolute; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -20%; right: -20%; border-radius: 50%;
    filter: blur(60px); z-index: 0;
    animation: pulseObj 8s ease-in-out infinite alternate;
}
.hero::after {
    content: '';
    position: absolute; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%; left: -10%; border-radius: 50%;
    filter: blur(80px); z-index: 0;
}

@keyframes pulseObj {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-20px, 20px); }
}

.hero .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 2;
}

.hero-badge-text {
    display: inline-block; background: rgba(255,255,255,0.05); color: white;
    padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
    border: 1px solid var(--dark-border); backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 68px; color: white; margin-bottom: 24px; line-height: 1; text-transform: uppercase;
}
.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B00 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 20px; color: rgba(255,255,255,0.7); margin-bottom: 40px; font-weight: 300; }

.hero-stat {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 24px 30px; border-radius: 20px; margin-bottom: 40px;
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--primary); color: rgba(255,255,255,0.9);
}
.hero-stat strong { color: var(--primary); font-size: 22px; font-family: var(--font-heading); }

.hero-image { position: relative; }
.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative; z-index: 2;
}
/* Modern Image Frame Effect */
.hero-image::before {
    content: ''; position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.2); z-index: 1;
}

@media (max-width: 1000px) {
    .hero { padding: 140px 0 80px; min-height: auto; }
    .hero .container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-content h1 { font-size: 48px; }
    .hero-stat { text-align: left; }
    .hero-image::before { display: none; }
}

/* Hook Emotivo */
.hook { padding: 140px 0; background: var(--light); position: relative; }
.hook-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px;
}
.hook-card {
    background: white; padding: 40px 30px; border-radius: var(--border-radius);
    text-align: center; box-shadow: var(--shadow-glass); border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hook-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-hover);
}
.hook-icon { font-size: 48px; margin-bottom: 20px; display: block; filter: saturate(1.2); }
.hook-card h3 { font-size: 16px; font-weight: 600; color: #444; line-height: 1.5; font-family: var(--font-body); }

.hook-conclusion {
    text-align: center; max-width: 650px; margin: 0 auto; padding: 40px;
    background: var(--dark); border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); position: relative; overflow: hidden;
}
.hook-conclusion::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), #FF6B00);
}
.hook-conclusion p { color: white; font-size: 24px; font-family: var(--font-heading); font-weight: 700; line-height: 1.4; }

@media (max-width: 900px) {
    .hook-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Il Metodo */
.metodo {
    padding: 140px 0; background: var(--dark); color: white; position: relative;
}
.metodo .section-tag { background: rgba(255,255,255,0.05); }
.metodo .section-header h2 { color: white; }
.metodo .section-subtitle { color: rgba(255,255,255,0.6); }

.metodo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }

.metodo-step {
    background: var(--dark-card); padding: 40px 32px; border-radius: var(--border-radius);
    text-align: center; border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s; position: relative; overflow: hidden;
}
.metodo-step::before {
    content: ''; position: absolute; inset: 0; opacity: 0;
    background: radial-gradient(circle at center, rgba(255,59,48,0.1) 0%, transparent 70%); transition: 0.5s;
}
.metodo-step:hover {
    transform: translateY(-8px); border-color: rgba(255,59,48,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.metodo-step:hover::before { opacity: 1; }

.step-number {
    font-size: 80px; font-family: var(--font-heading); font-weight: 900;
    color: rgba(255,255,255,0.03); line-height: 0.8; margin-bottom: 20px;
    position: absolute; top: -10px; right: -10px; user-select: none;
}

.metodo-step h3 {
    color: white; font-size: 22px; margin-bottom: 12px; position: relative; z-index: 2;
    text-transform: uppercase; letter-spacing: 1px;
}
.metodo-step p {
    color: rgba(255,255,255,0.6); font-size: 15px; position: relative; z-index: 2;
}

.metodo-footer {
    text-align: center; margin-top: 60px; padding: 24px;
    background: rgba(255, 59, 48, 0.1); border-radius: 50px;
    border: 1px solid rgba(255, 59, 48, 0.2); max-width: 600px; margin-inline: auto;
    color: white; font-size: 20px; font-family: var(--font-heading);
}

@media (max-width: 900px) {
    .metodo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
    .metodo-grid { grid-template-columns: 1fr; }
    .metodo-step h3 { font-size: 20px; }
    .metodo-step { padding: 35px 25px; }
}

/* Differenze */
.differenze { padding: 140px 0; background: white; }
.differenze-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px;
}

.differenza-item {
    display: flex; align-items: center; gap: 16px; justify-content: center;
    background: var(--light); padding: 24px; border-radius: var(--border-radius);
}
.differenza-item h3 { font-size: 16px; margin: 0; color: var(--dark); font-family: var(--font-body); }
.diff-icon { font-size: 20px; color: var(--primary); }

.differenze-highlight { text-align: center; margin: 50px 0; }
.differenze-highlight p { font-size: 32px; font-family: var(--font-heading); font-weight: 800; color: var(--dark); line-height: 1.2; }

.differenze-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 900px; margin: 0 auto;
}
.stat-item {
    background: white; padding: 40px; border-radius: var(--border-radius-lg);
    text-align: center; box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0,0,0,0.04);
}
.stat-number {
    font-size: 64px; font-family: var(--font-heading); font-weight: 900;
    color: var(--primary); line-height: 1; display: block; margin-bottom: 8px;
}
.stat-label { font-size: 15px; color: #666; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

@media (max-width: 768px) {
    .differenze-grid { grid-template-columns: 1fr; }
    .differenze-stats { grid-template-columns: 1fr; }
    .differenza-item {
        justify-content: flex-start;
        text-align: left;
        padding: 30px;
        gap: 20px;
    }
    .differenza-item h3 { font-size: 18px; }
    .diff-icon { min-width: 24px; text-align: center; }
}

/* Risultati */
.risultati { padding: 140px 0; background: var(--light); }
.risultati-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }

.risultato-card {
    background: white; padding: 50px 40px; border-radius: var(--border-radius-lg);
    text-align: center; box-shadow: var(--shadow-glass); transition: 0.4s;
    border-bottom: 4px solid transparent;
}
.risultato-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-hover); border-bottom-color: var(--primary);
}
.result-icon { font-size: 60px; margin-bottom: 24px; display: block; }
.risultato-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); }

.risultato-final { text-align: center; margin-top: 40px; }
.risultato-final p { font-size: 28px; font-family: var(--font-heading); color: #333; }
.risultato-final strong { color: var(--primary); }

@media (max-width: 768px) { .risultati-grid { grid-template-columns: 1fr; } }

/* Obiezioni */
.obiezioni { padding: 140px 0; background: white; }
.obiezioni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.obiezione-card {
    background: var(--light); padding: 40px; border-radius: var(--border-radius-lg);
    transition: 0.4s; border: 1px solid rgba(0,0,0,0.03);
}
.obiezione-card:hover { background: white; box-shadow: var(--shadow-hover); }
.obiezione-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 16px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.obiezione-card h3::before { content: 'Q.'; color: var(--primary); font-size: 24px; opacity: 0.5; }
.obiezione-card p { font-size: 15px; margin-bottom: 16px; color: #555; }
.obiezione-card ul { margin-bottom: 16px; }
.obiezione-card li { font-size: 15px; color: #444; margin-bottom: 8px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.obiezione-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); display: inline-block; }
.obiezione-conclusion { color: var(--primary) !important; font-weight: 700; font-family: var(--font-heading); font-size: 18px !important; }

@media (max-width: 900px) { .obiezioni-grid { grid-template-columns: 1fr; } }

/* Recensioni */
.recensioni {
    padding: 120px 0; background: var(--dark); overflow: hidden; color: white;
}
.recensioni .section-header h2 { color: white; }
.recensioni .section-subtitle { color: rgba(255,255,255,0.6); }

.recensioni-track { display: flex; gap: 24px; width: max-content; animation: scrollLeft 40s linear infinite; padding: 20px 0; }
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-390px * 8)); }
}

@keyframes cardGlowPulse {
    0% { box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02); }
    50% { box-shadow: 0 10px 40px rgba(255, 59, 48, 0.25), inset 0 0 0 1px rgba(255, 59, 48, 0.4); transform: translateY(-4px); }
    100% { box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02); }
}

@keyframes sweepShine {
    0% { left: -150%; }
    25% { left: 250%; }
    100% { left: 250%; }
}

.recensione-card {
    flex: 0 0 350px; background: var(--dark-card); padding: 40px; border-radius: var(--border-radius-lg);
    border: none; text-align: left; margin: 0 12px;
    animation: cardGlowPulse 4s infinite ease-in-out;
    position: relative; overflow: hidden;
}

/* Sfasamento organico dell'illuminazione */
.recensione-card:nth-child(even) { animation-delay: -2s; }
.recensione-card:nth-child(3n) { animation-delay: -1.3s; }
.recensione-card:nth-child(5n) { animation-delay: -3.5s; }

/* Bagliore di riflesso passante */
.recensione-card::before {
    content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    animation: sweepShine 7s infinite;
    pointer-events: none; z-index: 1;
}

.recensione-card:nth-child(even)::before { animation-delay: -3s; }
.recensione-card:nth-child(3n)::before { animation-delay: -1.5s; }

.recensione-card .stars { color: #FFB800; font-size: 22px; letter-spacing: 4px; margin-bottom: 20px; position: relative; z-index: 2; }
.recensione-text { font-size: 16px; color: rgba(255,255,255,0.8); font-style: italic; line-height: 1.6; margin-bottom: 24px; font-family: Georgia, serif; position: relative; z-index: 2; }
.recensione-author { font-size: 16px; font-family: var(--font-heading); font-weight: 700; color: white; position: relative; z-index: 2; }

/* Offerta */
.offerta {
    padding: 120px 0; background: linear-gradient(135deg, var(--primary) 0%, #FF6B00 100%);
    position: relative; overflow: hidden; text-align: center;
}
.offerta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.offerta-content h2 { color: white; font-size: 52px; margin-bottom: 20px; }
.offerta-content p { color: rgba(255,255,255,0.9); font-size: 20px; font-weight: 400; }
.offerta-warning { display: inline-block; background: rgba(0,0,0,0.2); padding: 10px 24px; border-radius: 50px; color: white !important; font-weight: 700; font-family: var(--font-heading); letter-spacing: 1px; text-transform: uppercase; margin-top: 30px; }

@media (max-width: 600px) {
    .offerta { padding: 70px 0; }
    .offerta-content h2 { font-size: 24px; line-height: 1.3; margin-bottom: 16px; }
    .offerta-content p { font-size: 14px; }
    .offerta-warning { font-size: 11px; padding: 8px 14px; margin-top: 16px; display: block; }
}

/* Dove Trovarci */
.dove-trovarci { padding: 140px 0; background: var(--light); }
.dove-trovarci-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }

.map-container { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); background: white; padding: 10px; }
.map-container iframe { border-radius: 24px; }

.dove-trovarci-info {
    background: white; padding: 50px 40px; border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-glass); display: flex; flex-direction: column; justify-content: center;
}
.info-item { margin-bottom: 30px; }
.info-item h3 { font-size: 18px; color: var(--dark); margin-bottom: 12px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.info-item p { font-size: 16px; color: #555; }
.btn-navigazione { display: block; background: var(--dark); color: white; padding: 18px 32px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; text-align: center; transition: 0.4s; margin-top: 10px; }
.btn-navigazione:hover { background: var(--primary); transform: translateY(-4px); box-shadow: 0 15px 30px var(--primary-glow); }

@media (max-width: 900px) { .dove-trovarci-wrapper { grid-template-columns: 1fr; } }

/* Contatti Premium */
.contatti { padding: 140px 0; background: white; position: relative; }
.contatti-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

.contatti-content h2 { font-size: 52px; margin-bottom: 24px; }
.contatti-content > p { font-size: 18px; margin-bottom: 40px; color: #555; }
.contatti-info { background: var(--light); padding: 30px; border-radius: 20px; }
.contatti-info li { font-size: 16px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 16px; color: var(--dark); }
.contatti-info li:last-child { margin-bottom: 0; }

.contatti-form {
    background: white; padding: 50px; border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); position: relative;
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: var(--font-heading); font-weight: 700; margin-bottom: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #333; }
.form-group input, .form-group select {
    width: 100%; padding: 18px 24px; border: 2px solid #EEE; border-radius: 16px;
    font-size: 16px; font-family: var(--font-body); transition: all 0.3s; background: #F9F9F9;
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 5px rgba(255,59,48,0.1);
}

.checkbox-group { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 30px; }
.checkbox-group input { width: 22px; height: 22px; accent-color: var(--primary); margin-top: 2px; }
.checkbox-group label { font-size: 14px; color: #555; font-weight: 500; }
.checkbox-group label a { color: var(--primary); font-weight: 700; text-decoration: underline; }

.btn-full { width: 100%; padding: 20px; font-size: 18px; }
.form-privacy { text-align: center; font-size: 13px; color: #888; margin-top: 20px; }

.urgenza {
    text-align: center; margin-top: 60px; padding: 30px;
    background: rgba(255,59,48,0.05); border-radius: var(--border-radius);
    border: 1px solid rgba(255,59,48,0.2); max-width: 800px; margin-inline: auto;
}
.urgenza p { font-size: 18px; color: var(--dark); font-weight: 500; }
.urgenza strong { color: var(--primary); font-weight: 800; font-family: var(--font-heading); }

@media (max-width: 900px) {
    .contatti-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contatti-form { padding: 30px; }
    .contatti-content h2 { font-size: 40px; }
}

/* Footer Premium */
.footer { padding: 80px 0 30px; background: var(--dark); color: white; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h4 { font-size: 24px; margin-bottom: 16px; text-transform: uppercase; color: white; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 16px; max-width: 300px; }
.footer-logo { height: 110px; width: auto; margin-top: 28px; border-radius: 12px; animation: logoGlow 4s infinite ease-in-out; }

.footer-links h4, .footer-legal h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; color: white; }
.footer-links li, .footer-legal li { margin-bottom: 12px; }
.footer-links a, .footer-legal a { color: rgba(255,255,255,0.6); font-size: 15px; transition: 0.3s; }
.footer-links a:hover, .footer-legal a:hover { color: var(--primary); transform: translateX(5px); display: inline-block; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 14px; }
.footer-bottom a { color: var(--primary); text-decoration: none; font-weight: 600; transition: opacity 0.3s; }
.footer-bottom a:hover { opacity: 0.8; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Cookie Banner Glass - Animazioni Elastiche */
.cookie-banner {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(150px) scale(0.85);
    opacity: 0; visibility: hidden; pointer-events: none;
    background: rgba(20, 20, 26, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    color: white; padding: 24px 32px; z-index: 9999; display: flex;
    border-radius: 20px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); width: 90%; max-width: 600px;
    align-items: center; justify-content: space-between; gap: 20px;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1; visibility: visible; pointer-events: auto;
}

.cookie-banner.hide {
    transform: translateX(-50%) translateY(120px) scale(0.9);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cookie-content { flex: 1; margin: 0; text-align: left; }
.cookie-content p { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; line-height: 1.4; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--primary); color: white; border: none; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-family: var(--font-heading); cursor: pointer; transition: 0.3s; }
.btn-cookie-accept:hover { background: #FF6B00; }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px; border-radius: 50px; font-weight: 600; font-family: var(--font-heading); cursor: pointer; transition: 0.3s; font-size: 14px; }
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: white; }
.btn-cookie-more { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: underline; display: flex; align-items: center; }

@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; text-align: center; bottom: 10px; }
    .cookie-content { text-align: center; }
}
