.advantages-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.advantages-accent {
    min-height: 460px;
    padding: 42px;
    background: var(--lime);
    border-radius: 28px;
}

.advantages-accent h2 {
    max-width: 450px;
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.065em;
}

.accent-dots {
    display: flex;
    gap: 12px;
    margin-top: 145px;
}

.accent-dots i {
    width: 30px;
    height: 30px;
    background: var(--black);
    border-radius: 50%;
}

.accent-dots i:nth-child(2) {
    background: var(--white);
}

.advantages-list {
    display: grid;
}

.advantage-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.advantage-row:first-child {
    border-top: 1px solid var(--line);
}

.advantage-row > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    background: var(--soft);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
}

.advantage-row h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.advantage-row p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}