* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0a0a0a;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1260px, 100% - 32px);
    margin: 0 auto;
}
.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #a60918 0%, #980714 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 20px 45px rgba(122, 5, 17, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(122, 5, 17, 0.45);
}
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
            radial-gradient(circle at 78% 32%, rgba(35, 56, 109, 0.28), transparent 24%),
            radial-gradient(circle at 88% 48%, rgba(118, 17, 24, 0.18), transparent 18%),
            linear-gradient(90deg, #020202 0%, #020202 42%, #05070d 68%, #04060b 100%);
    color: #fff;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    /*background:*/
    /*        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.05) 100%);*/
    background: url("/images/hero-bg.jpg") no-repeat ;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    padding: 30px 15px 30px;
    min-height: 100vh;
}

.hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 70px;
}

.hero__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
}

.hero__logo-text {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero__logo-icon {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.hero__logo-icon img {
    width: 34px;
    filter: brightness(0) invert(1);
}

.hero__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero__phone {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
}

.hero__callback {
    margin-top: 8px;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: calc(100vh - 200px);
}

.hero__left {
    max-width: 700px;
    padding-bottom: 60px;
}

.hero__title {
    margin: 0 0 34px;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -1.6px;
}

.hero__text {
    margin: 0 0 34px;
    max-width: 660px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(122, 5, 17, 0.45);
}

.hero__btns {
    display: flex;
    flex-wrap: wrap;
}

.hero__right {
    position: relative;
    flex: 1;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}


@media (max-width: 1200px) {
    .hero__container {
        padding: 32px 28px;
    }

    .hero__content {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .hero__left {
        max-width: 100%;
        padding-bottom: 0;
    }

    .hero__right {
        width: 100%;
        min-height: 420px;
    }

    .hero__car {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
    }

    .hero__btn {
        min-width: 320px;
        min-height: 76px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero__container {
        padding: 24px 0;
    }

    .hero__top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 150px;
    }

    .hero__contacts {
        align-items: flex-start;
    }

    .hero__logo-text {
        font-size: 26px;
    }

    .hero__phone {
        font-size: 24px;
    }

    .hero__callback {
        font-size: 15px;
    }

    .hero__title {
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.4px;
    }

    .hero__text {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero__btn {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        min-height: 56px;
        padding: 14px 18px;
        font-size: 16px;
    }

    .hero__right {
        min-height: 260px;
    }

    .hero__chat {
        width: 62px;
        height: 62px;
        right: 20px;
        bottom: 20px;
    }
}

/* INSPECTION BLOCK */

.inspection {
    padding: 60px 0 40px;
    background: #f3f3f3;
}

.inspection__title {
    margin: 0 0 54px;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.inspection__layout {
    display: grid;
    grid-template-columns: minmax(500px, 720px) minmax(280px, 520px);
    align-items: center;
    gap: 36px;
}

.inspection-card {
    position: relative;
    padding: 40px 20px;
    background: #f7f7f7;
    border: 12px solid #ececec;
}

.inspection-card__header {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 44px;
}

.inspection-card__header h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.inspection-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 15px;
}

.inspection-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.inspection-item__icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #555;
    filter: grayscale(1);
}
.inspection-item__icon img{
    width: 30px;
}

.inspection-item__text {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    color: #333;
}

.inspection-card__more {
    margin-top: 38px;
    color: #990c19;
    font-size: 16px;
    font-weight: 800;
}

.inspection__car-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(140px);
    will-change: transform, opacity;
}

.inspection__car {
    max-width: 100%;
    width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
}

.inspection__car-wrap.is-visible {
    animation: car-drive-in 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes car-drive-in {
    0% {
        opacity: 0;
        transform: translateY(140px);
    }
    70% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .inspection__car-wrap {
        opacity: 1;
        transform: none;
    }

    .inspection__car-wrap.is-visible {
        animation: none;
    }
}
.inspection-card__inner {
    margin-bottom: 40px;
}

.inspection__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 18px 48px;
    border-radius: 999px;
    background: linear-gradient(180deg, #a60918 0%, #980714 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 1300px) {
    .inspection__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inspection__car-wrap {
        order: 2;
    }

    .inspection-card {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .inspection__container {
        width: min(1260px, 100% - 24px);
    }

    .inspection {
        padding: 40px 0 30px;
    }

    .inspection__title {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .inspection-card {
        border-width: 8px;
    }

    .inspection-card__inner {
        padding: 28px 18px 24px;
    }

    .inspection-card__header {
        gap: 16px;
        margin-bottom: 28px;
    }

    .inspection-card__header h3 {
        font-size: 28px;
    }


    .inspection-card__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .inspection-item__text {
        font-size: 18px;
    }

    .inspection__car {
        width: 220px;
    }
}


.reasons {
    padding: 96px 0;
    background: #ffffff;
    color: #111827;
}

.reasons__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.reasons__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.reasons__label {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.reasons__title {
    margin: 0;
    max-width: 840px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.reasons__subtitle {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.55;
    color: #4b5563;
    font-weight: 500;
}

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

.reason-card {
    padding: 24px 22px 22px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.reason-card:hover {
    border-color: #d1d5db;
    background: #fcfcfd;
}

.reason-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.reason-card__icon {
    display: none;
}

.reason-card__number {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.08em;
}

.reason-card__title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
}

.reason-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #4b5563;
    font-weight: 500;
}

.reasons__cta {
    margin-top: 26px;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #111827;
}

.reasons__cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reasons__cta-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #6b7280;
    text-transform: uppercase;
}

.reasons__cta-title {
    margin: 0;
    max-width: 700px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

.reasons__cta-note {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    font-weight: 500;
}

.reasons__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 56px;
}

.reasons__cta-btn:hover {

}

@media (max-width: 1200px) {
    .reasons__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .reasons__badge {
        max-width: 100%;
    }

    .reasons__cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 980px) {
    .reasons__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reasons {
        padding: 64px 0;
    }

    .reasons__title {
        font-size: 34px;
    }

    .reasons__subtitle {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.6;
    }

    .reasons__badge {
        min-width: 0;
        width: 100%;
    }

    .reason-card {
        padding: 20px;
        border-radius: 10px;
    }

    .reason-card__meta {
        margin-bottom: 8px;
    }

    .reason-card__number {
        font-size: 13px;
    }

    .reason-card__title {
        font-size: 19px;
    }

    .reason-card__text {
        font-size: 15px;
    }

    .reasons__cta {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .reasons__cta-title {
        font-size: 22px;
    }

    .reasons__cta-btn {
        width: 100%;
        min-width: 100%;
        min-height: 54px;
    }
}

/* SERVICES BLOCK */

.services {
    padding: 96px 0;
    background: #eef1f4;
    color: #111827;
}

.services__container {
    max-width: 1240px;
}

.services__head {
    max-width: 760px;
    margin-bottom: 36px;
}

.services__label {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.services__title {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.services__subtitle {
    margin: 16px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.services__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.services__item {
    min-width: 0;
}

.service-card {
    height: 100%;
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #d6dbe2;
    background: #f8fafc;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.service-card:hover {
    border-color: #c3cbd6;
    background: #ffffff;
}

.service-card__icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e6ebf1;
}

.service-card__icon {
    width: 30px;
    height: 30px;
    opacity: 0.75;
    filter: brightness(0) saturate(100%) invert(11%) sepia(92%) saturate(3798%) hue-rotate(344deg) brightness(78%) contrast(101%);
}

.service-card__content {
    min-width: 0;
}

.service-card__title {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.service-card__price {
    margin: 8px 0 14px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.service-card__checks {
    margin: 10px 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-card__checks li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.45;
}

.service-card__checks li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6b7280;
}

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

@media (max-width: 768px) {
    .services {
        padding: 64px 0;
    }

    .services__subtitle {
        font-size: 16px;
    }

    .service-card {
        padding: 18px;
        gap: 14px;
    }

    .service-card__icon-wrap {
        width: 44px;
        height: 44px;
    }

    .service-card__icon {
        width: 26px;
        height: 26px;
    }

    .service-card__title {
        font-size: 22px;
    }

    .service-card__price {
        margin: 8px 0 10px;
        font-size: 14px;
    }

    .service-card__text,
    .service-card__checks li {
        font-size: 15px;
    }
}

/* REVIEW + FOOTER */

.review {
    padding: 88px 0;
    background: #f6f7f9;
    color: #111827;
}

.review__container {
    max-width: 1240px;
}

.review__head {
    max-width: 760px;
    margin-bottom: 28px;
}

.review__label {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.review__title {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: #111827;
    font-weight: 800;
}

.review__subtitle {
    margin: 14px 0 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.55;
}

.review__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.review-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d6dbe2;
    background: #ffffff;
}

.review-card__media {
    position: relative;
    display: block;
    min-height: 170px;
    overflow: hidden;
}

.review-card__preview {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.review-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #111827;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d1d5db;
}

.review-card__content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-card__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
    color: #111827;
    font-weight: 700;
}

.review-card__text {
    margin: 14px 0 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.review-card__meta {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 12px;
}

.review-card__btn {
    margin-top: auto;
    width: fit-content;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer {
    background: #eef1f4;
    border-top: 1px solid #d6dbe2;
}

.footer__container {
    padding-top: 28px;
    padding-bottom: 28px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: center;
}

.footer__name {
    margin: 0;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer__text {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.footer__nav,
.footer__contacts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__nav a,
.footer__contacts a {
    color: #374151;
    font-size: 14px;
    text-decoration: none;
}

.footer__nav a:hover,
.footer__contacts a:hover {
    color: #111827;
}

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

    .review-card__media {
        min-height: 180px;
    }

    .footer__container {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .review {
        padding: 64px 0;
    }

    .review__subtitle {
        font-size: 16px;
    }

    .review-card__content {
        padding: 18px;
    }

    .review-card__title {
        font-size: 16px;
    }

    .review__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(1260px, 100% - 20px);
    }

    .hero__top {
        gap: 16px;
        margin-bottom: 150px;
    }

    .hero__logo-text {
        font-size: 22px;
    }

    .hero__phone {
        font-size: 20px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__text {
        font-size: 15px;
    }

    .inspection {
        padding: 32px 0 20px;
    }

    .inspection__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .inspection-card {
        padding: 14px 10px;
        border-width: 6px;
    }

    .inspection-card__inner {
        padding: 14px 10px 12px;
        margin-bottom: 18px;
    }

    .inspection-card__header h3 {
        font-size: 22px;
    }

    .inspection-item {
        gap: 12px;
    }

    .inspection-item__icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .inspection-item__text {
        font-size: 15px;
    }

    .inspection__btn {
        width: 100%;
        margin-right: 0;
        padding: 14px 18px;
    }

    .reasons {
        padding: 44px 0;
    }

    .reasons__container {
        padding: 0 10px;
    }

    .reasons__title {
        font-size: 28px;
    }

    .reasons__cta-title {
        font-size: 20px;
    }

    .services {
        padding: 44px 0;
    }

    .services__title {
        font-size: 28px;
    }

    .service-card {
        padding: 14px;
        flex-direction: column;
        gap: 10px;
    }

    .service-card__icon-wrap {
        width: 40px;
        height: 40px;
    }

    .service-card__title {
        font-size: 20px;
    }
}
