.service-protect {
    padding: 104px 0;
    background: var(--service-dark);
    color: #fff;
}

.service-protect__panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 72px;
    align-items: stretch;
}

.service-protect__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 560px;
    height: 100%;
}

.service-protect__label {
    margin: 0 0 16px;
    color: var(--service-orange);
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.service-protect__title {
    max-width: 500px;
    margin: 0;
    color: #fff;
    font-family: var(--font-aeonik);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    text-wrap: pretty;
}

.service-protect__body {
    max-width: 520px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--font-aeonik);
    font-size: 16px;
    line-height: 27px;
    text-wrap: pretty;
}

.service-protect__body p,
.service-protect__feature-description p {
    margin: 0;
}

.service-protect__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.service-protect__features {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-protect__feature {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 0;
    min-height: 84px;
    padding: 18px clamp(12px, 2vw, 24px);
    color: #fff;
}

.service-protect__feature + .service-protect__feature {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-protect__mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 64px;
    height: 44px;
    color: var(--service-orange);
}

.service-protect__mark svg {
    display: block;
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(242, 93, 33, 0.16);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-protect__mark svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-protect__feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    min-width: 0;
}

.service-protect__feature-title {
    color: #fff;
    font-family: var(--font-aeonik);
    font-size: clamp(0.98rem, 1vw, 1.08rem);
    font-weight: 500;
    line-height: 1.25;
}

.service-protect__feature-description {
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--font-aeonik);
    font-size: 14px;
    line-height: 22px;
}

@media (max-width: 1100px) {
    .service-protect__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-protect {
        padding: 60px 0;
    }

    .service-protect__title {
        font-size: 28px;
    }
}

@media (max-width: 620px) {
    .service-protect__actions {
        width: 100%;
    }

    .service-protect__feature {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 8px;
    }

    .service-protect__mark {
        width: 48px;
    }
}
