/* SA CTA Card — Sabbir Ahmed */
.sa-cta {
    position: relative;
    background: #0F1115;
    border-radius: 20px;
    padding: 28px;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
}

/* ── Decorative shapes ── */
.sa-cta__shape {
    position: absolute;
    top: -40px;
    right: -30px;
    width: 140px;
    height: 140px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.sa-cta__shape--blob {
    background: rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    filter: blur(40px);
}

.sa-cta__shape--circle {
    background: rgba(124, 58, 237, 0.5);
    border-radius: 50%;
}

.sa-cta__shape--image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── Inner content above shapes ── */
.sa-cta__inner {
    position: relative;
    z-index: 1;
    text-align: left;
}

/* ── Eyebrow ── */
.sa-cta__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #a78bfa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ── Heading ── */
.sa-cta__heading {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

/* ── Body ── */
.sa-cta__body {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.55;
}

/* ── Button ── */
.sa-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    background: #ffffff;
    color: #000000;
    border: 0 solid transparent;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
}

.sa-cta__btn--full {
    width: 100%;
    text-align: center;
}

.sa-cta__btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.sa-cta__btn:active { transform: translateY(0); }

.sa-cta__btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.sa-cta__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sa-cta__btn-icon svg,
.sa-cta__btn-icon i {
    width: 14px;
    height: 14px;
    font-size: 14px;
    fill: currentColor;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sa-cta__btn { transition: none; }
}

/* Mobile */
@media (max-width: 767px) {
    .sa-cta {
        padding: 22px;
    }
    .sa-cta__heading {
        font-size: 20px;
    }
}
