/* =============================================
   BENTO TRUST GRID
   6 cards, 3-col bento layout
   ============================================= */

.bento {
    background: var(--color-cream, #FFF4F0);
    padding: var(--section-padding, 100px) 0;
}

/* --- Heading --- */
.bento__head {
    text-align: center;
    margin-bottom: 48px;
}

.bento__label {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 300;
    font-style: italic;
    font-size: 12px;
    color: var(--color-gray, #6B7280);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.bento__heading {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 48px);
    color: var(--color-black, #000);
    letter-spacing: -0.02em;
}

/* --- Grid --- */
.bento__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* --- Base Card --- */
.bento__card {
    background: var(--color-white, #fff);
    border-radius: var(--radius-card, 12px);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.bento__card-title {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-black, #000);
    margin-bottom: 6px;
}

.bento__card-sub {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 13px;
    color: var(--color-gray, #6B7280);
    line-height: 1.5;
    margin: 0;
}

/* --- CARD 1: Cost-Effective --- */
.bento__card--1 {
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.bento__card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.bento__credit-card {
    width: 220px;
    height: 140px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a40);
    border-radius: 14px;
    transform: rotate(-5deg);
    position: relative;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.bento__credit-chip {
    width: 36px;
    height: 26px;
    background: linear-gradient(135deg, #c9a84c, #e8d48b);
    border-radius: 5px;
    position: absolute;
    top: 24px;
    left: 24px;
}

.bento__credit-symbol {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 700;
    font-size: 28px;
    color: rgba(255,255,255,0.2);
}

.bento__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--radius-badge, 20px);
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-charcoal, #1A1A1A);
    margin-top: auto;
    align-self: flex-start;
}

.bento__card-badge--pink {
    background: rgba(242, 122, 167, 0.12);
}

/* --- CARD 2: Reviews --- */
.bento__card--2 {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento__stars {
    display: flex;
    gap: 2px;
}

.bento__score-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.bento__score {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-black, #000);
}

.bento__score-total {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-gray, #6B7280);
}

.bento__avatars {
    display: flex;
    margin-top: 8px;
}

.bento__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #fff;
    margin-left: -10px;
}

.bento__avatar:first-child {
    margin-left: 0;
}

.bento__brand-logo {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black, #000);
    letter-spacing: 0.02em;
    margin-top: auto;
    text-align: center;
}

/* --- CARD 3: Strategic (dark) --- */
.bento__card--dark {
    background: var(--color-charcoal, #1A1A1A);
    color: #fff;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.bento__card--dark .bento__card-title {
    color: #fff;
}

.bento__checklist {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bento__checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.bento__checklist li svg {
    flex-shrink: 0;
}

.bento__card-cta {
    margin-top: 20px;
    align-self: flex-start;
}

/* --- CARD 4: Built with the best --- */
.bento__card--4 {
    min-height: 220px;
}

.bento__card--4 .bento__card-title {
    font-size: 18px;
}

.bento__icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.bento__tool-icon {
    width: 100%;
    aspect-ratio: 1;
    max-width: 40px;
    background: #f0f0f0;
    border-radius: 6px;
}

/* --- CARD 5: Reliable (photo bg) --- */
.bento__card--photo {
    background: #333;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bento__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bento__card-center {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bento__card-center span {
    display: block;
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}

.bento__card-center .script-accent {
    font-size: 24px;
    color: #fff;
}

/* --- CARD 6: 24/7 --- */
.bento__card--6 {
    min-height: 220px;
}

.bento__big-num {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 700;
    font-size: 42px;
    color: var(--color-black, #000);
    line-height: 1;
    margin-bottom: 4px;
}

.bento__chat {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 200px;
}

.bento__chat-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.bento__chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
}

.bento__chat-bubble {
    background: var(--color-sky, #C8DDF8);
    border-radius: 12px 12px 12px 0;
    padding: 8px 12px;
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-charcoal, #1A1A1A);
}

.bento__chat-bubble--reply {
    background: var(--color-cream, #FFF4F0);
    border-radius: 12px 12px 0 12px;
    align-self: flex-end;
}

.bento__chat-send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-blue, #4C60FF);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    cursor: pointer;
}


/* =============================================
   RESPONSIVE — TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
    .bento__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Card 3 spans full width on tablet */
    .bento__card--3 {
        grid-column: 1 / -1;
    }
}


/* =============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
    .bento__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    /* Row 1: cards 1-3 */
    .bento__card--1 { grid-column: 1; grid-row: 1; }
    .bento__card--2 { grid-column: 2; grid-row: 1; }
    .bento__card--3 { grid-column: 3; grid-row: 1 / 3; }

    /* Row 2: cards 4-6 */
    .bento__card--4 { grid-column: 1; grid-row: 2; }
    .bento__card--5 { grid-column: 2; grid-row: 2; }
    .bento__card--6 { grid-column: 3; grid-row: 2; }

    /* Card 3 spans both rows */
    .bento__card--3 {
        grid-column: 3;
        grid-row: 1 / 3;
    }
}


/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 767px) {
    .bento {
        padding: var(--section-padding-mobile, 56px) 0;
    }

    .bento__card--1,
    .bento__card--2,
    .bento__card--3 {
        min-height: auto;
    }

    .bento__credit-card {
        width: 180px;
        height: 110px;
    }
}
