*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 101px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 47px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.2px;
    color: #000;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.85;
}

.btn--gold {
    background: linear-gradient(to right, #e3bf74 0%, #f6ead1 47.6%, #e3bf74 99.5%);
}

.hero {
    padding-top: 56px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero__logo {
    margin-bottom: 77px;
    text-align: center;
}

.hero__logo img {
    width: 265px;
    height: 87px;
    margin: 0 auto;
}

.hero__content {
    display: flex;
    align-items: flex-start;
    gap: 73px;
    justify-content: space-between;
}

.hero__text {
    flex-shrink: 0;
    max-width: 566px;
}

.hero__title {
    font-size: 110px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.2px;
    background: linear-gradient(115deg, #e3bf74 3.72%, #ebca83 47.22%, #f3d28f 83.8%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 40px;
    max-width: 519px;
}

.hero__image {
    flex: 1;
    max-width: 597px;
    height: 613px;
    border-radius: 0;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services {
    padding-bottom: 120px;
}

.services__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 5px;
}

.services__subtitle {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    color: #e3bf74;
    margin-bottom: 46px;
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.brands__item {
    background: #fff;
    border-radius: 12px;
    min-height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.brands__img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .brands__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


.service-card {
    background-color: #1b1b1d;
    border-radius: 10px;
    padding: 21px 15px 29px 21px;
    min-height: 184px;
    position: relative;
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 19px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 19px;
}

.service-card__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.service-card__icon {
    width: 71px;
    height: 61px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.service-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon--1 {
    object-position: 0% 10%;
}

.service-icon--2 {
    object-position: 47% 10%;
}

.service-icon--3 {
    object-position: 12% 78%;
}

.service-icon--4 {
    object-position: 60% 75%;
}

.services__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.service-card--wide {
    min-height: 184px;
    position: relative;
    overflow: hidden;
}

.service-card__icon-bottom {
    position: absolute;
    right: 18px;
    bottom: 0;
    width: 98px;
    height: 103px;
}

.service-card__icon-bottom img {
    width: 100%;
    height: 100%;
}

.services__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-card--tall {
    min-height: 279px;
}

.services__highlight {
    padding-top: 0;
}

.services__highlight p {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.25;
    color: #e3bf74;
}

.tradein {

    padding-bottom: 80px;
}

.tradein__content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.tradein__text {
    flex: 1;
    max-width: 600px;
}

.tradein__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 18px;
}

.tradein__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
}

.tradein__highlight {
    font-weight: 700;
    color: #e3bf74;
}

.tradein__image {
    flex-shrink: 0;
    width: 529px;
    position: relative;
}

.tradein__image img {
    width: 100%;
    border-radius: 0;
}

.tradein__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 117px;
    background: linear-gradient(to top, rgb(0, 0, 0) 4%, rgba(0, 0, 0, 0) 95%);
}

.brands {
    padding-top: 60px;
    padding-bottom: 100px;
}

.brands__content {
    display: flex;
    gap: 57px;
    align-items: flex-start;
}

.brands__image {
    flex-shrink: 0;
    max-width: 583px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.brands__image img {
    width: 100%;
}

.brands__image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 52px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 4%, rgb(0, 0, 0) 95%);
    z-index: 1;
}

.brands__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 78px;
    background: linear-gradient(to top, rgb(0, 0, 0) 4%, rgba(0, 0, 0, 0) 95%);
    z-index: 1;
}

.brands__text {
    flex: 1;
}

.brands__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 18px;
}

.brands__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 18px;
}

.brands__grid {
    margin-bottom: 18px;
}

.brands__grid img {
    width: 100%;
    border-radius: 3px;
}

.brands__cta-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 19px;
}

.clients {
    padding-bottom: 120px;
}

.clients__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
}

.clients__subtitle {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    max-width: 549px;
    margin-bottom: 60px;
}

.clients__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

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

.clients__item {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.clients__item:last-child {
    border-bottom: none;
}

.clients__item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
}

.clients__item-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.trust {
    padding-bottom: 105px;
}

.trust__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 40px;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
}

.trust__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust__icon {
    width: 22px;
    height: 22px;
}

.trust__icon img {
    width: 100%;
    height: 100%;
}

.trust__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.contact {
    padding-bottom: 170px;
    position: relative;
}

.contact__watermark {
    margin-bottom: -120px;
    position: relative;
    z-index: 0;
}

.contact__watermark img {
    width: 100%;
    max-width: 1233px;
    margin: 0 auto;
    display: block;
}

.contact__card {
    background-color: #eeeff0;
    border-radius: 10px;
    padding: 33px 30px 47px 65px;

}
.contact__wrapper {

    display: flex;
    gap: 75px;
    position: relative;
    z-index: 1;
}
.contact__left {
    flex: 1;
    max-width: 520px;
}

.contact__title {
    width: 80%;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.13;
    color: #000;
    margin-bottom: 20px;
}
.contact__form >button.btn.btn--gold {
    width: 250px;
    padding: 19px 14px;
}
.contact__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.13;
    color: #000;
    margin-bottom: 30px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact__input {
    width: 480px;
    max-width: 100%;
    height: 56px;
    border-radius: 5px;
    border: none;
    background: #fff;
    padding: 0 27px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    outline: none;
}

.contact__input::placeholder {
    color: #878787;
}

.contact__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-top: -6px;
}

