.bsaf-section,
.bsaf-section * {
    box-sizing: border-box;
}

.bsaf-section {
    --bsaf-accent: #F02369;
    --bsaf-secondary: #14B6CD;
    --bsaf-soft: #FFF7FB;
    width: min(100%, 1180px);
    margin: 34px auto;
    padding: 18px;
    direction: rtl;
    color: #2f2f35;
    font-family: inherit;
    border: 1px solid rgba(240, 35, 105, .08);
    border-radius: 32px;
    background: #fff7fb;
    background:
        radial-gradient(circle at 10% 0%, rgba(20, 182, 205, .08), transparent 28%),
        radial-gradient(circle at 100% 15%, rgba(240, 35, 105, .07), transparent 32%),
        linear-gradient(135deg, color-mix(in srgb, var(--bsaf-soft) 30%, #fff 70%) 0%, #fff 80%);
}

.bsaf-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
    gap: 18px;
    align-items: stretch;
    max-width: none;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(40, 28, 38, .06);
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 32px rgba(33, 22, 33, .055);
    overflow: hidden;
}

.bsaf-content-card,
.bsaf-visual-card,
.bsaf-faq-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.bsaf-content-card {
    padding: 18px 20px 16px;
    background: transparent;
}

.bsaf-content-card:before {
    content: "";
    position: absolute;
    inset-inline-start: 8px;
    top: 8px;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(20, 182, 205, .10), rgba(20, 182, 205, 0) 70%);
    pointer-events: none;
}

.bsaf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 5px 11px;
    border: 1px solid rgba(240, 35, 105, .10);
    border-radius: 999px;
    background: rgba(240, 35, 105, .055);
    color: var(--bsaf-accent);
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
}

.bsaf-eyebrow:before {
    content: "♡";
    font-size: 12px;
}

.bsaf-title {
    margin: 13px 0 8px !important;
    color: #25252a;
    font-size: clamp(20px, 2vw, 28px) !important;
    font-weight: 900 !important;
    line-height: 1.5 !important;
    letter-spacing: -.02em;
}

.bsaf-description {
    max-width: 610px;
    margin: 0 0 16px !important;
    color: #69656f;
    font-size: 13.2px !important;
    font-weight: 500;
    line-height: 1.95 !important;
}

.bsaf-features {
    display: grid;
    gap: 9px;
    margin: 16px 0 18px;
}

.bsaf-feature {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 9px 10px;
    border: 1px solid rgba(30, 30, 35, .065);
    border-radius: 16px;
    background: #fff;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.bsaf-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 35, 105, .14);
    background: color-mix(in srgb, var(--bsaf-soft) 18%, #fff 82%);
    box-shadow: 0 8px 20px rgba(33, 22, 33, .045);
}

.bsaf-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: var(--bsaf-secondary);
    background: rgba(20, 182, 205, .085);
}

.bsaf-feature-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bsaf-feature-body {
    display: grid;
    gap: 2px;
}

.bsaf-feature-body strong {
    color: #2d2d32;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.5;
}

.bsaf-feature-body small {
    color: #77737c;
    font-size: 11.7px;
    font-weight: 500;
    line-height: 1.75;
}

.bsaf-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
}

.bsaf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 17px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.bsaf-btn:hover {
    transform: translateY(-2px);
}

.bsaf-btn-primary {
    background: var(--bsaf-accent);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(240, 35, 105, .20);
}

.bsaf-btn-primary:hover {
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(240, 35, 105, .24);
}

.bsaf-btn-secondary {
    background: #fff;
    color: #35343a !important;
    border: 1px solid rgba(30, 30, 35, .10);
}

.bsaf-btn-secondary:hover {
    color: var(--bsaf-accent) !important;
    border-color: rgba(240, 35, 105, .20);
}

.bsaf-visual-card {
    min-height: 330px;
    padding: 14px;
    border: 1px solid rgba(30, 30, 35, .055);
    background:
        radial-gradient(circle at 15% 15%, rgba(20, 182, 205, .09), transparent 30%),
        radial-gradient(circle at 90% 26%, rgba(240, 35, 105, .075), transparent 34%),
        #fff;
}

.bsaf-main-image {
    position: absolute;
    inset: 16px 16px 52px 74px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 28px rgba(33, 22, 33, .09);
}

.bsaf-main-image img,
.bsaf-image-main {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.bsaf-floating-image {
    position: absolute;
    inset-inline-start: 20px;
    bottom: 20px;
    width: 132px;
    height: 112px;
    border: 6px solid #fff;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 26px rgba(33, 22, 33, .12);
}

.bsaf-floating-image img,
.bsaf-image-small {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: cover;
}

.bsaf-mini-badge {
    position: absolute;
    inset-inline-end: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    max-width: 168px;
    min-height: 54px;
    padding: 8px 10px;
    border: 1px solid rgba(240, 35, 105, .10);
    border-radius: 17px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 22px rgba(33, 22, 33, .08);
}

.bsaf-mini-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(240, 35, 105, .10);
}

