/* 06 — WHY CHOOSE US (bento) */

.why-section {
    background: var(--bg);
}

.why-bento {
    display: grid;
    grid-template-columns: 1.15fr 1.4fr 1fr 1.3fr;
    grid-template-rows: 320px 320px;
    gap: 16px;
}

.wb {
    position: relative;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
    transition:
        transform 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease;
}

.wb:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 24px 40px -28px rgba(93, 46, 222, 0.3);
}

.wb-1 {
    grid-column: 1;
    grid-row: 1;
}

.wb-2 {
    grid-column: 2 / span 2;
    grid-row: 1;
}

.wb-3 {
    grid-column: 4;
    grid-row: 1 / span 2;
}

.wb-4 {
    grid-column: 1;
    grid-row: 2;
}

.wb-5 {
    grid-column: 2;
    grid-row: 2;
}

.wb-6 {
    grid-column: 3;
    grid-row: 2;
}

.wb h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.wb > p.wb-desc {
    margin: 6px 0 0;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 280px;
}

/* card 1: cost-effective + 3D credit card */

.wb-1 .credit-card {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) rotate(-4deg);
    width: 240px;
    height: 144px;
    background: linear-gradient(150deg, #1a1340 0%, #0b0918 100%);
    border-radius: 14px;
    box-shadow:
        0 26px 50px -12px rgba(11, 11, 20, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    color: #fff;
    overflow: hidden;
}

.wb-1 .credit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            60% 70% at 80% 20%,

            rgba(184, 155, 251, 0.18) 0%,

            transparent 60%
        ),
        radial-gradient(
            60% 60% at 20% 100%,

            rgba(93, 46, 222, 0.3) 0%,

            transparent 60%
        );
    pointer-events: none;
}

.wb-1 .chip {
    width: 32px;
    height: 24px;
    border-radius: 5px;
    background: linear-gradient(135deg, #d5b97a 0%, #8e7a48 100%);
    position: relative;
}

.wb-1 .chip::after {
    content: "";
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background:
        linear-gradient(
            to right,

            transparent 45%,

            rgba(0, 0, 0, 0.2) 46%,

            transparent 47%
        ),
        linear-gradient(
            to bottom,

            transparent 33%,

            rgba(0, 0, 0, 0.2) 34%,

            transparent 35%,

            transparent 65%,

            rgba(0, 0, 0, 0.2) 66%,

            transparent 67%
        );
}

.wb-1 .currency {
    position: absolute;
    right: 16px;
    top: 22px;
    font-size: 48px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    letter-spacing: -0.05em;
}

.wb-1 .card-foot {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.wb-1 .card-foot::before {
    content: "+";
    color: var(--brand-3);
    font-weight: 600;
}

/* card 2: rating + avatars */

.wb-2 {
    padding: 26px 28px;
}

.wb-2 .stars {
    color: #f5b400;
    font-size: 18px;
}

.wb-2 .stars + .label {
    margin-top: 8px;
    font-size: 14.5px;
    color: var(--ink-2);
    font-weight: 500;
}

.wb-2 .score {
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}

.wb-2 .score em {
    font-style: normal;
    font-size: 14px;
    color: var(--muted);
    margin-left: 2px;
    font-weight: 500;
}

.wb-2 .avatar-field {
    position: absolute;
    inset: auto 0 0 0;
    height: 75%;
    pointer-events: none;
}

.wb-2 .avatar-field .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--line-2);
}

.wb-2 .avatar-field .ring.r1 {
    width: 180px;
    height: 180px;
    left: 50%;
    bottom: -100px;
    margin-left: -90px;
}

.wb-2 .avatar-field .ring.r2 {
    width: 280px;
    height: 280px;
    left: 50%;
    bottom: -160px;
    margin-left: -140px;
    border-style: dashed;
    opacity: 0.6;
}

.wb-2 .av {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 8px 18px -8px rgba(11, 11, 20, 0.2);
    border: 3px solid #fff;
}

