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

.hero-content-cloud {
    max-width: 800px;
    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-cloud h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hero-features-cloud {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature .icon {
    font-size: 2rem;
}

.hero-feature span:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-price-cloud {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

/* ACCESSIBILITA OVUNQUE */
.accessibilita-ovunque {
    padding: 4rem 0;
    background: var(--light);
}

.accessibilita-ovunque 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;
}

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

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

.accessibility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid #06b6d4;
}

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

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

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

.accessibility-story {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.accessibility-story h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.timeline-item {
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 4px solid #06b6d4;
}

.time {
    display: block;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* INFINITI PRODOTTI */
.infiniti-prodotti {
    padding: 4rem 0;
}

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

.infiniti-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.infiniti-text {
    color: var(--text-light);
    line-height: 1.8;
}

.infiniti-text p {
    margin-bottom: 1rem;
}

.infiniti-text p:first-child {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.infiniti-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.infiniti-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.infiniti-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

.infiniti-box {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.box-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #0891b2;
}

/* CARATTERISTICHE CLOUD */
.caratteristiche-cloud {
    padding: 4rem 0;
    background: var(--light);
}

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

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

.feature-cloud {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid #06b6d4;
}

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

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

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

.feature-cloud > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list-cloud {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.feature-list-cloud li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

/* FUNZIONI ESCLUSIVE CLOUD */
.funzioni-esclusive-cloud {
    padding: 4rem 0;
}

.funzioni-esclusive-cloud h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.exclusive-cloud {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid #06b6d4;
}

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

.exclusive-icon-cloud {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.exclusive-cloud h3 {
    font-size: 1.2rem;
    color: #0891b2;
    margin-bottom: 1rem;
}

.exclusive-cloud p {
    color: #164e63;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

.comparison-table-cloud strong {
    color: var(--primary);
}

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

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

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

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

.cta-buttons .btn-primary:hover {
    background: #cffafe;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: #1e293b;
    color: #1e293b;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0891b2;
}

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

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

    .hero-features-cloud {
        grid-template-columns: repeat(2, 1fr);
    }

    .infiniti-content {
        grid-template-columns: 1fr;
    }

    .story-timeline {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-large {
        width: 100%;
    }
}

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

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

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

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

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

    .exclusive-cloud-grid {
        grid-template-columns: 1fr;
    }
}
