Чтобы стилизовать сайт под автомобильную тематику твоих картинок (черный, темно-серый фон, белый текст и яркие неоново-оранжевые акценты), я полностью переработал цветовую схему и тени в твоем CSS.

Я оставил HTML нетронутым и **сохранил блок с отзывами (WhatsApp) в оригинальном виде**, как ты и просил.

Замени весь свой старый CSS на этот:

```css
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* АВТОМОБИЛЬНАЯ ПАЛИТРА ПОД ФОТО */
    --main-bg: #121212; /* Глубокий темный фон */
    --primary-color: #FFFFFF; /* Белый текст для заголовков */
    --accent-color: #FF5A00; /* Ярко-оранжевый акцент (как лопасти вентилятора) */
    --btn-color: #FF5A00; /* Оранжевый цвет кнопки */
    --text-color: #E0E0E0; /* Светло-серый текст для описаний */
    
    /* ШРИФТЫ */
    --title-font: "Oswald", sans-serif; 
    --primary-font: "Roboto", sans-serif; 
}

body {
    font-family: var(--primary-font);
    background-color: #050505; /* Внешний фон (за пределами 430px) */
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: unset;
    outline: none;
}

img, video {
    width: 100%;
    display: block;
}

input, button, select {
    font: inherit;
    -webkit-appearance: none;
    border-radius: 0px;
}

.main-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 430px;
    background: var(--main-bg); 
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 90, 0, 0.15); /* Легкое оранжевое свечение по краям сайта */
}

.container { padding: 0 15px; }

.section { padding: 15px 0 !important; }

/* --- ТИПОГРАФИКА ЗАГОЛОВКОВ --- */
.main-title {
    color: var(--primary-color);
    font-size: 38px; 
    font-family: var(--title-font);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 5px;
}

.section-title {
    color: var(--primary-color);
    font-size: 32px;
    font-family: var(--title-font);
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- КНОПКА ЗАКАЗА --- */
.main-btn {
    display: block;
    width: 90%;
    padding: 20px 10px;
    font-size: 19px;
    font-family: var(--title-font);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(145deg, #FF6A00, #E65000); /* Градиентная оранжевая кнопка */
    border-radius: 12px;
    margin: 10px auto 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    border: none;
}

.main-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 10px rgba(255, 90, 0, 0.3);
}

/* --- БЛОК С ЦЕНОЙ --- */
.price-box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #1A1A1A;
    border-radius: 15px;
    padding: 15px 10px;
    margin: 15px 15px 25px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.old-price, .new-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-box .label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-weight: 500;
}

.old-price .old {
    color: #777777;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 22px;
}

.new-price .new {
    color: var(--accent-color);
    font-weight: 900;
    font-size: 28px;
    font-family: var(--title-font);
}

.price-box .divider {
    height: 40px;
    width: 2px;
    background-color: #333;
}

/* --- КАРТИНКИ --- */
.container-images {
    width: 100%;
    padding: 0 10px;
}
.description-item {
    width: 100%;
    margin-bottom: 15px;
    display: block;
}
.description-item img, .description-item video {
    width: 100%;
    display: block;
    border: 1px solid #333333; 
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* --- ФОРМА ЗАКАЗА --- */
.order-form {
    background: #1A1A1A;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.order-form .field-wrap {
    margin-bottom: 15px;
}

.order-form .field-wrap label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 5px;
}

.order-form .field-wrap input, 
.order-form .field-wrap select {
    width: 100%;
    background-color: #222222;
    border: 1px solid #444444;
    padding: 16px;
    font-size: 16px;
    border-radius: 10px;
    color: #FFFFFF;
    transition: 0.3s;
}

.order-form .field-wrap input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #2A2A2A;
    box-shadow: 0 0 8px rgba(255, 90, 0, 0.3);
}

/* --- ШАГИ "ЯК ЗАМОВИТИ" --- */
.steps { padding: 0 15px; }
.step {
    display: flex;
    align-items: flex-start;
    padding-bottom: 25px;
    position: relative;
    gap: 15px;
}
.step-number {
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-family: var(--title-font);
    font-size: 18px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.4);
}
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 35px;
    width: 2px;
    height: calc(100% - 35px);
    background-color: #333333;
    z-index: 0;
}
.step-content h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: var(--primary-color);
}
.step-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

/* --- ОРИГИНАЛЬНЫЕ ОТЗЫВЫ WTSP (ОСТАВЛЕНЫ БЕЗ ИЗМЕНЕНИЙ) --- */
.reviews {
    padding: 30px 0;
    padding-top: 10px !important;
}

.wtsp_item {
    max-width: 410px;
    min-height: 770px;
    margin: 0 auto;
    background: url(../images/ADhTyuE4T3ar_1.jpg) 50% 0% repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 20px 20px;
    border: 1px solid #a2a2a2;
    box-shadow: 1px 0px 2px #909090;
    width: 100% !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
}

.wtsp_item .info {
    background: #ffffff url(../images/XS6fbttaUIgm_1.png) 3px 50% no-repeat;
    padding: 16px 110px 13px 50px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0px 0px;
    text-align: left;
    background-size: contain;
}

.wtsp_item .info>img {
    float: left;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    object-fit: cover;
    border: 1px solid #0f3a33;
}

.wtsp_item .info .text {
    overflow: hidden;
    padding-left: 8px;
    color: #333;
}

.wtsp_item .info .text>p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    margin: 0;
}

.wtsp_item .info .text>small {
    font-size: 13px;
    line-height: 18px;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.wtsp_item .date {
    text-align: center;
    margin-top: 10px;
}

.wtsp_item .date>span {
    display: inline-block;
    vertical-align: top;
    background: #d4ebf3;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 28px;
    color: #3f5250;
    padding: 0 8px;
    border-radius: 7px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.wtsp_item .message_container {
    margin-top: 10px;
    padding: 0 12px;
}

.wtsp_item .message {
    display: inline-block;
    max-width: 295px;
    min-width: 70px;
    padding: 6px 10px;
    position: relative;
    font-size: 18px;
    line-height: 22px;
    color: #212121;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.wtsp_item .message.client {
    background: #fff;
    border-radius: 0 6px 6px 6px;
}

.wtsp_item .message.client:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 0;
    left: -6px;
}

.wtsp_item .message>p {
    margin-bottom: 5px;
    text-align: left;
}

.wtsp_item .message>img {
    display: block;
    margin: 6px auto;
    border-radius: 4px;
}

.wtsp_item .message .time {
    text-align: right;
    font-size: 14px;
    line-height: 15px;
    color: #989898;
    padding: 0 5px;
}

.wtsp_item .message:last-child {
    margin-bottom: 0;
}

.wtsp_item .message.author {
    background: #c8e2fd;
    border-radius: 10px 0 10px 10px;
    padding: 6px 10px;
    float: right;
}

.wtsp_item .message.author:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #c8e2fd transparent transparent transparent;
    position: absolute;
    top: 0;
    right: -6px;
}

.wtsp_item .message.author .time {
    padding: 0;
}

.wtsp_item .message.author .time:after {
    content: "";
    width: 18px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 4px;
}

.wtsp_item:after {
    content: "";
    width: 390px;
    height: 57px;
    background: url(../images/LKvurt5AgpH6_1.png) 50% 50% no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7px;
    background-size: contain;
}

.wtsp_rev .owl-prev,
.wtsp_rev .owl-next {
    width: 47px;
    height: 47px;
    background: #000000 url(../images/g9nXtD5LDSge_1.jpg) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -23px;
}

.wtsp_rev .owl-prev {
    background-position: left center;
    -webkit-border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    left: -15px;
}

.wtsp_rev .owl-next {
    background-position: right center;
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    right: -15px;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
    position: relative;
}
.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

/* --- ФУТЕР --- */
.footer {
    background: #050505;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #222222;
}
.policy {
    display: block;
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    margin-bottom: 8px;
}

/* --- АНИМАЦИЯ СТРОКИ --- */
@keyframes marqueeAnimation {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.marquee-container { overflow: hidden; }
.marquee-text {
    animation: marqueeAnimation 12s linear infinite;
    white-space: nowrap;
}

/* --- УЛУЧШЕННЫЙ ЗАГОЛОВОК --- */
.premium-title {
    font-family: var(--primary-font);
    font-size: clamp(22px, 7vw, 32px); /* Чуть уменьшил минимальный размер */
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin: 15px 0 15px;
    letter-spacing: -0.5px;
    white-space: normal; /* Разрешаем перенос текста на новую строку */
    line-height: 1.2; /* Добавляем межстрочный интервал, чтобы 2 строки не слипались */
}

@media (min-width: 390px) {
    .premium-title {
        font-size: 32px;
    }
    .form-main-title {
        font-size: 28px; 
    }
}

/* --- ПРЕМИАЛЬНЫЙ БЛОК ЦЕНЫ (СТИЛИЗОВАН ПОД НЕОНОВЫЕ РАМКИ) --- */
.premium-price-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #151515;
    border-radius: 20px;
    padding: 22px 10px;
    margin: 0 15px 35px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 90, 0, 0.25), inset 0 0 10px rgba(255, 90, 0, 0.1);
}

/* Красный ярлык скидки */
.discount-badge {
    position: absolute;
    top: -16px;
    right: 20px;
    background: #D32F2F; 
    color: #ffffff;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 15px;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

.premium-price-box .label {
    font-size: 14px; /* Было 12px */
    color: #AAAAAA;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.old-price-col .old {
    color: #777777;
    font-weight: 700;
    font-size: 28px; /* Было 24px */
    text-decoration: line-through;
    text-decoration-color: #D32F2F; 
    text-decoration-thickness: 2px;
}

.new-price-col .new {
    color: var(--accent-color);
    font-weight: 900;
    font-size: 40px; /* Было 34px */
    font-family: var(--title-font);
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 90, 0, 0.4);
}

.premium-price-box .divider {
    height: 50px;
    width: 2px;
    background-color: #333333; 
    border-radius: 2px;
}

/* --- КНОПКА С АНИМАЦИЕЙ --- */
.pulse-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #FF6A00, #E65000); 
    padding: 16px 10px;
    border-radius: 16px;
    animation: btnPulse 2.5s infinite; 
    border: none;
}

.pulse-btn .btn-text {
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #FFF;
}

.pulse-btn .btn-subtext {
    font-size: 13px;
    font-family: var(--primary-font);
    font-weight: 400;
    color: #FFF0E6; 
    margin-top: 5px;
    text-transform: none;
    letter-spacing: 0;
}

@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 8px 15px rgba(255, 90, 0, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 12px 25px rgba(255, 90, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 8px 15px rgba(255, 90, 0, 0.3); }
}

/* --- ЗАГОЛОВОК ФОРМЫ --- */
.form-main-title {
    font-family: var(--title-font); 
    font-size: 28px; /* Было 24px */
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 12px; 
    text-transform: uppercase;
    white-space: normal; 
    letter-spacing: -0.5px; 
    line-height: 1.2;
}

/* --- КАРТОЧКА ФОРМЫ --- */
.order-card {
    background: #161616;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid #333333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 18px; /* Было 16px */
    font-weight: 800; 
    color: #FFFFFF;
    margin-bottom: 10px;
    padding-left: 5px;
}

@media (max-width: 390px) {
    .form-main-title {
        font-size: 26px; 
        letter-spacing: -1px;
    }
}

.custom-input {
    width: 100%;
    background-color: #0A0A0A; 
    border: 1px solid #444444;
    border-radius: 12px;
    padding: 18px 15px;
    font-size: 18px; /* Было 16px */
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-color: var(--accent-color); 
    background-color: #111111;
    box-shadow: 0 0 8px rgba(255, 90, 0, 0.3);
}

/* --- КНОПКА ВНУТРИ ФОРМЫ --- */
.form-btn {
    width: 100% !important; 
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    padding: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-main-text {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    white-space: normal !important; 
    color: #FFFFFF !important;
}

.btn-subtext-form {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
    color: #FFF0E6 !important; 
    letter-spacing: normal !important;
    white-space: normal !important;
}

.mockup-btn {
    font-size: 26px !important; 
    font-weight: 900 !important; 
    letter-spacing: 0.5px; 
}

.order-section-new {
    padding-top: 5px !important; 
    padding-bottom: 15px !important;
}

.reviews .section-title {
    margin-bottom: 15px !important;
}

@media (max-width: 390px) {
    .mockup-btn {
        font-size: 19px !important;
    }
    .btn-subtext-form,
    .pulse-btn .btn-subtext {
        font-size: 16px !important;
    }
    .order-card {
        padding: 20px 15px;
    }
}

.wtsp_rev .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.wtsp_rev .owl-item {
    display: flex !important;
    float: none !important; 
}

.reviews .section-title {
    margin-bottom: 5px !important; 
}

.wtsp_rev {
    margin-top: 0 !important; 
}

/* --- ПРЕМІАЛЬНА БІГУЧА СТРІЧКА --- */
.premium-marquee {
    background-color: #0A0A0A; 
    color: #FFFFFF; 
    padding: 12px 0;
    border-bottom: 2px solid var(--accent-color); 
    box-shadow: 0 4px 15px rgba(255, 90, 0, 0.2);
    position: relative;
    z-index: 10;
}

.premium-marquee .marquee-text {
    font-family: var(--primary-font);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    animation: marqueeAnimation 15s linear infinite; 
}

.premium-marquee .highlight {
    color: var(--accent-color); 
    font-weight: 900;
    font-size: 17px; 
    text-shadow: 0 0 8px rgba(255, 90, 0, 0.5);
}

/* --- СТИЛИ ДЛЯ ВЫПАДАЮЩИХ СПИСКОВ (Унаследованы от старого) --- */
.np-select.open { z-index: 7 !important; }
.np-select { width: 100% !important; height: unset !important; }
.np-select__input { border: 1px solid #444 !important; background: #222; color: #FFF; }
.np-select__button { padding: .5rem 1rem !important; border-radius: 0px !important; height: unset !important; min-height: calc(1.5em + 1rem + 2px) !important; line-height: 1.25 !important; border: 1px solid #444 !important; background: #222; color: #FFF;}
.np-select__button .text { display: block !important; text-align: left !important; font-size: 1.25rem; overflow: hidden; }

/* Карусель Slick-dots */
.slick-dots { left: 0; }
.slick-dots li button:before { font-size: 12px; color: var(--accent-color); }
.slick-next:before, .slick-prev:before { font-size: 27px; color: var(--accent-color); }
.slick-next { right: -3px; }
.slick-prev { left: -8px; z-index: 2; }

```