.elementor-883 .elementor-element.elementor-element-fec4102{--display:flex;}.elementor-883 .elementor-element.elementor-element-fec4102.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-883 .elementor-element.elementor-element-2c54764{--spacer-size:38px;}.elementor-883 .elementor-element.elementor-element-5c1edae .elementor-field-group{padding-right:calc( 10px/2 );padding-left:calc( 10px/2 );margin-bottom:10px;}.elementor-883 .elementor-element.elementor-element-5c1edae 	.elementor-form-fields-wrapper{margin-left:calc( -10px/2 );margin-right:calc( -10px/2 );}.elementor-883 .elementor-element.elementor-element-5c1edae .elementor-form-fields-wrapper{margin-bottom:-10px;}body.rtl .elementor-883 .elementor-element.elementor-element-5c1edae .elementor-labels-inline .elementor-field-group > label{padding-left:0px;}body .elementor-883 .elementor-element.elementor-element-5c1edae .elementor-labels-above .elementor-field-group > label{padding-bottom:0px;}body:not(.rtl) .elementor-883 .elementor-element.elementor-element-5c1edae .elementor-labels-inline .elementor-field-group > label{padding-right:0px;}.elementor-883 .elementor-element.elementor-element-2ee0b47{--spacer-size:47px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-883 .elementor-element.elementor-element-fec4102{--width:85.963%;}}/* Start custom CSS *//* ===== RESET E STILI BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* ===== SEZIONE HERO ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 116, 217, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.5rem;
    color: #1c1c1c;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #444;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.product-image {
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.price {
    color: #0074d9;
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.shipping-info {
    color: #777;
    font-size: 1rem;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: #0074d9;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 116, 217, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: #005ba3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 116, 217, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.guarantee {
    font-size: 0.9rem;
    color: #555;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== SEZIONE CARATTERISTICHE ===== */
.features {
    padding: 80px 20px;
    background: #fff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.section-title {
    text-align: center;
    color: #222;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0074d9;
    border-radius: 2px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    flex: 1 1 260px;
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border-color: #0074d9;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #1c1c1c;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== SEZIONE TESTIMONIANZE ===== */
.testimonials {
    padding: 80px 20px;
    background: #f4f6f8;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.testimonial {
    background: #fff;
    padding: 35px 30px;
    border-left: 5px solid #0074d9;
    margin-bottom: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateX(5px);
}

.testimonial:nth-child(2) {
    border-left-color: #00aaff;
}

.testimonial p:first-child {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: bold;
    color: #0074d9;
    font-size: 0.95rem;
}

/* ===== SEZIONE CTA FINALE ===== */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0074d9 0%, #00aaff 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

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

.final-cta h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.final-cta p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.final-price {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-button {
    display: inline-block;
    background: #fff;
    color: #0074d9;
    padding: 16px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.final-cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 116, 217, 0.1);
}

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

.hero-title, .hero-subtitle, .product-image, .price, .cta-button {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle { animation-delay: 0.1s; }
.product-image { animation-delay: 0.2s; }
.price { animation-delay: 0.3s; }
.cta-button { animation-delay: 0.4s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .product-image {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-card {
        flex: 1 1 100%;
        padding: 25px 20px;
    }
    
    .testimonial {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-price {
        font-size: 1.4rem;
    }
    
    .cta-button,
    .final-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.7rem;
    }
    
    .final-cta {
        padding: 60px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ===== ACCESSIBILITÀ ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles per accessibilità */
.cta-button:focus,
.final-cta-button:focus {
    outline: 3px solid rgba(0, 116, 217, 0.5);
    outline-offset: 2px;
}

/* ===== STILI PER SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.opacity-90 { opacity: 0.9; }/* End custom CSS */