.bakx-section,
    .bakx-section * {
        box-sizing: border-box;
    }

    .bakx-section {
        --bx-primary: #2893C8;
        --bx-primary-dark: #026BA0;
        --bx-primary-soft: #EAF7FC;
        --bx-primary-soft-2: #DDF1FA;
        --bx-navy: #101828;
        --bx-muted: #667085;
        --bx-border: #E4E7EC;
        --bx-surface: #F8FAFC;
        --bx-success: #12B76A;
        --bx-error: #F04438;
        --bx-white: #FFFFFF;

        position: relative;
        padding: 18px 18px;
        background: #FFFFFF;
        font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .bakx-section:first-of-type {
        padding-top: 28px;
    }

    .bakx-section:last-of-type {
        padding-bottom: 38px;
    }

    .bakx-section__wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

    /*
    |--------------------------------------------------------------------------
    | Invisible section panel
    |--------------------------------------------------------------------------
    | The panel wrapper remains for layout compatibility, but it is no longer
    | visually visible. No background, no border, no shadow, no raised card.
    |--------------------------------------------------------------------------
    */
    .bakx-section__panel {
        position: relative;
        overflow: visible;
        border-radius: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .bakx-section__panel::before {
        display: none;
        content: none;
    }

    .bakx-section__content {
        position: relative;
        z-index: 2;
    }

    .bakx-section__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        width: fit-content;
        margin-bottom: 9px;
        padding: 5px 10px 5px 7px;
        border-radius: 999px;
        background: rgba(234, 247, 252, 0.72);
        border: 1px solid rgba(40, 147, 200, 0.14);
        color: var(--bx-primary-dark);
        font-size: 11px;
        font-weight: 850;
        letter-spacing: 0.2px;
    }

    .bakx-section__eyebrow-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--bx-success);
        box-shadow: none;
    }

    .bakx-section__title {
        margin-top: 16px;
        color: var(--bx-navy);
        font-size: clamp(22px, 2.25vw, 28px);
        line-height: 1.05;
        letter-spacing: -0.8px;
        font-weight: 650;
    }

    .bakx-section__subtitle {
        max-width: 620px;
        margin: 6px auto 0;
        color: var(--bx-muted);
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;
    }

    .bakx-subtitle {
        max-width: 620px;
        margin-top: 5px;
        color: var(--bx-muted);
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;
    }

    .bakx-section__head {
        text-align: center;
        margin-bottom: 22px;
    }

    .bakx-section__head--left {
        text-align: left;
        margin-bottom: 18px;
    }

    .bakx-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .bakx-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .bakx-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    /*
    |--------------------------------------------------------------------------
    | Split layout
    |--------------------------------------------------------------------------
    | Both columns share equal width on desktop.
    | The right visual stretches to match the height of the left content.
    |--------------------------------------------------------------------------
    */
    .bakx-split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(22px, 3.5vw, 44px);
        align-items: stretch;
    }

    .bakx-split--reverse {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .bakx-split__left,
    .bakx-split__right {
        min-width: 0;
    }

    .bakx-split__left {
        display: flex;
        flex-direction: column;
    }

    .bakx-split__right {
        display: flex;
        align-self: stretch;
    }

    .bakx-grid-1 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /*
    |--------------------------------------------------------------------------
    | Flat inner cards
    |--------------------------------------------------------------------------
    | No elevation. Very light border only so content is readable but not raised.
    |--------------------------------------------------------------------------
    */
    .bakx-mini-card {
        position: relative;
        background: transparent;
        border: 1px solid rgba(228, 231, 236, 0.78);
        border-radius: 16px;
        padding: 15px;
        box-shadow: none;
        transition: border-color 0.16s ease, background 0.16s ease;
    }

    .bakx-mini-card:hover {
        transform: none;
        background: rgba(248, 250, 252, 0.52);
        border-color: rgba(40, 147, 200, 0.18);
        box-shadow: none;
    }

    .bakx-icon-box {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(234, 247, 252, 0.78);
        border: 1px solid rgba(40, 147, 200, 0.10);
        color: var(--bx-primary-dark);
        margin-bottom: 11px;
        box-shadow: none;
    }

    .bakx-icon-box--warm {
        background: rgba(255, 243, 243, 0.72);
        border-color: rgba(240, 68, 56, 0.10);
        color: var(--bx-error);
    }

    .bakx-mini-card__title {
        margin: 0 0 6px;
        color: var(--bx-navy);
        font-size: 14px;
        line-height: 1.25;
        font-weight: 900;
        letter-spacing: -0.15px;
    }

    .bakx-mini-card__text {
        margin: 0;
        color: var(--bx-muted);
        font-size: 12.8px;
        line-height: 1.55;
        font-weight: 500;
    }

    .bakx-check-row {
        display: flex;
        gap: 11px;
        align-items: flex-start;
        padding: 13px;
        border-radius: 15px;
        background: transparent;
        border: 1px solid rgba(228, 231, 236, 0.78);
        box-shadow: none;
        transition: border-color 0.16s ease, background 0.16s ease;
    }

    .bakx-check-row:hover {
        background: rgba(248, 250, 252, 0.52);
        border-color: rgba(40, 147, 200, 0.18);
    }

    .bakx-check {
        flex: 0 0 auto;
        width: 23px;
        height: 23px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
        border-radius: 50%;
        background: var(--bx-primary);
        color: #FFFFFF;
        box-shadow: none;
    }

    /*
    |--------------------------------------------------------------------------
    | Visual cards
    |--------------------------------------------------------------------------
    | Image cards stretch to match their sibling column height.
    |--------------------------------------------------------------------------
    */
    .bakx-visual-card {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 100%;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(40, 147, 200, 0.12);
        background:
            radial-gradient(circle at 20% 12%, rgba(40,147,200,0.10), transparent 30%),
            radial-gradient(circle at 82% 20%, rgba(18,183,106,0.06), transparent 26%),
            linear-gradient(135deg, #F8FCFE 0%, #FFFFFF 100%);
        box-shadow: none;
    }

    .bakx-visual-card::before {
        content: "";
        position: absolute;
        inset: -40px;
        z-index: 1;
        opacity: 0.28;
        pointer-events: none;
        background-image:
            radial-gradient(circle, rgba(40,147,200,0.13) 1px, transparent 1px),
            linear-gradient(rgba(40,147,200,0.028) 1px, transparent 1px),
            linear-gradient(90deg, rgba(40,147,200,0.028) 1px, transparent 1px);
        background-size: 34px 34px;
        transform: rotate(-3deg);
    }

    .bakx-visual-card img {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .bakx-visual-card svg {
        position: absolute;
        inset: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: min(240px, 76%);
        height: auto;
    }

    .bakx-stat {
        text-align: center;
        padding: 17px 10px;
    }

    .bakx-stat__value {
        margin: 0 0 6px;
        color: var(--bx-navy);
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 950;
        line-height: 1;
        letter-spacing: -1px;
    }

    .bakx-stat__label {
        color: var(--bx-muted);
        font-size: 12.8px;
        font-weight: 650;
        line-height: 1.4;
    }

    .bakx-stars {
        display: flex;
        gap: 2px;
        margin-bottom: 10px;
        color: #FFC107;
    }

    .bakx-person {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
    }

    .bakx-person__avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bx-primary);
        color: #FFFFFF;
        font-size: 13px;
        font-weight: 950;
        box-shadow: none;
    }

    .bakx-person__name {
        color: var(--bx-navy);
        font-size: 13px;
        font-weight: 850;
    }

    .bakx-person__meta {
        color: var(--bx-muted);
        font-size: 11.5px;
        font-weight: 500;
        margin-top: 1px;
    }

    .bakx-faq {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bakx-faq__item {
        overflow: hidden;
        border-radius: 15px;
        border: 1px solid rgba(228, 231, 236, 0.82);
        background: transparent;
        box-shadow: none;
    }

    .bakx-faq__item:hover {
        background: rgba(248, 250, 252, 0.52);
        border-color: rgba(40, 147, 200, 0.18);
    }

    .bakx-faq__button {
        width: 100%;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 15px;
        border: 0;
        background: transparent;
        color: var(--bx-navy);
        font-family: inherit;
        font-size: 13.5px;
        line-height: 1.35;
        font-weight: 850;
        text-align: left;
        cursor: pointer;
    }

    .bakx-faq__button:hover {
        background: rgba(234, 247, 252, 0.26);
    }

    .bakx-faq__icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--bx-primary-dark);
        background: rgba(234, 247, 252, 0.72);
        border: 1px solid rgba(40, 147, 200, 0.10);
        transition: transform 0.18s ease;
    }

    .bakx-faq__item.is-open .bakx-faq__icon {
        transform: rotate(180deg);
    }

    .bakx-faq__answer {
        display: none;
        padding: 0 15px 14px;
        color: var(--bx-muted);
        font-size: 12.8px;
        line-height: 1.55;
        font-weight: 500;
        border-top: 1px solid rgba(228, 231, 236, 0.68);
    }

    .bakx-faq__item.is-open .bakx-faq__answer {
        display: block;
    }

    .bakx-faq__answer p {
        margin: 12px 0 0;
    }

    @media (max-width: 980px) {
        .bakx-grid-4 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .bakx-grid-3 {
            grid-template-columns: 1fr;
        }

        .bakx-split,
        .bakx-split--reverse {
            grid-template-columns: 1fr;
            align-items: start;
        }

        .bakx-split__right {
            min-height: 320px;
        }

        .bakx-visual-card {
            height: 320px;
            min-height: 320px;
        }
    }

    @media (max-width: 620px) {
        .bakx-section {
            padding: 14px 14px;
        }

        .bakx-section:first-of-type {
            padding-top: 22px;
        }

        .bakx-section:last-of-type {
            padding-bottom: 30px;
        }

        .bakx-section__panel {
            padding: 0;
            border-radius: 0;
            background: transparent;
        }

        .bakx-grid-4,
        .bakx-grid-2,
        .bakx-faq {
            grid-template-columns: 1fr;
        }

        .bakx-section__head {
            text-align: left;
            margin-bottom: 17px;
        }

        .bakx-section__subtitle {
            margin-left: 0;
            margin-right: 0;
        }

        .bakx-check-row {
            padding: 12px;
        }

        .bakx-split__right {
            min-height: 280px;
        }

        .bakx-visual-card {
            height: 280px;
            min-height: 280px;
            border-radius: 18px;
        }
    }

    @media (max-width: 420px) {
        .bakx-split__right {
            min-height: 240px;
        }

        .bakx-visual-card {
            height: 240px;
            min-height: 240px;
        }
    }