/* SA Process Card — Sabbir Ahmed */
.sa-prc {
    position: relative;
    display: block;
    background: #12172a;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 24px 28px 24px 24px;
    box-sizing: border-box;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ── Badge ── */
.sa-prc__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    white-space: nowrap;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* ── Large step number — absolute positioned ── */
.sa-prc__number {
    transition: color 0.3s ease;
    position: absolute;
    color: rgba(255,255,255,0.07);
    font-weight: 900;
    line-height: 1;
    user-select: none;
    letter-spacing: -0.02em;
    pointer-events: none;
    z-index: 0;
    /* font-size set via Elementor number_size control — default 100px */
    font-size: 100px;
}

/* Default: top-right */
.sa-prc__number.h-right { right: 16px; left: auto; }
.sa-prc__number.h-left  { left: 16px;  right: auto; }
.sa-prc__number.v-top   { top: -10px;  bottom: auto; }
.sa-prc__number.v-bottom { bottom: -10px; top: auto; }

/* ── Body ── */
.sa-prc__body {
    position: relative;
    z-index: 1;
}

.sa-prc__heading {
    transition: color 0.3s ease;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.sa-prc__desc {
    transition: color 0.3s ease;
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.65;
}

a.sa-prc:focus-visible {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 3px;
}

/* Mobile */
@media (max-width: 767px) {
    .sa-prc { padding: 20px; }
    .sa-prc__heading { font-size: 22px; }
    .sa-prc__number { font-size: 70px; }
    .sa-prc__number.h-right { right: 12px; }
    .sa-prc__number.h-left  { left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .sa-prc { transition: none; }
}
