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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 16px !important;
    margin-bottom: 25px !important;
}

/* PULSANTI CTA */
.cta-button {
    background: linear-gradient(135deg, #0cb742, #09a035);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 183, 66, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(12, 183, 66, 0.6);
}

/* SEZIONI */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section.alt {
    background-color: #f0f7ff;
}

.section h2 {
    font-size: 36px;
    color: #0c5a2e;
    margin-bottom: 15px;
    text-align: center;
}

.section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #0cb742;
    font-weight: bold;
    margin-bottom: 30px !important;
}

/* BEFORE/AFTER */
.before-after {
    text-align: center;
}

.comparison-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.comparison-img img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-img .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

/* VIDEO SECTION */
.video-section {
    text-align: center;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-container video {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 100%;
}

/* BENEFICI */
.benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits li {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.benefits li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(12, 183, 66, 0.2);
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(12, 183, 66, 0.2);
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #0cb742;
    margin-bottom: 15px;
}

.step-text {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* TEAM GALLERY */
.team-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(12, 183, 66, 0.3);
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #0cb742;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.faq-item b {
    color: #0c5a2e;
    font-size: 16px;
}

/* HIGHLIGHT */
.highlight {
    background: linear-gradient(135deg, #e0ffe5, #f0fff0);
    padding: 25px;
    border: 2px solid #0cb742;
    margin-top: 30px;
    border-radius: 12px;
    font-weight: 500;
    color: #0c5a2e;
    text-align: center;
    box-shadow: 0 4px 12px rgba(12, 183, 66, 0.15);
}

/* CONTATTI */
.contact {
    background: linear-gradient(135deg, #0c5a2e, #0cb742);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact p {
    color: rgba(255,255,255,0.95);
}

.contact-subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px !important;
}

/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .comparison-slider,
    .video-container,
    .team-gallery,
    .steps {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 28px;
    }
/* STILE MODULO CONTATTI */
.contact-form {
    max-width: 550px;
    margin: 30px auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
}

.form-row {
    margin-bottom: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: 3px solid #0cb742;
    border-color: transparent;
}

.contact-form .cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/* CALENDLY SECTION */
#prenota {
    padding-top: 60px;
    background-color: #ffffff;
}
