/* CTA Widget Styles */
.cta-widget {
    padding: 4rem 0;
}

.cta-widget__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-widget__text {
    flex: 1;
    min-width: 300px;
}

.cta-widget__headline {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-widget__description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Primary Style (Lime) */
.cta-widget--primary {
    background: var(--color-accent-lime, #D6F08D);
    color: #0a0a0f;
}

.cta-widget--primary .cta-widget__button {
    background: #0a0a0f;
    color: #fff;
    border: none;
}

.cta-widget--primary .cta-widget__button:hover {
    background: #1a1a2e;
}

/* Secondary Style (Dark) */
.cta-widget--secondary {
    background: #1a1a2e;
    color: #fff;
}

.cta-widget--secondary .cta-widget__headline {
    color: var(--color-accent-lime, #D6F08D);
}

.cta-widget--secondary .cta-widget__button {
    background: var(--color-accent-lime, #D6F08D);
    color: #0a0a0f;
    border: none;
}

/* Bitcoin Style (Orange) */
.cta-widget--bitcoin {
    background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
    color: #fff;
}

.cta-widget--bitcoin .cta-widget__button {
    background: #fff;
    color: #f7931a;
    border: none;
}

.cta-widget--bitcoin .cta-widget__button:hover {
    background: #0a0a0f;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-widget__content {
        text-align: center;
        flex-direction: column;
    }

    .cta-widget__headline {
        font-size: 1.75rem;
    }
}
