.why { border-bottom: 1px solid var(--c-border); }

.why__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px var(--pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.why__inner::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--c-border);
}

.why__left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 64px;
}
.why__title {
    font-family: var(--f-display);
    font-size: clamp(40px, 4.9vw, 70px);
    line-height: .95;
    text-transform: uppercase;
    color: var(--c-dark);
}
.why__desc {
    font-family: var(--f-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #313131;
}

.why__right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 64px;
}
.why__heading {
    display: flex;
    align-items: center;
    gap: 10px;
}
.why__heading-line {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--c-blue);
    flex-shrink: 0;
}
.why__heading-text {
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--c-blue);
    white-space: nowrap;
}

.why__list { display: flex; flex-direction: column; }

.why__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 40px;
    padding: 32px 0;
    border-top: 1px solid var(--c-border);
}
.why__item:last-child { border-bottom: 1px solid var(--c-border); }

.why__num {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-muted);
    padding-top: 4px;
    flex-shrink: 0;
}
.why__body { display: flex; flex-direction: column; gap: 6px; }
.why__name {
    font-family: var(--f-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .014em;
    text-transform: uppercase;
    color: var(--c-dark);
}
.why__text {
    font-family: var(--f-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-text-2);
}

@media (max-width: 1023px) {
    .why__left  { padding-right: 40px; }
    .why__right { padding-left: 40px; }
    .why__desc  { font-size: 16px; }
}

@media (max-width: 767px) {
    .why__inner {
        grid-template-columns: 1fr;
        padding: 48px var(--pad-sm);
        gap: 48px;
    }
    .why__inner::after { display: none; }
    .why__left  { padding-right: 0; }
    .why__right { padding-left: 0; }
    .why__title { font-size: clamp(36px, 11vw, 56px); }
    .why__desc  { font-size: 16px; }
    .why__item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .why__num {
        padding-top: 0;
        padding-bottom: 10px;
    }
}

@media (max-width: 390px) {
    .why__inner { padding: 36px 16px; gap: 36px; }
    .why__name  { font-size: 22px; }
}
