/* Final CTA Section - Condensed Version */
.final-cta-section {
    background: var(--palette-brand-blue);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle glow effect */
.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-section .container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Rocket Icon - Smaller and more compact */
.rocket-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.rocket-icon:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 28px;
    font-weight: 400;
}

/* Specific selector to override global button styles */
.final-cta-section .cta-button {
    background: var(--color-cta-inverse-bg) !important;
    color: var(--color-cta-inverse-text) !important;
    padding: 20px 48px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: auto;
    justify-content: center;
    margin-bottom: 0;
}

.final-cta-section .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: var(--color-cta-inverse-bg-hover) !important;
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.final-cta-section .cta-button:hover .arrow {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 40px 20px;
    }

    .final-cta-section h2 {
        font-size: 1.875rem;
    }

    .final-cta-section p {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .final-cta-section .cta-button {
        padding: 16px 32px;
        font-size: 0.9375rem;
    }

    .rocket-icon {
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
        margin-bottom: 18px;
    }
}