.rh-services,
.rh-why,
.rh-price {
    color: var(--rh-text);
    font-family: inherit;
}

.rh-services svg,
.rh-why svg,
.rh-price svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rh-btn {
    min-height: 58px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    transition: .2s ease;
}

.rh-btn:hover {
    transform: translateY(-1px);
}

.rh-btn--primary {
    color: #fff;
    border: 1px solid #ff2b33;
    background: linear-gradient(180deg, #ff382f 0%, #ed111b 100%);
    box-shadow: 0 16px 34px rgba(239, 27, 36, .32);
}

.rh-btn--outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.25);
}

/* Services */

.rh-services {
    padding: 28px 0 0;
}

.rh-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rh-service {
    min-height: 405px;
    padding: 25px 22px 24px;
    border: 1px solid var(--rh-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0,0,0,.055);
}

.rh-service-head {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.rh-service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff2d36 0%, #ed1520 100%);
    color: #fff;
    font-size: 29px;
    box-shadow: 0 12px 22px rgba(239,27,36,.25);
}

.rh-service h2 {
    margin: 4px 0 0;
    color: #111;
    font-size: 22px;
    line-height: 1.36;
    font-weight: 950;
}

.rh-service-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 22px;
    align-items: end;
}

.rh-service-list {
    display: grid;
    gap: 27px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rh-service-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.rh-service-item span {
    margin-top: 2px;
    color: var(--rh-red);
    font-size: 27px;
}

.rh-service-item h3 {
    display: block;
    margin: 0 0 6px;
    color: #111;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 950;
}

.rh-service-item p {
    margin: 0;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.55;
}

.rh-service-image {
    width: 100%;
    max-width: 185px;
    justify-self: end;
    object-fit: contain;
}

.rh-service-image--battery {
    max-width: 175px;
}

/* Why */

.rh-why {
    padding: 28px 0 0;
}

.rh-why .container {
    padding: 24px 44px 31px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f6 100%);
}

.rh-title {
    position: relative;
    margin: 0 0 30px;
    color: #111;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
}

.rh-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin: 12px auto 0;
    background: var(--rh-red);
}

.rh-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rh-why-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 17px;
    align-items: flex-start;
}

.rh-why-item span {
    color: var(--rh-red);
    font-size: 58px;
    line-height: 1;
}

.rh-why-item h3 {
    display: block;
    margin: 0 0 8px;
    color: #111;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 950;
}

.rh-why-item p {
    margin: 0;
    color: #161616;
    font-size: 13px;
    line-height: 1.55;
}

/* Price */

.rh-price {
    padding: 36px 0 0;
}

.rh-price-subtitle {
    max-width: 920px;
    margin: -16px auto 25px;
    color: #333;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
}

.rh-price-table {
    border: 1px solid var(--rh-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.035);
    overflow: hidden;
}

.rh-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
}

.rh-price-row + .rh-price-row {
    border-top: 1px solid #e6ebf1;
}

.rh-price-service {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.rh-price-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rh-red);
    font-size: 36px;
    flex: 0 0 56px;
}

.rh-price-service-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 2.35;
    shape-rendering: geometricPrecision;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rh-price-service strong {
    color: #101010;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.rh-price-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    text-align: right;
    color: var(--rh-red);
    flex-wrap: wrap;
}

.rh-price-prefix {
    font-size: 14px;
    font-weight: 900;
}

.rh-price-amount strong {
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
}