.contact__checkbox input {
    display: none;
}

.contact__checkbox-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1px solid #878787;
    background: #fff;
    margin-top: 1px;
    position: relative;
}

.contact__checkbox input:checked + .contact__checkbox-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #e3bf74;
}

.contact__checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: #878787;
}

.contact__link {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 4px;
}

.contact__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 225px;
}

.contact__phone-icon {
    width: 128px;
    height: 128px;
    margin-bottom: 17px;
}

.contact__phone-icon img {
    width: 100%;
    height: 100%;
}

.contact__manager {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.13;
    color: #1b1b1d;
    margin-bottom: 12px;
}

.contact__phone {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.13;
    color: #1b1b1d;
    margin-bottom: 16px;
    display: block;
}

.contact__phone:hover {
    color: #e3bf74;
}

.contact__privacy {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    color: #1b1b1d;
    letter-spacing: -0.18px;
}

.footer {
    padding: 30px 0 50px;
    text-align: center;
}

.footer__content {
    display: flex;
    justify-content: center;
}

.footer__logo img {
    width: 180px;
    height: auto;
    margin: 0 auto;
    opacity: 0.3;
}
label.universal-form__label {
    display: none;
}
.universal-form__fields {
    gap: 20px;
    display: flex;
    flex-direction: column;
}
span.universal-form__error {
    color: black;
}
.universal-form__message.success {
    background: #ffffff;
    padding: 10px;
    color: green;
}

@media (max-width: 1280px) {
    .container {
        padding: 0 60px;
    }

    .hero__title {
        font-size: 90px;
    }

    .hero__image {
        height: 500px;
    }

    .services__title,
    .services__subtitle,
    .tradein__title,
    .brands__title,
    .clients__title,
    .trust__title,
    .contact__title {
        font-size: 38px;
    }

    .services__highlight p {
        font-size: 38px;
    }
}

@media (max-width: 1190px) {
    .container {
        padding: 0 40px;
    }

    .hero__title {
        font-size: 72px;
    }

    .hero__content {
        gap: 30px;
    }

    .hero__image {
        height: 420px;
        max-width: 480px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services__row {
        gap: 20px;
    }

    .services__bottom {
        gap: 20px;
    }

    .tradein__content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .tradein__text {
        max-width: 100%;
    }

    .tradein__image {
        width: 100%;
        max-width: 529px;
    }

    .brands__content {
        flex-direction: column;
        gap: 40px;
    }

    .brands__image {
        width: 100%;
        max-width: 583px;
    }

    .trust__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .contact__watermark {
        margin-bottom: -80px;
    }

    .contact__card {
        flex-direction: column;
        gap: 40px;
        padding: 30px 40px;
    }

    .contact__right {
        padding-top: 0;
    }

    .contact__left {
        max-width: 100%;
    }
}

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

    .hero {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .hero__logo {
        margin-bottom: 40px;
    }
    .clients {
        padding-bottom: 60px;
    }
    .hero__logo img {
        width: 200px;
    }
    .contact__wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .contact__form {
        gap: 20px;
    }
    .hero__content {
        flex-direction: column;
    }

    .hero__title {
        font-size: 56px;
    }

    .hero__subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .hero__image {
        max-width: 100%;
        height: 350px;
    }

    .services {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .services__title,
    .services__subtitle,
    .tradein__title,
    .brands__title,
    .clients__title,
    .trust__title,
    .contact__title {
        font-size: 30px;
    }

    .services__subtitle {
        margin-bottom: 30px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services__bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services__highlight p {
        font-size: 30px;
    }

    .tradein {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .tradein__image {
        max-width: 100%;
    }

    .brands {
        padding-top: 0;
        padding-bottom: 78px;
    }

    .brands__image {
        max-width: 100%;
        margin-top: 0;
    }

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

    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact__watermark {
        margin-bottom: -60px;
    }

    .contact__card {
        padding: 24px 20px;
    }

    .contact__input {
        width: 100%;
    }

    .btn {
        font-size: 18px;
        height: 54px;
        padding: 0 30px;
    }
}
@media (max-width: 520px) {
    .trust {
        padding-bottom: 35px;
    }
    .contact__watermark {
        margin-bottom: -27px;
    }
    .brands__img { max-height: 56px; }
}
@media (max-width: 480px) {
    .hero__title {
        font-size: 42px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__image {
        height: 260px;
    }
    .services {
        padding-top: 20px;
    }
    .services__grid, .services__row{
        margin-bottom: 16px;
    }
    .services__title,
    .services__subtitle,
    .tradein__title,
    .brands__title,
    .clients__title,
    .trust__title,
    .contact__title {
        font-size: 26px;
    }
    .clients__item-desc, .service-card__desc, .tradein__desc {
        font-size: 16px;
    }
    .tradein {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    span.tradein__highlight {
        display: block;
        margin: 10px 0;
    }
    .contact__form >button.btn.btn--gold {
        width: 100%;
        margin: 10px 0;
    }
    span.contact__checkbox-text, .contact__privacy {
        font-size: 14px;
    }
    .services__highlight p {
        font-size: 26px;
    }
    .hero {
        padding-top: 30px;
        padding-bottom: 0;
    }
    .trust__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact__phone-icon {
        width: 80px;
        height: 80px;
    }

    .btn {
        width: 100%;
        font-size: 16px;
        height: 50px;
    }
}