/* ==========================================
   ИМПОРТ ШРИФТОВ
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap');

/* ==========================================
   ОБЩИЕ СТИЛИ
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ==========================================
   ХЕДЕР И НАВИГАЦИЯ
   ========================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 2px solid rgba(230, 57, 70, 0.3);
    padding: 1rem 2rem;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.logo_text {
    color: #E63946;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(230, 57, 70, 0.5);
}

.menu_parts {
    gap: 2rem;
}

.menu_item {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.menu_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #E63946;
    transition: width 0.3s ease;
}

.menu_item:hover {
    color: #E63946 !important;
}

.menu_item:hover::after {
    width: 80%;
}

.menu_item.cta-link {
    background: linear-gradient(135deg, #E63946, #FF6B6B);
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.menu_item.cta-link::after {
    display: none;
}

.menu_item.cta-link:hover {
    background: linear-gradient(135deg, #FF6B6B, #E63946);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(230, 57, 70, 0.6);
}

.navbar-toggler {
    border-color: #E63946;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230, 57, 70, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   ОСНОВНОЙ КОНТЕЙНЕР
   ========================================== */
.container_index {
    margin-top: 80px;
    padding: 0;
    max-width: 100%;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, transparent, #E63946, transparent);
}

/* ==========================================
   БАННЕР (HERO SECTION)
   ========================================== */
.banner_wrapper {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(15, 52, 96, 0.2) 100%);
    border-radius: 30px;
    margin: 30px 3%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
    padding: 60px 0;
    border: 2px solid rgba(230, 57, 70, 0.3);
}

/* Новогодняя гирлянда */
.banner_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, 
        #E63946 0%, #FFD700 8%, #E63946 16%, 
        #00FF00 24%, #E63946 32%, #FFD700 40%,
        #E63946 48%, #00FF00 56%, #E63946 64%,
        #FFD700 72%, #E63946 80%, #00FF00 88%, 
        #E63946 96%, #FFD700 100%);
    animation: christmasLights 3s linear infinite;
}

@keyframes christmasLights {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.banner_container {
    padding: 0 3rem;
}

.banner_text h1 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
}

.banner_text h1 .highlight {
    color: #E63946;
    display: inline-block;
    position: relative;
}

.banner_text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #E63946, #FFD700);
    border-radius: 2px;
}

.info {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Таймер акции */
.promo-timer {
    background: rgba(230, 57, 70, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(230, 57, 70, 0.4);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.promo-timer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-timer-content i {
    font-size: 2rem;
    color: #FFD700;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.promo-timer-label {
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-timer-date {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

/* Блок с ценами */
.price-block {
    background: rgba(230, 57, 70, 0.15);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid rgba(230, 57, 70, 0.4);
    box-shadow: 0 10px 35px rgba(230, 57, 70, 0.3);
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.old-price span {
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 3rem;
    color: #E63946;
    font-weight: 900;
    display: block;
    margin: 0.5rem 0;
    text-shadow: 0 3px 15px rgba(230, 57, 70, 0.6);
    line-height: 1;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E63946, #FF6B6B);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(230, 57, 70, 0.8);
    }
}

/* Изображение товара */
.banner_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: all 0.5s ease;
    border: 3px solid rgba(230, 57, 70, 0.3);
}

.banner_img img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 70px rgba(230, 57, 70, 0.5);
}

.mobile-product-image {
    text-align: center;
    margin: 2rem 0;
}

.mobile-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(230, 57, 70, 0.3);
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
}

/* ГЛАВНАЯ КНОПКА */
.button_test {
    display: inline-block;
    padding: 18px 50px;
    font-weight: 800;
    color: white !important;
    background: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);
    border-radius: 50px;
    border: none;
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
    transition: all 0.4s ease;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.button_test::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.button_test:hover::before {
    left: 100%;
}

.button_test:hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #E63946 100%);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.8);
    color: white !important;
}

.button_test:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
    }
    50% {
        box-shadow: 0 15px 60px rgba(230, 57, 70, 0.9),
                    0 0 40px rgba(230, 57, 70, 0.6);
    }
}

.pulse-button {
    animation: pulse-glow 2.5s infinite;
}

/* Счетчик */
.test-counter {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 57, 70, 0.3);
}

.test-counter:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
    background: rgba(230, 57, 70, 0.15);
}

.counter-icon {
    margin-right: 1rem;
    color: #E63946;
}

.counter-icon i {
    font-size: 2.5rem;
}

.counter-text {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #E63946;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}

.counter-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

/* ==========================================
   ПРЕИМУЩЕСТВА
   ========================================== */
#reasons {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
    position: relative;
}

#reasons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(230,57,70,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.reasons_div {
    position: relative;
    z-index: 1;
}

.reasons_ul {
    list-style-type: none;
    padding: 0;
}

.reasons_li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(230, 57, 70, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.reasons_li.visible {
    opacity: 1;
    transform: translateY(0);
}

.reasons_li:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
    background: rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.5);
}

