/* SA Info Card — Sabbir Ahmed */
.sa-ic {
    position: relative;
    background: #0F1218;
    border-radius: 24px;
    padding: 32px 36px;
    box-sizing: border-box;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    width: 100%;
    isolation: isolate;
}

a.sa-ic {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

/* ── Gradient border (via ::before mask) ── */
.sa-ic--border-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.55) 0%,
        rgba(255,255,255,0.20) 30%,
        rgba(255,255,255,0.05) 70%,
        rgba(255,255,255,0.10) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

/* ── Icon Badge ── */
.sa-ic__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sa-ic__icon svg,
.sa-ic__icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    fill: currentColor;
    color: inherit;
}

/* ── Heading ── */
.sa-ic__heading {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* ── Description ── */
.sa-ic__desc {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .sa-ic {
        padding: 24px;
    }
    .sa-ic__heading {
        font-size: 20px;
    }
    .sa-ic__desc {
        font-size: 14px;
    }
}

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