/* Video Container - Responsive 16:9 */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: var(--radius-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Costellazione CTA Section */
.costellazione-cta {
    text-align: center;
    background: #ffffffee;
    color: #000000;
    padding: var(--space-xxl) 0;
}

.costellazione-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.costellazione-cta h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
    color: #000000;
}

.costellazione-cta .lead {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    color: #000000;
}

.costellazione-cta .infographic-fullwidth {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: var(--space-xl) 0;
}

/* Hero Video Section - Full Width */
.hero-video-section .video-container {
    max-width: 100%;
    border-radius: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
    margin-top: var(--space-xl);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-item {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.testimonial-item h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-md);
}