.wb-2 .av.a1 {
    width: 60px;
    height: 60px;
    left: 20%;
    bottom: 28%;
    background: linear-gradient(135deg, #fbbf24, #f97316);
}

.wb-2 .av.a2 {
    width: 56px;
    height: 56px;
    left: 46%;
    bottom: 60%;
    background: linear-gradient(135deg, #34d399, #059669);
}

.wb-2 .av.a3 {
    width: 64px;
    height: 64px;
    left: 10%;
    bottom: 8%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.wb-2 .av.a4 {
    width: 56px;
    height: 56px;
    right: 12%;
    bottom: 28%;
    background: linear-gradient(135deg, #f472b6, #be185d);
}

.wb-2 .wordmark {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.045em;
    line-height: 1;
}

.wb-2 .wordmark sup {
    font-size: 12px;
    font-weight: 500;
    vertical-align: super;
    margin-left: 2px;
    color: var(--muted);
}

/* card 3: tall dark strategic card */

.wb-3 {
    background: linear-gradient(160deg, #1a1340 0%, #0b0918 60%, #14102a 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.06);
}

.wb-3:hover {
    border-color: rgba(123, 75, 240, 0.45);
}

.wb-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            60% 50% at 100% 0%,

            rgba(123, 75, 240, 0.3) 0%,

            transparent 60%
        ),
        radial-gradient(
            50% 40% at 0% 100%,

            rgba(184, 155, 251, 0.12) 0%,

            transparent 60%
        );
    pointer-events: none;
}

.wb-3 > * {
    position: relative;
}

.wb-3 h3 {
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
    text-wrap: balance;
    font-weight: 600;
}

.wb-3 ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.wb-3 li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.wb-3 li::before {
    content: "+";
    color: var(--brand-3);
    font-weight: 600;
    font-size: 16px;
}

.wb-3 .get-btn {
    margin-top: 22px;
    align-self: flex-start;
    padding: 6px 6px 6px 22px;
    height: 48px;
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: transform 200ms ease;
}

.wb-3 .get-btn:hover {
    transform: translateY(-1px);
}

.wb-3 .get-btn .ico {
    width: 36px;
    height: 36px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.wb-3 .watch {
    position: absolute;
    right: -56px;
    bottom: -56px;
    width: 280px;
    height: 280px;
    border-radius: 36px;
    background:
        radial-gradient(
            circle at 30% 30%,

            rgba(123, 75, 240, 0.55) 0%,

            rgba(11, 11, 20, 0) 60%
        ),
        linear-gradient(160deg, #2c2152 0%, #14102a 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform: rotate(-12deg);
    pointer-events: none;
}

.wb-3 .watch::before,
.wb-3 .watch::after {
    content: "";
    position: absolute;
    left: 30%;
    right: 30%;
    height: 18px;
    background: linear-gradient(180deg, #2c2152 0%, #14102a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.wb-3 .watch::before {
    top: -18px;
}

.wb-3 .watch::after {
    bottom: -18px;
}

.wb-3 .watch i {
    position: absolute;
    inset: 18%;
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 40% 30%,

            rgba(184, 155, 251, 0.55) 0%,

            transparent 50%
        ),
        linear-gradient(160deg, #5d2ede 0%, #2e1a6b 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.wb-3 .copyright {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 22px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0;
}

/* card 4: built with best stack */

.wb-4 .stack-grid {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.wb-4 .stack-tile {
    aspect-ratio: 1;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    transition:
        transform 220ms ease,
        background 220ms ease;
}

.wb-4 .stack-tile:hover {
    transform: translateY(-2px);
    background: var(--brand);
}

.wb-4 .stack-tile.alt {
    background: var(--brand-soft);
    color: var(--brand);
}

.wb-4 .stack-tile.alt:hover {
    background: var(--brand);
    color: #fff;
}

/* card 5: image card "Reliable & Future-ready" */

.wb-5 {
    padding: 0;
    background:
        radial-gradient(
            circle at 70% 80%,

            rgba(93, 46, 222, 0.3) 0%,

            transparent 60%
        ),
        linear-gradient(160deg, #2e1a6b 0%, #1a1340 50%, #0b0918 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.06);
}

.wb-5::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        50% 60% at 20% 30%,

        rgba(255, 255, 255, 0.06) 0%,

        transparent 60%
    );
    pointer-events: none;
}

.wb-5 .leg-mock {
    position: absolute;
    right: -30px;
    top: -20px;
    width: 180px;
    height: 240px;
    background:
        radial-gradient(
            ellipse at 30% 30%,

            rgba(184, 155, 251, 0.3) 0%,

            transparent 60%
        ),
        linear-gradient(160deg, #2c2152 0%, #0b0918 100%);
    border-radius: 0 24px 0 60%;
    opacity: 0.7;
}

.wb-5 .runner-svg {
    position: absolute;
    right: 24px;
    top: 36px;
    color: rgba(255, 255, 255, 0.25);
}

.wb-5 .copy-block {
    position: absolute;
    inset: auto 24px 24px 24px;
    color: #fff;
}

.wb-5 .copy-block b {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.wb-5 .copy-block i {
    display: block;
    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    color: var(--brand-3);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-top: 2px;
}

/* card 6: 24/7 support with chat */

.wb-6 {
    padding: 26px 24px;
}

.wb-6 .big-num {
    font-size: 40px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.wb-6 .label-sm {
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted);
}

.wb-6 .chat-stack {
    margin-top: auto;
}

.wb-6 .bub {
    padding: 7px 12px 7px 7px;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.wb-6 .bub.right {
    align-self: flex-end;
    padding: 7px 7px 7px 12px;
}

.wb-6 .bub .pic {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    flex: 0 0 auto;
}

.wb-6 .bub.right .pic {
    order: 2;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
}

@media (max-width: 1100px) {
    .why-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .wb-1 {
        grid-column: 1;
        grid-row: 1;
        min-height: 320px;
    }

    .wb-2 {
        grid-column: 2;
        grid-row: 1;
        min-height: 320px;
        overflow: hidden;
    }

    .wb-3 {
        grid-column: 1 / span 2;
        grid-row: 2;
        min-height: 340px;
    }

    .wb-4 {
        grid-column: 1;
        grid-row: 3;
    }

    .wb-5 {
        grid-column: 2;
        grid-row: 3;
    }

    .wb-6 {
        grid-column: 1 / span 2;
        grid-row: 4;
        min-height: 220px;
    }
}

@media (max-width: 720px) {
    .why-bento {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .why-bento > * {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 280px;
    }
}