.reasons_li > i {
    color: #E63946;
    font-size: 2.5rem;
    flex-shrink: 0;
    background: rgba(230, 57, 70, 0.2);
    border-radius: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.reasons_content strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.reasons_content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
}

.info_reasons {
    background: rgba(230, 57, 70, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid rgba(230, 57, 70, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.info_reasons.visible {
    opacity: 1;
    transform: translateY(0);
}

.info_reasons p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ==========================================
   ОТЗЫВЫ
   ========================================== */
#reviews {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 52, 96, 0.3) 100%);
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid rgba(230, 57, 70, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.4);
    border-color: rgba(230, 57, 70, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E63946;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.review-name {
    color: #E63946;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.review-rating {
    color: #FFD700;
}

.review-rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   ТЕХНИЧЕСКИЕ ХАРАКТЕРИСТИКИ
   ========================================== */
#specifications {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.badge-new {
    display: inline-block;
    background: linear-gradient(135deg, #E63946, #FF6B6B);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.spec-image img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(230, 57, 70, 0.3);
    border: 3px solid rgba(230, 57, 70, 0.3);
    transition: all 0.4s ease;
}

.spec-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.5);
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 57, 70, 0.2);
}

.spec-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    border-color: rgba(230, 57, 70, 0.5);
    background: rgba(230, 57, 70, 0.1);
}

.spec-item > i {
    font-size: 2rem;
    color: #E63946;
    background: rgba(230, 57, 70, 0.15);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.spec-item strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.spec-item p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   ФИНАЛЬНЫЙ ПРИЗЫВ К ДЕЙСТВИЮ
   ========================================== */
.final-cta {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 5rem 2rem;
    margin: 4rem 3%;
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.4);
    border: 2px solid rgba(230, 57, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '🎄 🎁 ⭐ 🎄 🎁 ⭐ 🎄 🎁 ⭐';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    opacity: 0.15;
    pointer-events: none;
}

.final-cta h3 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    text-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.final-cta p strong {
    color: #FFD700;
    font-weight: 800;
}

.warning-text {
    color: #FFD700 !important;
    font-size: 1.15rem !important;
    margin-top: 1rem !important;
}

.final-cta .button_test {
    margin-top: 2rem;
    font-size: 1.3rem;
    padding: 20px 60px;
}

/* ==========================================
   КОНТАКТЫ
   ========================================== */
#contacts {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 52, 96, 0.3) 100%);
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid rgba(230, 57, 70, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.4);
    border-color: rgba(230, 57, 70, 0.5);
}

.contact-card i {
    font-size: 3rem;
    color: #E63946;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.contact-card h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1.1rem;
}

.contact-card a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #E63946;
}

.contact-card .small-text {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* ==========================================
   ФУТЕР
   ========================================== */
.footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 2px solid rgba(230, 57, 70, 0.3);
    backdrop-filter: blur(10px);
}

.feedback-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(230, 57, 70, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.feedback-form-wrapper h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feedback-input,
.feedback-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.3);
    color: #ffffff;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feedback-input:focus,
.feedback-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #E63946;
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
    color: #ffffff;
    outline: none;
}

.feedback-input::placeholder,
.feedback-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.feedback-button {
    background: linear-gradient(135deg, #E63946, #FF6B6B);
    color: white;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-button:hover {
    background: linear-gradient(135deg, #FF6B6B, #E63946);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
    color: white;
}

.footer-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 57, 70, 0.2);
}

.company-name {
    color: #E63946;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.copy {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* ==========================================
   АДАПТИВНОСТЬ
   ========================================== */
@media (max-width: 991px) {
    .menu_parts {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .menu_item {
        padding: 0.7rem 1rem !important;
        text-align: center;
    }
    
    .banner_container {
        padding: 0 1.5rem;
    }
    
    .banner_text h1 {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .logo_text {
        font-size: 1.4rem;
    }
    
    .banner_wrapper {
        margin: 20px 15px;
        padding: 30px 0;
    }
    
    .banner_container {
        padding: 0 1rem;
    }
    
    .banner_text h1 {
        font-size: 1.8rem;
    }
    
    .info {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .button_test {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
    }
    
    .test-counter {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .reasons_li {
        flex-direction: column;
        text-align: center;
    }
    
    .reasons_li > i {
        margin: 0 auto 1rem;
    }
    
    .final-cta {
        margin: 2rem 15px;
        padding: 3rem 1.5rem;
    }
    
    .final-cta h3 {
        font-size: 1.6rem;
    }
    
    .feedback-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .banner_text h1 {
        font-size: 1.5rem;
    }
    
    .promo-timer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .price-block {
        padding: 1.5rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .reasons_content strong {
        font-size: 1.1rem;
    }
    
    .spec-item {
        flex-direction: column;
        text-align: center;
    }
    
    .spec-item > i {
        margin: 0 auto 1rem;
    }
}