body {
    background-color: #111111;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
}

.support-section {
    background: radial-gradient(circle at 50% 30%, #1a1a1a, rgba(17, 17, 17, 0.95) 80%);
    padding: 15vh 5vw 10vh 5vw;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5vw;
    align-items: center;
}

.support-section .featured-eyebrow {
    color: wheat;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.support-section .featured-title {
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    margin-bottom: 25px;
    font-size: clamp(2.5rem, 5vw, 4rem); 
}

.text-highlight {
    color: wheat;
    text-shadow: 0 0 20px rgba(245, 222, 179, 0.2);
}

.featured-description {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 300;
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- VIDEO --- */
.video-frame-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
}

.local-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-caption {
    margin-top: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- GRIGLIA CARDS VANTAGGI --- */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(245, 222, 179, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.1), transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245, 222, 179, 0.2);
    color: wheat;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.card-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

.benefit-card:hover .card-text p {
    color: #ddd;
}

.cta-wrapper {
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.final-cta-text {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-glow-large {
    display: inline-block;
    background: wheat;
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 50px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 0 15px rgba(245, 222, 179, 0.3);
    text-decoration: none;
}

.btn-glow-large:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(245, 222, 179, 0.6);
    transform: translateY(-3px);
}

.bottom-fade-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none; 
    
    background-image: 
        linear-gradient(rgba(245, 222, 179, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 222, 179, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;

    mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent);
    
    z-index: 1;
}

@media (min-width: 768px) {
    .btn-glow-large {
        width: auto;
    }
}

@media (max-width: 950px) {
    .support-section {
        padding: 12vh 20px 5vh 20px;
        box-sizing: border-box;
    }

    .support-container {
        grid-template-columns: 100%;
        width: 100%;
        max-width: 100%;
        gap: 50px;
    }

    .support-video-col {
        order: 2; 
    }

    .support-text-col {
        order: 1; 
        text-align: left;
    }

    .benefit-card {
        width: 100%;
        box-sizing: border-box;
        padding: 15px;
        gap: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-text h3 {
        font-size: 1.1rem;
    }
}