/* ===== VARIABILI CSS ===== */
:root {
    /* Google Colors */
    --google-blue: #4285f4;
    --google-red: #ea4335;
    --google-yellow: #fbbc05;
    --google-green: #34a853;
    
    /* Brand Colors */
    --brand-yellow: #fad60c;
    --brand-red: #e73638;
    --brand-blue: #4d91cd;
    --brand-green: #67ba7f;
    
    /* Primary Colors */
    --primary-color: #4285f4; /* Google Blue */
    --primary-dark: #3367d6;
    --primary-light: #669df6;
    --secondary-color: #ea4335; /* Google Red */
    --secondary-dark: #d33b2c;
    --secondary-light: #ee6659;
    
    /* Neutral Colors */
    --dark-color: #202124;
    --darker-color: #171717;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f4;
    --gray-200: #e8eaed;
    --gray-300: #dadce0;
    --gray-400: #9aa0a6;
    --gray-500: #5f6368;
    --gray-600: #3c4043;
    --gray-700: #202124;
    --gray-800: #171717;
    --gray-900: #0d1117;
    
    /* Modern Google Fonts */
    --font-primary: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Modern Google-style shadows */
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    --shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
    --shadow-md: 0 2px 4px -1px rgba(60,64,67,.3), 0 4px 8px 0 rgba(60,64,67,.15);
    --shadow-lg: 0 4px 8px -2px rgba(60,64,67,.3), 0 8px 16px 0 rgba(60,64,67,.15);
    --shadow-xl: 0 8px 16px -4px rgba(60,64,67,.3), 0 16px 32px 0 rgba(60,64,67,.15);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #4285f4 0%, #669df6 100%);
    --gradient-secondary: linear-gradient(135deg, #ea4335 0%, #ee6659 100%);
    --gradient-accent: linear-gradient(135deg, #fbbc05 0%, #34a853 100%);
    --gradient-hero: linear-gradient(135deg, rgba(66, 133, 244, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.section-title-left::after {
    left: 0;
    transform: none;
    bottom: -20px;
}

.accent-text {
    color: var(--brand-yellow);
    position: relative;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100vw;
    border-bottom: 1px solid var(--gray-200);
}

.navbar.scrolled {
    background: #ffffff !important;
    padding: 0.25rem 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-300);
}

.navbar .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0.1rem;
    padding: 0.4rem 0.6rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    border-radius: 8px;
    min-width: 90px;
    text-align: center;
    white-space: nowrap;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(66, 133, 244, 0.08);
    transform: none;
}

.navbar-nav .nav-link:hover::before {
    width: 60%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(66, 133, 244, 0.12);
}

.navbar-nav .nav-link.active::before {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button in Header */
.navbar-cta {
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
}

.navbar-cta .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary-color);
    border: none;
    color: white;
    box-shadow: var(--shadow-sm);
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.navbar-cta .btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.navbar-cta .btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background: var(--gradient-hero), 
                url('img/street-hero-point.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(250, 214, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(77, 145, 205, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(250, 214, 12, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(77, 145, 205, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(250, 214, 12, 0.05) 0%, transparent 50%);
    animation: mapPing 8s ease-in-out infinite;
}

@keyframes mapPing {
    0%, 100% { 
        opacity: 0.1;
        transform: scale(1);
    }
    25% { 
        opacity: 0.3;
        transform: scale(1.1);
    }
    50% { 
        opacity: 0.2;
        transform: scale(1.05);
    }
    75% { 
        opacity: 0.4;
        transform: scale(1.15);
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.4);
}

/* Ping animati per simulare le attività sulla mappa */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, var(--brand-yellow) 2px, transparent 2px),
        radial-gradient(circle at 85% 15%, var(--brand-blue) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, var(--brand-yellow) 2px, transparent 2px),
        radial-gradient(circle at 75% 85%, var(--brand-blue) 2px, transparent 2px),
        radial-gradient(circle at 45% 35%, var(--brand-yellow) 2px, transparent 2px),
        radial-gradient(circle at 65% 65%, var(--brand-blue) 2px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    animation: pingPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pingPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Effetto hover per tutta la sezione hero */
.hero-section:hover .hero-overlay {
    background: rgba(17, 24, 39, 0.6);
    transition: all 0.3s ease;
}

.hero-section:hover::after {
    opacity: 0.8;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons .btn {
    font-family: var(--font-secondary);
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow);
    font-size: 1rem;
}

.btn-primary {
    background: var(--brand-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(77, 145, 205, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #3a7bb8;
    box-shadow: 0 6px 20px rgba(77, 145, 205, 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover .fa-arrow-right,
.btn-primary:hover .fa-chevron-right {
    transform: translateX(5px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn .fa-arrow-right,
.btn .fa-chevron-right {
    transition: transform 0.3s ease;
}

/* Pulsante WhatsApp specifico */
.btn-primary .fab.fa-whatsapp {
    font-size: 1.1rem;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline-light:hover .fa-arrow-right,
.btn-outline-light:hover .fa-chevron-right {
    transform: translateX(5px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary:hover .fa-arrow-right,
.btn-outline-primary:hover .fa-chevron-right {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== PROBLEMA SECTION ===== */
.problem-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(250, 214, 12, 0.3);
}

.problem-card:hover .problem-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.problem-icon i {
    font-size: 2rem;
    color: var(--white);
}

.problem-card h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.problem-card p {
    font-family: var(--font-secondary);
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--gray-600);
    transition: all 0.2s ease;
    font-weight: 500;
    text-transform: capitalize;
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:active {
    background: var(--primary-color);
    color: white;
}

/* Nascondi la freccia di default di Bootstrap */
.dropdown-toggle::after {
    display: none;
}

/* Stile per la freccia custom */
.dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* ===== CORREZIONE ANIMAZIONI MOBILE ===== */
@media (max-width: 991px) {
    /* Disabilita animazioni che causano overflow orizzontale */
    [data-aos*="slide-right"],
    [data-aos*="fade-right"],
    [data-aos*="slide-left"],
    [data-aos*="fade-left"] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    /* Mantieni solo animazioni verticali e fade */
    [data-aos*="slide-up"],
    [data-aos*="slide-down"],
    [data-aos*="fade-up"],
    [data-aos*="fade-down"],
    [data-aos*="fade"] {
        /* Queste animazioni sono OK */
    }
}

/* ===== MOBILE MENU IMPROVEMENTS ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        text-align: left;
        width: 100%;
        margin: 0;
        min-width: auto;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--gray-100);
        transform: none;
    }
    
    .navbar-nav .nav-link:hover::before {
        width: 0;
    }
    
    .navbar-nav .nav-link.active {
        background: var(--primary-color);
        color: white !important;
    }
    
    .navbar-nav .nav-link.active::before {
        width: 0;
    }
    
    /* Dropdown specifico per mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--gray-100);
        margin: 0.5rem 0 0 0;
        border-radius: 8px;
        padding: 0.5rem 0;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Dropdown mobile personalizzato */
    .dropdown-menu-mobile {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--gray-100);
        margin: 0.5rem 0 0 0;
        border-radius: 8px;
        padding: 0.5rem 0;
        display: none;
        list-style: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .dropdown-menu-mobile.show {
        display: block !important;
    }
    
    .dropdown-menu-mobile li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block;
    }
    
    .dropdown-menu-mobile li::before {
        display: none !important;
    }
    
    .dropdown-menu-mobile li::marker {
        display: none !important;
    }
    
    .dropdown-menu-mobile .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0.25rem 0;
        border-radius: 4px;
        margin-left: 1rem;
        margin-right: 1rem;
        display: block;
        text-decoration: none;
        color: var(--dark-color);
        transition: all 0.2s ease;
    }
    
    .dropdown-menu-mobile .dropdown-item:hover {
        background: var(--primary-color);
        color: white;
        transform: none;
    }
    
    /* Animazione smooth per il chevron mobile */
    #serviziChevron {
        transition: transform 0.3s ease;
    }
    
    /* Forza rimozione bullet point su mobile */
    .navbar-nav.d-lg-none ul {
        list-style: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .navbar-nav.d-lg-none li {
        list-style: none !important;
    }
    
    .navbar-nav.d-lg-none li::before,
    .navbar-nav.d-lg-none li::after {
        display: none !important;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0.25rem 0;
        border-radius: 4px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .dropdown-item:hover {
        background: var(--primary-color);
        color: white;
        transform: none;
    }
    
    /* CTA button nel menu mobile */
    .navbar-cta {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-cta .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* ===== BADGES ===== */
.section-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Badge Leva 1 - Giallo */
#presenza .section-badge {
    background: linear-gradient(135deg, var(--brand-yellow), #ffd700);
    color: var(--dark-color);
    border-color: var(--brand-yellow);
    box-shadow: 0 4px 15px rgba(250, 214, 12, 0.4);
}

/* Badge Leva 2 - Blu (Recommended) */
#marketing .section-badge.recommended {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

/* Badge Leva 3 - Verde */
#recensioni .section-badge {
    background: linear-gradient(135deg, var(--brand-green), #5cb85c);
    color: white;
    border-color: var(--brand-green);
    box-shadow: 0 4px 15px rgba(103, 186, 127, 0.4);
}

/* ===== PROBLEM BOX ===== */
.problem-box {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.05) 0%, rgba(234, 67, 53, 0.02) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(234, 67, 53, 0.2);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
}

.problem-box h3 {
    color: var(--dark-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.problem-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.problem-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.problem-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== SOLUTION INTRO ===== */
.solution-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
}

/* ===== PILLAR CARDS ===== */
.pillar-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gray-200);
    height: 100%;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pillar-card.recommended {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(66, 133, 244, 0.02) 100%);
    transform: scale(1.05);
}

.pillar-card.recommended:hover {
    transform: scale(1.05) translateY(-8px);
}

.pillar-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(250, 214, 12, 0.3);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(250, 214, 12, 0.5);
}

.pillar-icon i {
    font-size: 2.5rem;
    color: white;
}

.pillar-number {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Badge specifico per ogni leva nella card */
.pillar-card:nth-child(1) .pillar-number {
    background: linear-gradient(135deg, var(--brand-yellow), #ffd700);
    color: var(--dark-color);
    border-color: var(--brand-yellow);
    box-shadow: 0 2px 8px rgba(250, 214, 12, 0.3);
}

.pillar-card:nth-child(2) .pillar-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

.pillar-card:nth-child(3) .pillar-number {
    background: linear-gradient(135deg, var(--brand-green), #5cb85c);
    color: white;
    border-color: var(--brand-green);
    box-shadow: 0 2px 8px rgba(103, 186, 127, 0.3);
}

.pillar-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.pillar-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pillar-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===== METHOD CTA ===== */
.method-cta {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(52, 168, 83, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(66, 133, 244, 0.2);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(250, 214, 12, 0.3);
    transition: all 0.3s ease;
}

.service-icon.google-my-business {
    background: var(--brand-yellow);
    box-shadow: 0 4px 20px rgba(250, 214, 12, 0.3);
}

.service-icon.google-ads {
    background: var(--google-blue);
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.service-icon.meta-ads {
    background: var(--google-blue);
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.service-icon.nfc {
    background: var(--brand-green);
    box-shadow: 0 4px 20px rgba(103, 186, 127, 0.3);
}

.service-icon.bot {
    background: var(--brand-green);
    box-shadow: 0 4px 20px rgba(103, 186, 127, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.service-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
}

.service-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.service-price .period {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

.service-price-options {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
}

.price-option {
    margin-bottom: 1rem;
}

.price-option:last-child {
    margin-bottom: 0;
}

.option-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.option-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.option-price .period {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
}

.price-divider {
    text-align: center;
    color: var(--gray-500);
    font-weight: 500;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.service-badge-included {
    text-align: center;
    background: linear-gradient(135deg, var(--google-green), #2e7d32);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.service-badge-included i {
    margin-right: 0.5rem;
}

.service-description {
    margin-bottom: 2rem;
}

.service-description h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description p {
    color: var(--gray-600);
    line-height: 1.7;
}

.service-benefits {
    margin-bottom: 2rem;
}

.service-benefits h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.service-benefits li i {
    color: var(--google-green);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-benefits li strong {
    display: inline;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-result {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1), rgba(52, 168, 83, 0.05));
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    border-left: 4px solid var(--google-green);
}

.service-result i {
    color: var(--google-green);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.service-result span {
    color: var(--gray-700);
    font-weight: 600;
}

.service-addon {
    background: var(--gray-100);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-addon h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-addon h5 i {
    margin-right: 0.5rem;
}

.service-addon p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gray-200);
    height: 100%;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-yellow);
}

.testimonial-stars {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--google-yellow);
    font-size: 1.25rem;
    margin: 0 0.15rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ===== WHY US SECTION (Perché Scegliere Noi) ===== */
.reason-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gray-200);
    height: 100%;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
}

.reason-icon i {
    font-size: 2.5rem;
    color: white;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.reason-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.why-us-box {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(52, 168, 83, 0.05) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(66, 133, 244, 0.2);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.why-us-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(66, 133, 244, 0.4);
}

.why-us-box h3 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
}

.why-us-box p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.why-us-list li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 1.6;
}

.why-us-list li i {
    color: var(--google-green);
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-us-list li strong {
    display: inline;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.why-us-stat {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.final-reason {
    background: linear-gradient(135deg, var(--brand-yellow), #ffd700);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(250, 214, 12, 0.4);
    border: 3px solid var(--brand-yellow);
    width: 100%;
    max-width: 100%;
}

.final-reason h4 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
}

.final-reason .lead {
    color: var(--gray-800);
    font-size: 1.15rem;
}

.final-reason .btn {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.final-reason .btn:hover {
    background: var(--darker-color);
    border-color: var(--darker-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.final-reason .btn:hover .fa-arrow-right,
.final-reason .btn:hover .fa-chevron-right {
    transform: translateX(5px);
}

.final-reason-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--dark-color);
    border: 2px solid var(--dark-color);
    color: white;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--darker-color);
    border-color: var(--darker-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-dark:hover .fa-arrow-right,
.btn-dark:hover .fa-chevron-right {
    transform: translateX(5px);
}

/* ===== ABOUT VALUES ===== */
.about-values {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.value-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.value-item span {
    color: var(--gray-700);
    line-height: 1.6;
}

.value-item strong {
    display: inline;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===== PACKAGES SECTION (deprecated but keep for compatibility) ===== */
.package-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.package-card.recommended {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.2);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(66, 133, 244, 0.02) 100%);
    position: relative;
    z-index: 2;
}

.package-card.recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.package-card.recommended:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.recommended-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.package-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.package-price {
    margin-bottom: 2rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.package-price .period {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.package-features li i {
    color: var(--google-green);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.package-features li strong {
    display: inline;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.package-note {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.package-note i {
    color: var(--google-yellow);
}

.package-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
}

.package-cta .btn,
.service-cta .btn {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    font-size: 1rem;
}

/* ===== EXTRA SECTION ===== */
.extra-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.extra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.extra-card:hover::before {
    left: 100%;
}

.extra-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--google-blue);
}

.extra-icon {
    width: 64px;
    height: 64px;
    background: var(--google-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.2s ease;
}

.extra-card:hover .extra-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.extra-icon i {
    font-size: 2rem;
    color: var(--white);
}

.extra-header h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.extra-price {
    margin-bottom: 1.5rem;
}

.extra-price .price {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.extra-price .period {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.extra-features {
    margin-bottom: 2rem;
    flex: 1;
}

.extra-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extra-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.extra-features li i {
    color: var(--google-green);
    font-size: 0.9rem;
}

.extra-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}


/* ===== STEPS SECTION ===== */
.step-card {
    background: var(--white);
    padding: 3rem 1.5rem 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    min-height: 280px;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: visible;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--google-green);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--google-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--google-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    transition: all 0.2s ease;
}

/* Tutte le icone dei passi gialle */
.step-icon { background: var(--brand-yellow) !important; }

.step-card:hover .step-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.step-card p {
    font-family: var(--font-secondary);
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.disclaimer-box {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(52, 168, 83, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    text-align: left;
    max-width: 800px;
    border: 2px solid rgba(66, 133, 244, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    gap: 1rem;
}

.disclaimer-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(66, 133, 244, 0.3);
}

.disclaimer-box.prominent {
    background: rgba(77, 145, 205, 0.05);
    border: 3px solid var(--brand-blue);
    box-shadow: 0 8px 32px rgba(77, 145, 205, 0.2);
    padding: 2.5rem 3rem;
    max-width: 900px;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
}

.disclaimer-box.prominent:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(77, 145, 205, 0.3);
    border-color: var(--brand-blue);
}

.disclaimer-box.prominent.full-width {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-yellow) 100%);
    border: 4px solid var(--brand-yellow);
    box-shadow: 0 15px 40px rgba(77, 145, 205, 0.4), 0 0 0 2px rgba(250, 214, 12, 0.3);
    padding: 4rem 3rem;
    border-radius: 25px;
    margin: 0;
    width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 2.5rem;
    max-width: none;
}

.disclaimer-box.prominent.full-width:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(77, 145, 205, 0.5), 0 0 0 3px rgba(250, 214, 12, 0.4);
}

.disclaimer-box i {
    color: var(--google-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disclaimer-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(77, 145, 205, 0.4);
}

.disclaimer-icon i {
    color: white;
    font-size: 2rem;
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h4 {
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.disclaimer-content p {
    color: var(--gray-600);
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.disclaimer-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.disclaimer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.disclaimer-badges .badge {
    background: var(--brand-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(77, 145, 205, 0.3);
    transition: all 0.2s ease;
}

.disclaimer-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 145, 205, 0.4);
}

.disclaimer-box.prominent.full-width .disclaimer-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
}

.disclaimer-box.prominent.full-width .disclaimer-badges .badge:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== FLEXIBILITY SECTION ===== */
.flexibility-section {
    padding: 3rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(250, 214, 12, 0.05) 0%, rgba(77, 145, 205, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(250, 214, 12, 0.2);
    transition: all 0.3s ease;
}

.flexibility-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(77, 145, 205, 0.15);
    border-color: rgba(250, 214, 12, 0.4);
}

.flexibility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(77, 145, 205, 0.3);
    transition: all 0.3s ease;
}

.flexibility-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(77, 145, 205, 0.4);
}

.flexibility-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flexibility-section .section-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.flexibility-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-blue) 100%);
    border-radius: 2px;
}

.flexibility-section .lead {
    color: var(--gray-600);
    font-size: 1.2rem;
    font-weight: 500;
}

.flexibility-section p {
    color: var(--gray-700);
    font-size: 1.1rem;
}

.flexibility-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.flexibility-badge {
    background: var(--brand-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(103, 186, 127, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flexibility-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(103, 186, 127, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== TARGET SECTION ===== */
.target-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.5s ease;
}

.target-card:hover::before {
    left: 100%;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.target-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

/* Tutte le icone delle tipologie gialle */
.target-icon { background: var(--brand-yellow) !important; }

.target-card:hover .target-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.target-icon i {
    font-size: 2rem;
    color: var(--white);
}

.target-card h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.target-card p {
    font-family: var(--font-secondary);
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.target-cta {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(52, 168, 83, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(66, 133, 244, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.target-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(66, 133, 244, 0.3);
}

/* ===== ABOUT SECTION ===== */
#chi-siamo {
    padding: 5rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

.about-content {
    padding: 4rem 0;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.about-features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 24px;
    color: var(--google-blue);
}

.about-image img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.placeholder-image {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray-500);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.placeholder-image:hover {
    border-color: var(--google-blue);
    color: var(--google-blue);
    transform: translateY(-2px);
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-image p {
    margin: 0;
    font-weight: 500;
}

/* ===== CTA FINALE SECTION ===== */
#cta-finale {
    padding: 5rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

.cta-buttons .btn {
    font-family: var(--font-secondary);
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
}

/* ===== CONTACT SECTION (Conversioni) ===== */
#contatti {
    padding: 5rem 0;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.contact-form-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.15);
    outline: none;
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

.contact-form select.form-control option {
    padding: 0.5rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form .btn-primary i {
    font-size: 1.3rem;
}

.contact-form .form-label {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.services-checkboxes .form-check {
    margin-bottom: 0;
}

.services-checkboxes .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-400);
    cursor: pointer;
}

.services-checkboxes .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.services-checkboxes .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.15);
}

.services-checkboxes .form-check-label {
    cursor: pointer;
    padding-left: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.privacy-checkboxes {
    background: rgba(66, 133, 244, 0.05);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
}

.privacy-checkboxes .form-check {
    margin-bottom: 1rem;
}

.privacy-checkboxes .form-check:last-child {
    margin-bottom: 0;
}

.privacy-checkboxes .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-400);
    cursor: pointer;
    margin-top: 0.2rem;
}

.privacy-checkboxes .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.privacy-checkboxes .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.15);
}

.privacy-checkboxes .form-check-label {
    cursor: pointer;
    padding-left: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-method-card {
    display: block;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    height: 100%;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

/* WhatsApp Card */
.contact-method-card.whatsapp {
    border-color: #25D366;
}

.contact-method-card.whatsapp::before {
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.1), transparent);
}

.contact-method-card.whatsapp:hover {
    border-color: #128C7E;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.contact-method-card.whatsapp .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method-card.whatsapp .contact-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Phone Card */
.contact-method-card.phone {
    border-color: var(--primary-color);
}

.contact-method-card.phone::before {
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
}

.contact-method-card.phone:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.3);
}

.contact-method-card.phone .contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.contact-method-card.phone .contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* Email Card */
.contact-method-card.email {
    border-color: var(--secondary-color);
}

.contact-method-card.email::before {
    background: linear-gradient(90deg, transparent, rgba(234, 67, 53, 0.1), transparent);
}

.contact-method-card.email:hover {
    border-color: var(--secondary-dark);
    box-shadow: 0 12px 40px rgba(234, 67, 53, 0.3);
}

.contact-method-card.email .contact-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.contact-method-card.email .contact-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

/* Contact Icon */
.contact-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-icon i {
    font-size: 3rem;
    color: white;
}

.contact-method-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-cta {
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.contact-method-card:hover .contact-cta {
    transform: translateX(5px);
}

/* Conversion Guarantee Box */
.conversion-guarantee {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.08), rgba(52, 168, 83, 0.03));
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--google-green);
    box-shadow: 0 8px 30px rgba(52, 168, 83, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.conversion-guarantee:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(52, 168, 83, 0.3);
    border-color: #2e7d32;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--google-green), #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 20px rgba(52, 168, 83, 0.4);
    transition: all 0.3s ease;
}

.conversion-guarantee:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(52, 168, 83, 0.5);
}

.guarantee-icon i {
    font-size: 3.5rem;
    color: white;
}

.guarantee-content {
    text-align: center;
}

.guarantee-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.guarantee-text {
    margin: 0;
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== EXIT POPUP ===== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.exit-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 16px -4px rgba(60,64,67,.3), 0 16px 32px 0 rgba(60,64,67,.15);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.exit-popup.show .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.exit-popup-close:hover {
    background: var(--gray-100);
    color: var(--dark-color);
}

.exit-popup-body {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.exit-popup-title {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.exit-popup-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.exit-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.exit-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.exit-popup-btn.primary-btn {
    background: var(--primary-color);
    color: white;
}

.exit-popup-btn.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.exit-popup-btn.primary-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

.exit-popup-btn.secondary-btn {
    background: var(--google-green);
    color: white;
}

.exit-popup-btn.secondary-btn:hover {
    background: #2e7d32;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.exit-popup-btn.secondary-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

.exit-popup-btn.email-btn {
    background: var(--secondary-color);
    color: white;
}

.exit-popup-btn.email-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.exit-popup-btn.email-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

.exit-popup-footer {
    color: var(--gray-500);
    margin: 0;
    font-style: italic;
}

/* Exit popup responsive */
@media (max-width: 768px) {
    .exit-popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .exit-popup-body {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .exit-popup-title {
        font-size: 1.5rem;
    }
    
    .exit-popup-text {
        font-size: 1rem;
    }
    
    .exit-popup-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===== FOOTER ===== */
footer {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    background-color: var(--darker-color);
}

/* ===== ASSISTENZA CONTATTI ===== */
.assistance-contacts {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.assistance-contacts:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.assistance-contacts a {
    transition: all 0.3s ease;
}

.assistance-contacts a:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.assistance-contacts a:hover i {
    transform: scale(1.1);
}

/* Mobile responsive per assistenza contatti */
@media (max-width: 768px) {
    .assistance-contacts {
        padding: 1rem !important;
    }
    
    .assistance-contacts h5 {
        font-size: 1rem !important;
    }
    
    .assistance-contacts .col-md-6 {
        margin-bottom: 0.75rem;
    }
    
    .assistance-contacts a {
        font-size: 0.9rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) and (min-width: 768px) {
    .scroll-indicator {
        display: none;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        bottom: auto;
        margin-top: 0;
        z-index: 1001;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .navbar-cta {
        margin-left: 0.25rem;
    }
    
    .navbar-cta .btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        min-width: 70px;
    }
    
    .hero-section {
        padding-top: 70px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-card.recommended {
        transform: none;
    }
    
    .package-card.recommended:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    .scroll-indicator {
        display: none;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        bottom: auto;
        margin-top: 0;
        z-index: 1001;
    }
    
    .navbar-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-cta .btn {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-width: 120px;
        margin: 0.25rem 0;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .package-card {
        padding: 1.5rem 1rem;
    }
    
    .package-card.recommended {
        transform: none;
    }
    
    .package-card.recommended:hover {
        transform: translateY(-10px);
    }
    
    .package-price .price {
        font-size: 2.5rem;
    }
    
    .problem-card,
    .extra-card,
    .step-card {
        padding: 2.5rem 1rem 1.5rem 1rem;
        min-height: 260px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        position: fixed;
        top: 0;
        bottom: auto;
        margin-top: 0;
        z-index: 1001;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .hero-section {
        padding-top: 60px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .package-card,
    .problem-card,
    .extra-card,
    .step-card {
        padding: 2rem 0.75rem 1.25rem 0.75rem;
        min-height: 240px;
    }
    
    .package-price .price {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.bg-light {
    background-color: var(--gray-100) !important;
}

/* Spacing aggiuntivo tra sezioni */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
    .py-6 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .flexibility-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .flexibility-section .section-title {
        font-size: 2rem;
    }
    
    .flexibility-icon {
        width: 60px;
        height: 60px;
    }
    
    .flexibility-icon i {
        font-size: 1.5rem;
    }
    
    .flexibility-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .flexibility-badge {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

.text-primary {
    color: var(--google-blue) !important;
}

.btn-primary {
    background-color: var(--google-blue);
    border-color: var(--google-blue);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLLBAR CUSTOMIZATION ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--google-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}