﻿/* HERO GRATUITO */
.hero-gratuito {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 4rem 0;
    text-align: center;
}

.hero-content-gratuito {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-gratuito h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.highlight .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-download {
    background: white;
    color: #059669;
    margin-bottom: 1rem;
}

.btn-download:hover {
    background: #f0fdf4;
}

.hero-note {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* PERCHE PROVARE */
.perche-provare {
    padding: 4rem 0;
}

.perche-provare h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.perche-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border-top: 3px solid #10b981;
}

.perche-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.perche-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perche-card h3 {
    font-size: 1.2rem;
    color: #059669;
    margin-bottom: 1rem;
}

.perche-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* COSA INCLUDE */
.cosa-include {
    padding: 4rem 0;
    background: var(--light);
}

.cosa-puoi-fare h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features-grid-gratuito {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card-gratuito {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.feature-card-gratuito:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid #10b981;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card-gratuito h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card-gratuito p {
    color: var(--text-light);
    line-height: 1.6;
}

.cosa-include h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.include-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.include-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.include-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid #10b981;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.include-card h3 {
    font-size: 1.2rem;
    color: #059669;
    margin-bottom: 1rem;
}

.include-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CARATTERISTICHE GRATUITO */
.caratteristiche-gratuito {
    padding: 4rem 0;
}

.caratteristiche-gratuito h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-section-gratuito {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: all 0.3s;
    border-left: 4px solid #10b981;
}

.feature-section-gratuito:hover {
    box-shadow: var(--shadow-lg);
}

.feature-section-gratuito.alternate {
    background: white;
    border: 1px solid var(--border);
    border-left: 4px solid #10b981;
}

.feature-content-gratuito h3 {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.feature-content-gratuito > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-content-gratuito strong {
    color: var(--primary);
}

.feature-list-gratuito {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-list-gratuito li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.feature-list-gratuito li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CONFRONTO GRATUITO */
.confronto-gratuito {
    padding: 4rem 0;
    background: var(--light);
}

.confronto-gratuito h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.comparison-table-gratuito {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table-gratuito thead {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    color: white;
}

.comparison-table-gratuito th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table-gratuito td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.comparison-table-gratuito tbody tr:hover {
    background: var(--light);
}

.comparison-table-gratuito tbody tr:nth-child(even) {
    background: #fafbfc;
}

.comparison-table-gratuito strong {
    color: #059669;
}

/* URGENZA SECTION */
.urgenza-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    color: #1e293b;
}

.urgenza-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgenza-section .section-subtitle {
    color: #1e293b;
    opacity: 0.9;
}

.urgenza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.urgenza-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.urgenza-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.urgenza-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.urgenza-card p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.urgenza-message {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid #1e293b;
    text-align: center;
}

.urgenza-message p {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.7;
}

/* TESTIMONIANZE */
.testimonianze-gratuito {
    padding: 4rem 0;
}

.testimonianze-gratuito h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid #10b981;
    transition: all 0.3s;
}

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

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #059669;
    font-size: 0.95rem;
}

/* DOWNLOAD GRATUITO */
.download-gratuito {
    padding: 4rem 0;
    background: var(--light);
}

.download-gratuito h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-gratuito > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    border: 2px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    border-color: #10b981;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.os-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h4 {
    font-size: 1.25rem;
    color: #059669;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.download-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA GRATUITO */
.cta-gratuito {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    color: #1e293b;
    text-align: center;
}

.cta-gratuito h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-gratuito > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-gratuito .btn-primary {
    background: #1e293b;
    color: #fcd34d;
}

.cta-gratuito .btn-primary:hover {
    background: #f0fdf4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-gratuito h1 {
        font-size: 2rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight {
        justify-content: center;
    }

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

    .feature-list-gratuito {
        grid-template-columns: 1fr;
    }

    .comparison-table-gratuito {
        font-size: 0.9rem;
    }

    .comparison-table-gratuito th,
    .comparison-table-gratuito td {
        padding: 0.75rem;
    }

    .cta-gratuito h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-gratuito h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid-gratuito {
        grid-template-columns: 1fr;
    }

    .feature-section-gratuito {
        padding: 1.5rem;
    }

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

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