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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== HEADER E NAVBAR ===== */
.header-main {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s;
}

.dropdown-toggle:hover {
    color: #0066cc;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #0066cc;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0066cc;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-accedi {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    padding: 8px 20px;
    border: 2px solid #0066cc;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-accedi:hover {
    background: #0066cc;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #e6f2ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-benefits li {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.hero-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.hero-stats {
    font-size: 18px;
    color: #333;
    margin-bottom: 35px;
}

.hero-stats strong {
    color: #0066cc;
    font-weight: 700;
}

.hero-cta {
    margin-bottom: 35px;
}

.btn-cta-hero {
    background: #0066cc;
    color: #fff;
    padding: 18px 50px;
    font-size: 18px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-hero:hover {
    background: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
}

.hero-promo {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 30px;
    border-radius: 8px;
    display: inline-block;
}

.hero-promo p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #856404;
}

.btn-promo {
    background: #ffc107;
    color: #000;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.btn-promo:hover {
    background: #e0a800;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonial-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: #666;
}

.testimonial-quote {
    font-size: 15px;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-video {
    position: relative;
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,102,204,0.9);
    border-radius: 50%;
}

.play-button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* ===== RATING SECTION ===== */
.rating-section {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.rating-text {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.rating-score {
    color: #28a745;
    font-weight: 700;
}

.rating-link {
    font-size: 14px;
    color: #0066cc;
    text-decoration: underline;
}

.rating-link:hover {
    color: #0052a3;
}

/* ===== PRESS SECTION ===== */
.press-section {
    padding: 50px 0;
    background: #f8f9fa;
    text-align: center;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.press-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.press-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.press-quote {
    font-size: 22px;
    font-style: italic;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.press-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 70px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 15px rgba(0,102,204,0.15);
    transform: translateY(-3px);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-link {
    font-size: 14px;
    color: #0066cc;
    font-weight: 600;
    transition: color 0.3s;
}

.feature-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.features-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    background: #fff;
    color: #0066cc;
    border: 2px solid #0066cc;
    padding: 15px 40px;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #fff;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.benefits-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-video iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ===== CTA FINAL SECTION ===== */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    text-align: center;
    color: #fff;
}

.cta-final h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    background: #fff;
    color: #0066cc;
    padding: 18px 60px;
    font-size: 18px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #999;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #0066cc;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    font-size: 14px;
    color: #999;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #0066cc;
}

.footer-apps h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-button img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-legal-links,
.footer-policy-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-legal-links a,
.footer-policy-links a {
    font-size: 13px;
    color: #999;
    transition: color 0.3s;
}

.footer-legal-links a:hover,
.footer-policy-links a:hover {
    color: #0066cc;
}

.footer-company-info p {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }

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

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

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

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

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits li {
        font-size: 14px;
    }

    .testimonial-section h2,
    .benefits-section h2 {
        font-size: 28px;
    }

    .cta-final h2 {
        font-size: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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