/**
 * [BLOCK STYLE: FINAL CTA]
 * LOCATION: logic/blocks/finalctablock/style.css
 * STATUS: TUNED (Lighter Grey Spotlight)
 */

.block-cta {
    position: relative;
    /* LIGHTER FIX: Radial Spotlight using Greys/Slate. 
       Center is Medium Grey (#4b5563), Edges are Dark Charcoal (#1f2937). 
       No pure black. */
    background: radial-gradient(circle at center, #4b5563 0%, #1f2937 100%);
    
    padding: 8rem 1.5rem;
    text-align: center;
    overflow: hidden;
    color: #fff;
    
    /* Stronger top border to separate from the dark navy above */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.block-cta__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Reduced tint so the grey shines through */
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.block-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* --- TYPOGRAPHY --- */
.block-cta__headline {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
    
    /* Heavier shadow to ensure white text pops off the lighter grey background */
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.block-cta__sub {
    font-size: 1.1rem;
    color: #cbd5e1; /* Lighter grey-blue text for better contrast */
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .block-cta__headline { font-size: 2.5rem; }
}

/* --- BUTTON (Enhanced Glow) --- */
.block-cta__btn {
    display: inline-block;
    padding: 1rem 3rem;
    
    /* Richer Gold Gradient */
    background: linear-gradient(135deg, #d4af37 0%, #aa842d 100%);
    
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    
    /* Stronger Outer Glow */
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.block-cta__btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e5c156 0%, #bb933e 100%); 
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* --- ANIMATIONS (Reveal Group) --- */
.block-cta.reveal-group .block-cta__headline,
.block-cta.reveal-group .block-cta__sub,
.block-cta.reveal-group .block-cta__btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.block-cta.reveal-active .block-cta__headline,
.block-cta.reveal-active .block-cta__sub,
.block-cta.reveal-active .block-cta__btn {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering */
.block-cta.reveal-active .block-cta__headline { transition-delay: 0.1s; }
.block-cta.reveal-active .block-cta__sub      { transition-delay: 0.3s; }
.block-cta.reveal-active .block-cta__btn      { transition-delay: 0.5s; }