.aiCounsellingPromo {
    margin: 20px 0;
    padding: 30px;
    border: 1px solid #ddd4ff;
    border-radius: 16px;
    background: linear-gradient(90deg, #fff 0%, #fbf7ff 52%, #fff 100%);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.08);
    overflow: hidden;
}

.aiRow {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr) minmax(260px, 0.55fr);
    gap: 28px;
    align-items: center;
}

.aiBadge,
.confBadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 8px;
    background: #6d5df6;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.aiTitle {
    margin: 24px 0 16px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 900;
    color: #111827;
    letter-spacing: 0;
}

.aiTitle span {
    color: #7c3aed;
    background: linear-gradient(90deg, #6d5df6, #ff5ab8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aiMain {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 800;
    color: #172033;
}

.aiDesc {
    max-width: 660px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.aiFeatures {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin-bottom: 26px;
    color: #172033;
    font-weight: 700;
}

.aiFeature {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.aiFeature i {
    color: #6d5df6;
    font-size: 18px;
}

.aiBtn,
.confBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    min-height: 52px;
    border-radius: 12px;
    padding: 0 28px;
    background: linear-gradient(90deg, #6556f3, #ff58b8);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(124, 58, 237, 0.24);
}

.aiBtn:hover,
.confBtn:hover {
    color: #fff;
}

.aiCenter {
    display: grid;
    place-items: center;
    min-height: 260px;
}

.aiCenter img {
    width: min(100%, 310px);
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(124, 58, 237, 0.18));
}

.aiRight {
    display: flex;
    justify-content: flex-end;
}

.aiConfidence {
    width: 100%;
    max-width: 285px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.confBadge {
    margin-bottom: 20px;
    background: linear-gradient(90deg, #6d5df6, #a855f7);
    font-size: 13px;
}

.confTitle {
    color: #172033;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 14px;
}

.confHighlight {
    margin-bottom: 18px;
    color: #7c3aed;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
}

.confSub {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
}

.confAction {
    color: #6d5df6;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 18px;
}

.confBtn {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
}

@media (max-width: 991px) {
    .aiRow {
        grid-template-columns: 1fr;
    }

    .aiCenter {
        min-height: auto;
    }

    .aiRight {
        justify-content: flex-start;
    }

    .aiConfidence {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .aiCounsellingPromo {
        padding: 20px;
        border-radius: 12px;
    }

    .aiTitle {
        margin-top: 18px;
        font-size: 30px;
    }

    .aiFeatures {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .aiBtn {
        width: 100%;
        min-height: 50px;
        padding: 0 16px;
        font-size: 14px;
    }

    .aiCenter img {
        max-width: 220px;
    }
}