.bsaf-mini-logo img,
.bsaf-image-badge {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.bsaf-mini-badge span {
    display: grid;
    gap: 2px;
}

.bsaf-mini-badge strong {
    color: var(--bsaf-accent);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.bsaf-mini-badge small {
    color: #65616b;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.45;
}

.bsaf-blob {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.bsaf-blob-one {
    width: 92px;
    height: 92px;
    inset-inline-end: -34px;
    top: -30px;
    background: rgba(240, 35, 105, .07);
}

.bsaf-blob-two {
    width: 78px;
    height: 78px;
    inset-inline-start: 32px;
    bottom: 90px;
    background: rgba(20, 182, 205, .08);
}

.bsaf-image-placeholder {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--bsaf-soft) 35%, #fff 65%));
    color: var(--bsaf-accent);
    font-weight: 900;
    text-align: center;
}

.bsaf-faq-card {
    max-width: none;
    margin: 14px auto 0;
    padding: 18px;
    border: 1px solid rgba(40, 28, 38, .06);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(33, 22, 33, .045);
}

.bsaf-faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.bsaf-faq-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(20, 182, 205, .085);
    color: var(--bsaf-secondary);
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .08em;
}

.bsaf-faq-head h3 {
    margin: 0 !important;
    color: #2f2f35;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1.45 !important;
}

.bsaf-faq-list {
    display: grid;
    gap: 8px;
}

.bsaf-faq-item {
    border: 1px solid rgba(30, 30, 35, .075);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.bsaf-faq-item.is-open {
    border-color: rgba(240, 35, 105, .12);
    background: color-mix(in srgb, var(--bsaf-soft) 20%, #fff 80%);
    box-shadow: 0 7px 18px rgba(33, 22, 33, .035);
}

.bsaf-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    color: #34343a;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.7;
    text-align: right;
}

.bsaf-faq-question i {
    position: relative;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: rgba(240, 35, 105, .075);
}

.bsaf-faq-question i:before,
.bsaf-faq-question i:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 2px;
    border-radius: 999px;
    background: var(--bsaf-accent);
    transform: translate(-50%, -50%);
    transition: transform .18s ease;
}

.bsaf-faq-question i:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.bsaf-faq-item.is-open .bsaf-faq-question i:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.bsaf-faq-answer {
    display: none;
    padding: 0 14px 13px;
}

.bsaf-faq-item.is-open .bsaf-faq-answer {
    display: block;
}

.bsaf-faq-answer p {
    margin: 0 !important;
    color: #6f6b75;
    font-size: 12.5px !important;
    font-weight: 500;
    line-height: 1.9 !important;
}

@media (max-width: 1024px) {
    .bsaf-shell {
        grid-template-columns: 1fr;
    }

    .bsaf-visual-card {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .bsaf-section {
        width: calc(100% - 20px);
        margin: 24px auto;
        padding: 12px;
        border-radius: 26px;
    }

    .bsaf-shell {
        padding: 12px;
        border-radius: 22px;
        gap: 12px;
    }

    .bsaf-content-card,
    .bsaf-visual-card,
    .bsaf-faq-card {
        border-radius: 20px;
    }

    .bsaf-content-card {
        padding: 12px 8px 10px;
    }

    .bsaf-title {
        font-size: 20px !important;
        line-height: 1.55 !important;
    }

    .bsaf-description {
        font-size: 12.8px !important;
        line-height: 1.9 !important;
    }

    .bsaf-feature {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 56px;
        border-radius: 15px;
    }

    .bsaf-feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }

    .bsaf-actions {
        gap: 8px;
    }

    .bsaf-btn {
        flex: 1 1 auto;
        min-height: 38px;
        padding-inline: 13px;
        font-size: 12.2px;
    }

    .bsaf-visual-card {
        min-height: 286px;
        padding: 12px;
    }

    .bsaf-main-image {
        inset: 14px 14px 66px 52px;
        border-radius: 19px;
    }

    .bsaf-floating-image {
        width: 112px;
        height: 98px;
        border-width: 5px;
        border-radius: 18px;
    }

    .bsaf-mini-badge {
        min-height: 50px;
        max-width: 154px;
        grid-template-columns: 33px minmax(0, 1fr);
        padding: 7px 9px;
        border-radius: 15px;
    }

    .bsaf-mini-logo {
        width: 33px;
        height: 33px;
    }

    .bsaf-faq-card {
        padding: 14px;
        border-radius: 22px;
    }

    .bsaf-faq-head {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .bsaf-faq-head h3 {
        font-size: 15.5px !important;
    }

    .bsaf-faq-question {
        min-height: 46px;
        padding: 11px 12px;
        font-size: 12.8px;
    }
}

@media (max-width: 420px) {
    .bsaf-main-image {
        inset-inline-start: 14px;
        bottom: 82px;
    }

    .bsaf-floating-image {
        width: 100px;
        height: 90px;
    }

    .bsaf-mini-badge {
        inset-inline-end: 12px;
        bottom: 12px;
    }
}
