.who {
    padding: 128px 60px;
    position: relative;
}
.who__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.who__bg-blob {
    width: auto;
    position: absolute;
    z-index: -1;
}

.who__bg-blob.top {
    height: 700px;
    top: -200px;
    left: -350px;
}
.who__bg-blob.bottom {
    height: 1100px;
    bottom: -500px;
    right: -400px;
}

.who .section-header {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.who__arrow {
    position: absolute;
    top: 100px;
    right: -85px;
    transform: rotate(13deg);
}

/* benefit-card */
.benefit-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
    cursor: default;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.benefit-card--blue {
    background: #f3f7ff;
    border-color: #dae6ff;
}
.benefit-card--yellow {
    background: #fffef2;
    border-color: #fffcd6;
}
.benefit-card--purple {
    background: #faf6ff;
    border-color: #eee0ff;
}
.benefit-card--green {
    background: #effdf7;
    border-color: #c1ffe4;
}
.benefit-card__visual {
    height: 188px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #ececec;
}
.benefit-card--blue .benefit-card__visual {
    background: #eef3ff;
}
.benefit-card--yellow .benefit-card__visual {
    background: #fffde9;
}
.benefit-card--purple .benefit-card__visual {
    background: #f8f2ff;
}
.benefit-card--green .benefit-card__visual {
    background: #dcfff0;
}
.benefit-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefit-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-black);
}
.benefit-card__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
}

/* chip base */
.who-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 12px;
    padding: 9px 13px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.09),
        0 1px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid;
    animation: who-chip-float 4s ease-in-out infinite;
}
.who-chip__icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.who-chip__icon svg {
    width: 11px;
    height: 11px;
}
.who-chip__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.who-chip__title {
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.2;
}
.who-chip__sub {
    font-size: 9.5px;
    font-weight: 500;
    opacity: 0.7;
}
.who-chip__badge {
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 9.5px;
    font-weight: 700;
    margin-left: 4px;
}

/* ── Blue card chips ── */
.benefit-card--blue .who-chip--1 {
    left: 24px;
    top: 18px;
    background: #eff6ff;
    border-color: #bedbff;
    animation-delay: 0s;
}
.benefit-card--blue .who-chip--1 .who-chip__icon {
    background: #2b7fff;
}
.benefit-card--blue .who-chip--1 .who-chip__title,
.benefit-card--blue .who-chip--1 .who-chip__sub {
    color: #1447e6;
}

.benefit-card--blue .who-chip--2 {
    right: 20px;
    top: 55px;
    background: #f0fdf4;
    border-color: #bbf7d0;
    animation-delay: 1.2s;
}
.benefit-card--blue .who-chip--2 .who-chip__icon {
    background: #00a63e;
}
.benefit-card--blue .who-chip--2 .who-chip__title,
.benefit-card--blue .who-chip--2 .who-chip__sub {
    color: #166534;
}

.benefit-card--blue .who-chip--3 {
    left: 24px;
    top: 80px;
    background: #fff;
    border-color: #dae6ff;
    animation-delay: .8s;
}
.benefit-card--blue .who-chip--3 .who-chip__icon {
    background: #eff6ff;
}
.benefit-card--blue .who-chip--3 .who-chip__title,
.benefit-card--blue .who-chip--3 .who-chip__sub {
    color: #314158;
}

