/* SA CTA Cards — Sabbir Ahmed */
.sa-cta-wrap { display: block; }

.sa-cta-grid {
    display: grid;
    gap: 20px;
    align-items: stretch;
}

.sa-cta-card {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25),
        0 4px 20px rgba(0,0,0,0.25);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sa-cta-card:before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.2) 35%);
    -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: -1;
}

.sa-cta-card:hover {
    border-color: rgba(255,255,255,0.22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 8px 30px rgba(0,0,0,0.30);
}

.sa-cta-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.sa-cta-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sa-cta-prefix {
    font-size: 15px;
    color: rgba(255,255,255,0.60);
    font-weight: 400;
    flex-shrink: 0;
}

.sa-cta-price {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.sa-cta-headline {
    margin: 0;
    padding: 0;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.sa-cta-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.50);
}

/* ── Button — gradient bg + gradient border ── */
.sa-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 32px;
    border: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.05) 100%);
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: auto;
    position: relative;
    transition: background 0.25s ease;
    box-sizing: border-box;
}

.sa-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.00) 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;
}

.sa-cta-btn:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.10) 100%);
    color: #ffffff;
}

@media (max-width: 767px) {
    .sa-cta-price    { font-size: 36px; }
    .sa-cta-headline { font-size: 26px; }
    .sa-cta-card     { padding: 20px; }
}
