/* cta-section – c-cta-section */

.c-cta-section {
    padding: 5rem 1.5rem;
    background: #0f172a;
    color: #f8fafc;
}

.c-cta-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Centered (default) */
.c-cta-section--centered .c-cta-section__inner {
    align-items: center;
    text-align: center;
}

.c-cta-section--centered .c-cta-section__actions {
    justify-content: center;
}

/* Split */
.c-cta-section--split .c-cta-section__inner {
    flex-direction: row;
    align-items: center;
}

.c-cta-section--split .c-cta-section__content {
    flex: 1;
}

.c-cta-section--split .c-cta-section__actions {
    flex-shrink: 0;
}

/* Box */
.c-cta-section--box {
    background: transparent;
    color: inherit;
}

.c-cta-section--box .c-cta-section__inner {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.c-cta-section--box .c-cta-section__headline,
.c-cta-section--box .c-cta-section__text {
    color: #111827;
}

.c-cta-section__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

.c-cta-section--box .c-cta-section__eyebrow {
    color: #2563eb;
}

.c-cta-section__headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.875rem;
}

.c-cta-section__text {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.85;
    margin: 0;
}

.c-cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.c-cta-section__btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.c-cta-section__btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.c-cta-section__btn--primary {
    background: #2563eb;
    color: #fff;
}

.c-cta-section__btn--secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.c-cta-section--box .c-cta-section__btn--secondary {
    border-color: #d1d5db;
    color: #374151;
}

.c-cta-section__contact {
    font-size: 1rem;
    opacity: 0.75;
    width: 100%;
}

.c-cta-section__contact-link {
    color: #93c5fd;
    font-weight: 500;
    text-decoration: underline;
}

.c-cta-section--box .c-cta-section__contact-link {
    color: #2563eb;
}

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

    .c-cta-section--split .c-cta-section__actions {
        justify-content: center;
    }

    .c-cta-section__btn {
        width: 100%;
        text-align: center;
    }
}