.benefit-card--blue .who-chip--4 {
    right: 20px;
    top: 118px;
    background: linear-gradient(135deg, #2b7fff, #1447e6);
    border-color: #1447e6;
    animation-delay: 2s;
}
.benefit-card--blue .who-chip--4 .who-chip__title {
    color: #fff;
}
.benefit-card--blue .who-chip--4 .who-chip__sub {
    color: rgba(255, 255, 255, .85);
}
.benefit-card--blue .who-chip--4 .who-chip__badge {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}

/* ── Yellow card chips ── */
.benefit-card--yellow .who-chip--1 {
    left: 31px;
    top: 22px;
    background: #f5f3ff;
    border-color: #e9d5ff;
    animation-delay: .3s;
}
.benefit-card--yellow .who-chip--1 .who-chip__icon {
    background: #7c3aed;
}
.benefit-card--yellow .who-chip--1 .who-chip__title,
.benefit-card--yellow .who-chip--1 .who-chip__sub {
    color: #7c3aed;
}
.benefit-card--yellow .who-chip--1 .who-chip__badge {
    background: rgba(124, 58, 237, .12);
    color: #7c3aed;
}

.benefit-card--yellow .who-chip--2 {
    right: 20px;
    top: 16px;
    background: #fff;
    border-color: #e9d5ff;
    animation-delay: 1.5s;
}
.benefit-card--yellow .who-chip--2 .who-chip__icon {
    background: #a855f7;
}
.benefit-card--yellow .who-chip--2 .who-chip__title,
.benefit-card--yellow .who-chip--2 .who-chip__sub {
    color: #314158;
}

.benefit-card--yellow .who-chip--3 {
    right: 20px;
    top: 98px;
    background: #f0fdf4;
    border-color: #bbf7d0;
    animation-delay: .7s;
}
.benefit-card--yellow .who-chip--3 .who-chip__icon {
    background: #dcfce7;
}
.benefit-card--yellow .who-chip--3 .who-chip__title,
.benefit-card--yellow .who-chip--3 .who-chip__sub {
    color: #166534;
}

.benefit-card--yellow .who-chip--4 {
    left: 38px;
    top: 95px;
    background: #fffbeb;
    border-color: #fde68a;
    animation-delay: 2.2s;
}
.benefit-card--yellow .who-chip--4 .who-chip__icon {
    background: #fbbf24;
}
.benefit-card--yellow .who-chip--4 .who-chip__title,
.benefit-card--yellow .who-chip--4 .who-chip__sub {
    color: #92400e;
}

/* ── Purple card chips ── */
.benefit-card--purple .who-chip--1 {
    right: 20px;
    top: 22px;
    background: #f0fdf4;
    border-color: #bbf7d0;
    animation-delay: .5s;
}
.benefit-card--purple .who-chip--1 .who-chip__icon {
    background: #dcfce7;
}
.benefit-card--purple .who-chip--1 .who-chip__title,
.benefit-card--purple .who-chip--1 .who-chip__sub {
    color: #166534;
}
.benefit-card--purple .who-chip--1 .who-chip__title {
    font-size: 14px;
    font-weight: 800;
}

.benefit-card--purple .who-chip--2 {
    left: 69px;
    top: 14px;
    background: #eff6ff;
    border-color: #bedbff;
    animation-delay: 1.8s;
}
.benefit-card--purple .who-chip--2 .who-chip__icon {
    background: #bedbff;
}
.benefit-card--purple .who-chip--2 .who-chip__title,
.benefit-card--purple .who-chip--2 .who-chip__sub {
    color: #1447e6;
}
.benefit-card--purple .who-chip--2 .who-chip__title {
    font-size: 14px;
    font-weight: 800;
}

.benefit-card--purple .who-chip--3 {
    left: 40px;
    top: 82px;
    background: #fff;
    border-color: #eee0ff;
    animation-delay: 1s;
}
.benefit-card--purple .who-chip--3 .who-chip__icon {
    background: #7c3aed;
}
.benefit-card--purple .who-chip--3 .who-chip__title,
.benefit-card--purple .who-chip--3 .who-chip__sub {
    color: #314158;
}

.benefit-card--purple .who-chip--4 {
    right: 20px;
    top: 108px;
    background: #faf6ff;
    border-color: #eee0ff;
    animation-delay: 2.5s;
}
.benefit-card--purple .who-chip--4 .who-chip__icon {
    background: #eee0ff;
}
.benefit-card--purple .who-chip--4 .who-chip__title,
.benefit-card--purple .who-chip--4 .who-chip__sub {
    color: #7c3aed;
}

/* ── Green card chips ── */
.benefit-card--green .who-chip--1 {
    left: 80px;
    top: 18px;
    background: #fff7f7;
    border-color: #fecaca;
    animation-delay: .4s;
}
.benefit-card--green .who-chip--1 .who-chip__icon {
    background: #fee2e2;
}
.benefit-card--green .who-chip--1 .who-chip__title,
.benefit-card--green .who-chip--1 .who-chip__sub {
    color: #b91c1c;
}
.benefit-card--green .who-chip--1 .who-chip__title {
    text-decoration: line-through;
}

.benefit-card--green .who-chip--2 {
    right: 16px;
    top: 40px;
    background: #fff7f7;
    border-color: #fecaca;
    animation-delay: 1.6s;
}
.benefit-card--green .who-chip--2 .who-chip__icon {
    background: #fee2e2;
}
.benefit-card--green .who-chip--2 .who-chip__title,
.benefit-card--green .who-chip--2 .who-chip__sub {
    color: #b91c1c;
}
.benefit-card--green .who-chip--2 .who-chip__title {
    text-decoration: line-through;
}

.benefit-card--green .who-chip--3 {
    left: 24px;
    top: 76px;
    background: #f0fdf4;
    border-color: #bbf7d0;
    animation-delay: .9s;
}
.benefit-card--green .who-chip--3 .who-chip__icon {
    background: #dcfce7;
}
.benefit-card--green .who-chip--3 .who-chip__title,
.benefit-card--green .who-chip--3 .who-chip__sub {
    color: #166534;
}

.benefit-card--green .who-chip--4 {
    right: 16px;
    top: 110px;
    background: #f0fdf4;
    border-color: #bbf7d0;
    animation-delay: 2.1s;
}
.benefit-card--green .who-chip--4 .who-chip__icon {
    background: #dcfce7;
}
.benefit-card--green .who-chip--4 .who-chip__title,
.benefit-card--green .who-chip--4 .who-chip__sub {
    color: #166534;
}
@keyframes who-chip-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.who__cta {
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
    width: fit-content;
}

.who__arrow-swirl {
    position: absolute;
    left: -340px;
    bottom: -70px;
}

@media (max-width: 1200px) {
    .who__arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .who {
        padding: 60px 24px;
    }
    .who__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
    .benefit-card__desc {
        font-size: 15px;
    }

    .who__arrow-swirl {
        left: -200px;
        bottom: -50px;
        height: 130px;
    }
}
@media (max-width: 600px) {
    .who {
        padding: 48px 16px;
    }
    .benefit-card__visual {
        height: 160px;
    }
    .benefit-card__title {
        font-size: 20px;
    }
    .who-chip {
        padding: 6px 10px;
        gap: 5px;
        border-radius: 8px;
    }
    .who-chip__title {
        font-size: 9.5px;
    }
    .who-chip__sub {
        font-size: 8px;
    }

    .who__arrow-swirl {
        left: -120px;
    }
}
