/* ====================================================
   Category Hero Banner — figma-aligned
   Mobile : title → desc → bullets → CTA → trust → image
   Desktop: text (left, 55%) + image (right, 42%)
            bullets in single horizontal row, no CTA/trust
   ==================================================== */

.mi-cat-hero {
    background: linear-gradient(180deg, #FFE6EE 0%, #FFD9E4 100%);
    padding: 22px 0;
    overflow: hidden;
}

.mi-cat-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mi-cat-hero__text {
    display: flex;
    flex-direction: column;
}

.mi-cat-hero__illustration {
    width: 100%;
    margin: 4px 0 0;
}

.mi-cat-hero__illustration img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(255, 115, 150, 0.18);
}

/* ── Title (all dark, no color split) ─────────────────── */
.mi-cat-hero__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #16162a;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.mi-cat-hero__title em {
    font-style: normal;
    color: inherit;
}

/* ── Description ──────────────────────────────────────── */
.mi-cat-hero__desc {
    font-size: 14px;
    color: #5a5a6e;
    margin: 0 0 18px;
    line-height: 1.55;
    max-width: 560px;
}

/* ── Bullets ──────────────────────────────────────────── */
.mi-cat-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mi-cat-hero__bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 115, 150, 0.22);
}

.mi-cat-hero__bullet:last-child {
    border-bottom: none;
}

.mi-cat-hero__bullet-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #FF7396;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 115, 150, 0.3);
}

.mi-cat-hero__bullet-icon svg {
    width: 18px;
    height: 18px;
}

.mi-cat-hero__bullet-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.mi-cat-hero__bullet-title {
    font-size: 14px;
    font-weight: 700;
    color: #16162a;
}

.mi-cat-hero__bullet-sub {
    font-size: 12px;
    color: #6b6b7a;
    margin-top: 2px;
}

/* ── CTA button (mobile: full-width pink pill) ────────── */
.mi-cat-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FF7396;
    color: #fff;
    border-radius: 200px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    width: 100%;
    box-shadow: 0 6px 18px rgba(255, 115, 150, 0.35);
    border: 2px solid #E6336A;
    box-sizing: border-box;
    margin-top: 4px;
}

.mi-cat-hero__btn:hover,
.mi-cat-hero__btn:focus {
    background: #e6506f;
    color: #fff;
}

.mi-cat-hero__btn-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.mi-cat-hero__btn-arrow {
    width: 16px;
    height: 16px;
    color: #fff;
    margin-left: 2px;
}

/* ── Trust microcopy line (mobile) ────────────────────── */
.mi-cat-hero__trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 14px 0 6px;
    font-size: 13px;
    color: #4b4b5c;
}

.mi-cat-hero__trust-pair {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.mi-cat-hero__trust-icon {
    display: inline-flex;
    color: #FF7396;
}

.mi-cat-hero__trust-icon svg {
    width: 18px;
    height: 18px;
}

.mi-cat-hero__trust-dot {
    color: #b89aa3;
    font-size: 12px;
}

.mi-cat-hero__trust-item {
    font-weight: 500;
}

/* ============================================
   Tablet / Desktop
   ============================================ */
@media (min-width: 768px) {
    .mi-cat-hero {
        padding: 36px 0;
    }

    .mi-cat-hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .mi-cat-hero__text {
        flex: 1 1 55%;
    }

    .mi-cat-hero__illustration {
        flex: 0 0 42%;
        max-width: 42%;
        margin: 0;
    }

    .mi-cat-hero__title {
        font-size: 34px;
    }

    .mi-cat-hero__desc {
        font-size: 15px;
        margin-bottom: 22px;
    }

    /* Bullets in single row across the bottom (per figma desktop) */
    .mi-cat-hero__bullets {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
    }

    .mi-cat-hero__bullet {
        flex: 0 1 auto;
        padding: 0 22px;
        border-bottom: none;
        border-left: 1px solid rgba(255, 115, 150, 0.32);
    }

    .mi-cat-hero__bullet:first-child {
        border-left: none;
        padding-left: 0;
    }

    .mi-cat-hero__bullet:last-child {
        padding-right: 0;
    }

    .mi-cat-hero__bullet-icon {
        width: 44px;
        height: 44px;
    }

    .mi-cat-hero__bullet-icon svg {
        width: 20px;
        height: 20px;
    }

    /* CTA + trust hidden on desktop per figma */
    .mi-cat-hero__btn,
    .mi-cat-hero__trust {
        display: none;
    }
}

@media (min-width: 1024px) {
    .mi-cat-hero {
        padding: 48px 0;
    }

    .mi-cat-hero__title {
        font-size: 42px;
    }

    .mi-cat-hero__bullet-title {
        font-size: 15px;
    }

    .mi-cat-hero__bullet-sub {
        font-size: 13px;
    }
}
