/* CTA Block */
.cta-block {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(173, 89, 255, 0.1), rgba(116, 240, 185, 0.05));
    border: 1px solid rgba(173, 89, 255, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 40px rgba(173, 89, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-block::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 100% 0%, rgba(116, 240, 185, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
    background: #fff;
}

.btn-primary:active {
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .cta-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2.5rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}