.sr-services-showcase {
    margin-top: var(--sr-service-showcase-margin-top);
    margin-bottom: var(--sr-service-showcase-margin-bottom);
    padding-top: var(--sr-service-showcase-padding-top);
    padding-bottom: var(--sr-service-showcase-padding-bottom);
    background: var(--sr-service-showcase-bg);
}

.sr-services-showcase__header {
    display: grid;
    grid-template-columns: max-content minmax(280px, 1fr);
    gap: var(--sr-exp-header-gap);
    align-items: end;
    margin-bottom: 56px;
}

.sr-services-showcase__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--sr-service-showcase-label-color);
    font-size: var(--sr-service-showcase-label-size);
    font-weight: var(--sr-service-showcase-label-weight);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sr-services-showcase__label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.sr-services-showcase__header h2 {
    margin: 0;
    color: var(--sr-service-showcase-title-color);
    font-size: var(--sr-service-showcase-title-size);
    font-weight: var(--sr-service-showcase-title-weight);
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.sr-services-showcase__header p {
    max-width: 680px;
    margin: 0;
    color: var(--sr-service-showcase-text-color);
    font-size: var(--sr-service-showcase-text-size);
    font-weight: var(--sr-service-showcase-text-weight);
    line-height: 1.6;
}

.sr-services-showcase__visuals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sr-service-showcase-visual-gap);
    margin-bottom: 42px;
}

.sr-services-visual {
    min-height: var(--sr-service-showcase-visual-height);
    overflow: hidden;
    border-radius: var(--sr-service-showcase-visual-radius);
}

.sr-services-visual--left {
    background: var(--sr-service-showcase-left-bg);
}

.sr-services-visual--right {
    background: var(--sr-service-showcase-right-bg);
}

.sr-services-visual img {
    display: block;
    width: 100%;
    height: var(--sr-service-showcase-visual-height);
    object-fit: cover;
}

.sr-services-visual--text {
    display: grid;
    align-items: end;
    padding: 34px;
}

.sr-services-visual__text {
    max-width: 520px;
}

.sr-services-visual__text strong {
    display: block;
    color: var(--sr-service-showcase-visual-title-color);
    font-size: var(--sr-service-showcase-visual-title-size);
    font-weight: var(--sr-service-showcase-visual-title-weight);
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.sr-services-visual__text p {
    margin: 14px 0 0;
    color: var(--sr-service-showcase-visual-text-color);
    font-size: var(--sr-service-showcase-visual-text-size);
    font-weight: var(--sr-service-showcase-visual-text-weight);
    line-height: 1.55;
}

.sr-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
}

.sr-services-list__item {
    display: grid;
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
    gap: var(--sr-service-showcase-item-gap);
    align-items: start;
    padding: var(--sr-service-showcase-item-padding-y) 0;
    border-top: 1px solid var(--sr-service-showcase-border);
}

a.sr-services-list__item {
    color: inherit;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

a.sr-services-list__item:hover {
    opacity: 0.76;
    transform: translateX(3px);
}

.sr-services-list__item:nth-child(-n+2) {
    border-top: 0;
}

.sr-services-list__item h3 {
    margin: 0;
    color: var(--sr-service-showcase-item-title-color);
    font-size: var(--sr-service-showcase-item-title-size);
    font-weight: var(--sr-service-showcase-item-title-weight);
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.sr-services-list__item p {
    margin: 0;
    color: var(--sr-service-showcase-item-text-color);
    font-size: var(--sr-service-showcase-item-text-size);
    font-weight: var(--sr-service-showcase-item-text-weight);
    line-height: 1.58;
}

.sr-service-detail {
    padding: 96px 0 110px;
    background: var(--sr-soft);
}

.sr-service-detail__card {
    max-width: 1220px;
    margin: 0 auto;
    padding: 58px 62px 64px;
    background: #fff;
    border: 1px solid var(--sr-border);
    border-radius: var(--sr-radius);
    box-shadow: var(--sr-shadow);
}

.sr-service-detail__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 58px;
    padding: 8px 20px 52px;
    margin-bottom: 86px;
    border-bottom: 1px solid var(--sr-border);
}

.sr-service-detail__nav-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--sr-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.sr-service-detail__nav-item:hover {
    color: var(--sr-blue);
    opacity: 0.78;
    transform: translateX(3px);
}

.sr-service-detail__nav-item.is-current {
    color: var(--sr-blue);
}

.sr-service-detail__nav-icon {
    width: 22px;
    height: 22px;
    color: currentColor;
    flex: 0 0 22px;
}

.sr-service-detail__intro {
    display: grid;
    gap: 30px;
    min-height: 330px;
}

.sr-service-detail__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--sr-service-page-label-color);
    font-size: var(--sr-service-page-label-size);
    font-weight: var(--sr-service-page-label-weight);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sr-service-detail__label::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.sr-service-detail__content {
    max-width: 980px;
    color: var(--sr-service-page-content-color);
    font-size: var(--sr-service-page-content-size);
    font-weight: var(--sr-service-page-content-weight);
    line-height: 1.72;
}

.sr-service-detail__content > *:first-child {
    margin-top: 0;
}

.sr-service-detail__content > *:last-child {
    margin-bottom: 0;
}

.sr-service-detail__actions {
    justify-self: end;
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 14px 10px 24px;
    color: #fff;
    background: var(--sr-blue);
    border-radius: 999px;
    font-size: var(--sr-service-page-button-size);
    font-weight: var(--sr-service-page-button-weight);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sr-service-detail__button {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px;
    color: var(--sr-blue);
    background: #fff;
    border-radius: 999px;
    line-height: 1;
}

.sr-service-detail__button:hover {
    color: var(--sr-blue);
    opacity: 0.82;
}

.sr-service-detail__vehicles {
    margin-top: 68px;
    padding-top: 36px;
    border-top: 1px solid var(--sr-border);
}

.sr-service-detail__vehicles h2 {
    margin: 0 0 28px;
    color: var(--sr-service-page-vehicles-title-color);
    font-size: var(--sr-service-page-vehicles-title-size);
    font-weight: var(--sr-service-page-vehicles-title-weight);
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sr-service-detail__vehicle-grid {
    gap: 26px;
}

.sr-service-detail__empty {
    margin: 0;
    color: var(--sr-muted);
    font-size: 16px;
    font-weight: 500;
}