.rh-price-currency {
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.rh-price-note {
    margin: 12px 2px 60px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #111;
    font-size: 12px;
    line-height: 1.35;
}

.rh-price-note-icon {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 19px;
    flex: 0 0 19px;
    margin-top: 1px;
}

/* Fuel CTA */

.rh-fuel-cta {
    padding: 0 0 34px;
}

.rh-fuel-cta-box {
    min-height: 178px;
    padding: 22px 28px;
    border: 1px solid #1d1d1d;
    border-radius: 11px;
    background: linear-gradient(90deg, #090909 0%, #671919 42%, rgba(13,13,13,.7) 62%, rgba(13,13,13,.45) 80%),
        url("/assets/images/road-help/podvoz-topliva.webp");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    overflow: hidden;
}

.rh-fuel-cta-content {
    max-width: 760px;
}

.rh-fuel-cta-title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
    line-height: 1.14;
    font-weight: 950;
    text-transform: uppercase;
}

.rh-fuel-cta-title span {
    color: var(--rh-red);
}

.rh-fuel-cta-text {
    margin: 0 0 14px;
    color: rgba(255,255,255,.94);
    font-size: 15px;
    line-height: 1.35;
    max-width: 580px;
}

.rh-fuel-cta-call {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #ff2d36;
    background: linear-gradient(180deg, #ff382f 0%, #ed111b 100%);
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    transition: .2s ease;
}

.rh-fuel-cta-call:hover {
    transform: translateY(-1px);
}

.rh-fuel-cta-call svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.rh-price-card {
    min-height: 120px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) 255px 310px;
    align-items: center;
    gap: 28px;
    padding: 21px 38px;
    border: 1px solid var(--rh-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.035);
    margin-bottom: 60px;
}

.rh-price-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f2f5;
    color: var(--rh-red);
    font-size: 42px;
}

.rh-price-name strong {
    color: #111;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 950;
}

.rh-price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    color: var(--rh-red);
    white-space: nowrap;
}

.rh-price-value span {
    font-size: 20px;
    font-weight: 900;
}

.rh-price-value strong {
    font-size: 49px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.04em;
}

.rh-price-value b {
    font-size: 26px;
    font-weight: 950;
}

.rh-price-checks {
    margin: 0;
    padding: 0 0 0 31px;
    list-style: none;
    border-left: 1px solid #e1e5eb;
}

.rh-price-checks li {
    position: relative;
    padding-left: 25px;
    color: #111;
    font-size: 14px;
    line-height: 1.35;
}

.rh-price-checks li + li {
    margin-top: 13px;
}

.rh-price-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rh-red);
    font-weight: 950;
}


/* Responsive */

@media (max-width: 1120px) {
    .rh-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rh-services-grid {
        grid-template-columns: 1fr;
    }

    .rh-price-row {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .rh-price-amount {
        justify-content: flex-start;
        text-align: left;
    }

    .rh-fuel-cta-box {
        background-position: 72% center;
    }

    .rh-price-card {
        grid-template-columns: 90px 1fr 220px;
    }

    .rh-price-checks {
        grid-column: 2 / -1;
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .rh-why-grid {
        grid-template-columns: 1fr;
    }

    .rh-btn {
        width: 100%;
        min-width: 0;
    }

    .rh-service-body {
        grid-template-columns: 1fr;
    }

    .rh-service-image {
        justify-self: center;
    }

    .rh-why .container {
        padding: 24px 18px;
    }

    .rh-price-service strong {
        font-size: 16px;
    }

    .rh-price-amount strong {
        font-size: 28px;
    }

    .rh-price-currency {
        font-size: 16px;
    }

    .rh-price-prefix {
        font-size: 13px;
    }

    .rh-price-note {
        margin-bottom: 40px;
    }

    .rh-fuel-cta {
        padding-bottom: 22px;
    }

    .rh-fuel-cta-box {
        min-height: 0;
        padding: 18px 16px;
        background: linear-gradient(180deg, rgba(9,9,9,.95) 0%, rgba(9,9,9,.95) 100%),
            url("/assets/images/road-help/pricur-avto.webp");
        background-position: center;
    }

    .rh-fuel-cta-title {
        font-size: 18px;
    }

    .rh-fuel-cta-text {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .rh-fuel-cta-call {
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }

    .rh-price-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rh-price-icon {
        margin: 0 auto;
    }

    .rh-price-checks {
        text-align: left;
    }

    .rh-final-box {
        grid-template-columns: 1fr;
    }

    .rh-final h2 {
        font-size: 32px;
    }

    .rh-final p {
        font-size: 21px;
    }
}
