.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-img-wrap {
    position: relative;
}

.why-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark);
    box-shadow: var(--shadow);
}

.why-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.why-badge {
    position: absolute;
    bottom: -20px;
    right: -16px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 108px;
    height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    font-size: .78rem;
    line-height: 1.35;
    box-shadow: 0 8px 24px rgba(232, 168, 56, .4);
}

.features-list {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: .96rem;
    color: var(--dark);
}

.feat-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2.5;
}