:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #e74c3c;
    --accent-hover: #c0392b;
    
    --bg-primary: #313131;
    --bg-secondary: #1d1d1d;
    --bg-light: rgba(40, 40, 40, 0.9);
    
    --gradient-primary: linear-gradient(135deg, #d70000, #ce1500);
    --gradient-primary-hover: linear-gradient(135deg, #ff1900, #ff1500);
    --gradient-hero: linear-gradient(135deg, #d70000, #ce1500);
    --gradient-hero-hover: linear-gradient(135deg, #ff1900, #ff1500);
    --gradient-feature: linear-gradient(135deg, #f59b3c, #ff6b35);
    --gradient-price: linear-gradient(135deg, #54341b 0%, #3a2e1b 100%);
    --gradient-placeholder: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    --text-primary: #eaeaea;
    --text-secondary: #9f9f9f;
    --text-light: #999999;
    --text-white: #ffffff;
    --text-accent: #e74c3c;
    --text-orange: #ff8c00;
    --text-yellow: #f39c12;
    --text-red: #ff0000;
    --text-green: rgb(133, 147, 93);
    
    --border-color: #505050;
    --border-light: rgba(0, 0, 0, 0.1);
    
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-accent: rgba(231, 76, 60, 0.3);
    --shadow-accent-hover: rgba(231, 76, 60, 0.4);
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Блок 6: Цена и таймер */
.price-section {
    padding: 80px 0;
    background: var(--gradient-price);
    color: var(--text-primary);
}

/* Кнопка внизу */
.cta-button {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-accent-hover);
}

/* Кнопка вверху */
.hero-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    border-radius: 0;
    padding: 25px;
    font-size: 2.2rem;
    z-index: 10;
    background: var(--gradient-hero);
    border: none;
    color: var(--text-white);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 -4px 20px var(--shadow-color);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--gradient-hero-hover);
    transform: translateY(-2px);
    box-shadow: 0 -6px 25px var(--shadow-color);
}

/* Иконка в отзывах */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-feature);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

/* Блок 1: Hero секция */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text-overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    text-align: left;
    z-index: 5;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'Gilroy';
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-features-overlay {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.hero-feature-overlay {
    background: rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 1);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.hero-text {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}

.hero-text h1 {
    color: var(--text-green);
    font-size: 3.4rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    text-shadow: 2px 2px 4px var(--shadow-color);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-features {
    position: absolute;
    bottom: 100px;
    right: 30px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px var(--shadow-color);
}

.hero-feature-item i {
    font-size: 1.1rem;
    color: var(--text-orange);
    min-width: 20px;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-placeholder);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Блок 2: Преимущества */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Блок 3: Видео */
.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sound-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.sound-toggle:hover {
    background: var(--bg-primary);
}

/* Блок 4: Видео */
.video-section {
    height: 100vh;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Блок 5: Отзывы */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--text-accent);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.review-stars {
    color: var(--text-yellow);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.review-author {
    font-weight: bold;
    color: var(--text-primary);
}

.price-container {
    text-align: center;
}

.price-info {
    margin-bottom: 40px;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: 600;
    color: var(--text-red);
    opacity: 0.7;
    margin-bottom: 10px;
}

.price-new {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-primary);
}

.timer-container {
    margin-top: 30px;
}

.timer-label {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.timer-item {
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--bg-light);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.timer-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-secondary);
}

/* Блок 7: Форма заказа */
.order-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.order-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--text-accent);
    background: var(--bg-primary);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.product-name {
    color: var(--text-accent);
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timer {
        gap: 10px;
    }
    
    .timer-item {
        min-width: 60px;
    }
    
    .timer-number {
        font-size: 1.8rem;
        padding: 8px;
    }
    
    .price-new {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        bottom: 0;
        padding: 15px;
        font-size: 1.5rem;
        height: 68px;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 35px;
    }
    
    .hero-feature-overlay {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-features {
        bottom: 90px;
        right: 20px;
        gap: 10px;
    }
    
    .hero-feature-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .hero-feature-item i {
        font-size: 1rem;
    }
    
    .sound-toggle {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .order-form {
        padding: 30px 20px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-placeholder {
        font-size: 1.5rem;
    }
    
    .hero-placeholder i {
        font-size: 3rem;
    }
    

    
    .timer {
        gap: 5px;
    }
    
    .timer-item {
        min-width: 50px;
    }
    
    .timer-number {
        font-size: 1.5rem;
        padding: 5px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .hero-feature-overlay {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        bottom: 80px;
        right: 15px;
        gap: 8px;
    }
    
    .hero-feature-item {
        padding: 5px 10px;
        font-size: 0.7rem;
        border-radius: 20px;
    }
    
    .hero-feature-item i {
        font-size: 0.9rem;
        min-width: 16px;
    }
} 

/* Полностью новая секция для второго изображения */
.img2-section {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    position: static;
    background: var(--bg-primary);
}

.img2-section .img2-special {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: scale-down;
    display: block;
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    position: static;
    overflow: visible;
} 