:root {
        --primary-color: #2C3E50;
        --secondary-color: #E74C3C;
            --accent-color: #3498DB;
            --light-color: #ECF0F1;
            --dark-color: #2C3E50;
            --text-color: #333333;
            --border-radius: 8px;
            --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --red-gradient: linear-gradient(135deg, #e74c3c, #c0392b);
            --header-gradient: linear-gradient(135deg, #3498db, #2c3e50);
            --pulse-animation: 0 0 10px rgba(231, 76, 60, 0.7);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Стили главной страницы */
        .landing-container {
            display: flex;
            min-height: 100vh;
        }
        
        .image-section {
            flex: 1;
            background-image: url('https://example.com/balcony-image.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .content-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            background: white;
        }
        
        .offer-container {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .main-offer {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            color: var(--primary-color);
        }
        
        .offer-description {
            font-size: 18px;
            margin-bottom: 30px;
            color: #666;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--red-gradient);
            color: white;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            margin-bottom: 30px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            animation: pulse 2s infinite;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 45%,
                rgba(255, 255, 255, 0.5) 48%,
                rgba(255, 255, 255, 0.8) 50%,
                rgba(255, 255, 255, 0.5) 52%,
                rgba(255, 255, 255, 0) 57%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
        }
        
        .timer-container {
            margin-bottom: 40px;
        }
        
        .timer-title {
            font-size: 16px;
            margin-bottom: 10px;
            color: #666;
        }
        
        .timer {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .bonuses-container {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .bonus-card {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .bonus-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Стили квиза (скрыты по умолчанию) */
        .quiz-container {
            display: none;
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }
        
        .quiz-header {
            background: var(--header-gradient);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .quiz-header::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            right: 0;
            height: 30px;
            background: white;
            clip-path: ellipse(75% 100% at 50% 0%);
        }
        
        .quiz-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 700;
            font-family: 'Roboto Condensed', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .quiz-timer {
            font-size: 18px;
            font-weight: 500;
            opacity: 0.9;
        }
        
        .quiz-body {
            padding: 40px 30px 30px;
        }
        
        /* Прогресс бар */
        .progress-container {
            width: 100%;
            margin-bottom: 40px;
        }
        
        .progress-bar {
            height: 15px;
            background-color: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--red-gradient);
            width: 0%;
            transition: width 0.5s ease;
            border-radius: 10px;
        }
        
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            font-size: 14px;
            color: #666;
        }
        
        .progress-step {
            position: relative;
            text-align: center;
            flex: 1;
        }
        
        .progress-step.active {
            color: var(--secondary-color);
            font-weight: 500;
        }
        
        .progress-step::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
        }
        
        .progress-step.active::before {
            background: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
        }
        
        .question-container {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .question-container.active {
            display: block;
        }
        
        .question-text {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-weight: 600;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .question-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .options-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .option-card {
            flex: 1 1 calc(25% - 20px);
            min-width: 200px;
            background: var(--light-color);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: 25px 15px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 200px;
        }
        
        .option-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }
        
        .option-card.selected {
            border-color: var(--secondary-color);
            background: white;
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
        }
        
        .option-card.selected::before {
            content: '✓';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 25px;
            height: 25px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        .option-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .option-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .navigation-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .nav-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .prev-btn {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .prev-btn:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .next-btn {
            background: var(--red-gradient);
            color: white;
            border: none;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }
        
        .next-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        }
        
        .next-btn:disabled {
            background: #cccccc;
            border-color: #cccccc;
            cursor: not-allowed;
            box-shadow: none;
        }
        
        /* Страница выбора способа связи */
        .contact-method-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-method-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-weight: 600;
            text-align: center;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .contact-methods {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .contact-method {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            background: var(--light-color);
            border: 2px solid transparent;
            border-radius: var(--border-radius);
            padding: 25px 15px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }
        
        .contact-method.selected {
            border-color: var(--secondary-color);
            background: white;
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
        }
        
        .contact-method.selected::before {
            content: '✓';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 25px;
            height: 25px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        .contact-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* Новая финальная страница */
        .final-page-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            display: flex;
            min-height: 80vh;
        }
        
        .final-left-section {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 62, 80, 0.05));
            position: relative;
            overflow: hidden;
        }
        
        .final-left-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 70%);
            border-radius: 50%;
        }
        
        .final-step-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .final-step-title span {
            background: rgba(231, 76, 60, 0.1);
            padding: 8px 16px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
        }
        
        .final-thank-you {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--primary-color);
            font-family: 'Roboto Condensed', sans-serif;
            line-height: 1.2;
        }
        
        .final-price {
            font-size: 32px;
            margin-bottom: 25px;
            color: var(--secondary-color);
            font-weight: 700;
            animation: pulseText 2s infinite;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        @keyframes pulseText {
            0% { text-shadow: var(--pulse-animation); }
            50% { text-shadow: 0 0 20px rgba(231, 76, 60, 0.9); }
            100% { text-shadow: var(--pulse-animation); }
        }
        
        .final-price span {
            font-size: 48px;
            font-weight: 800;
        }
        
        .final-description {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #555;
            max-width: 90%;
        }
        
        .discount-code-container {
            background: rgba(231, 76, 60, 0.05);
            border: 2px dashed rgba(231, 76, 60, 0.3);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 40px;
            max-width: fit-content;
        }
        
        .discount-code-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .discount-code {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary-color);
            letter-spacing: 2px;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .final-bonuses {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .final-bonus-card {
            flex: 1;
            max-width: 250px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s;
        }
        
        .final-bonus-card:hover {
            transform: translateY(-5px);
        }
        
        .final-bonus-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .final-right-section {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
            position: relative;
        }
        
        .final-form-container {
            max-width: 400px;
            width: 100%;
            margin: 0 auto;
        }
        
        .final-form-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-weight: 700;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 16px;
        }
        
        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: var(--border-radius);
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
            outline: none;
        }
        
        .form-input.error {
            border-color: var(--secondary-color);
        }
        
        .error-message {
            color: var(--secondary-color);
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        .submit-final-btn {
            background: var(--red-gradient);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 18px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 700;
            margin-top: 20px;
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .submit-final-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 45%,
                rgba(255, 255, 255, 0.5) 48%,
                rgba(255, 255, 255, 0.8) 50%,
                rgba(255, 255, 255, 0.5) 52%,
                rgba(255, 255, 255, 0) 57%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }
        
        .submit-final-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
        }
        
        /* Финальный экран */
        .final-screen {
            text-align: center;
            padding: 30px;
        }
        
        .final-screen h2 {
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .discount-badge {
            display: inline-block;
            background: var(--red-gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 20px;
            font-weight: 600;
            margin: 20px 0;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }
        
        .request-number {
            font-size: 18px;
            margin: 20px 0;
            color: var(--primary-color);
        }
        
        .request-number span {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .close-btn {
            background: var(--red-gradient);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }
        
        .close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(30deg); }
            20% { transform: translateX(100%) rotate(30deg); }
            100% { transform: translateX(100%) rotate(30deg); }
        }
        
        /* Адаптивность */
        @media (max-width: 1200px) {
            .option-card {
                flex: 1 1 calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 992px) {
            .landing-container {
                flex-direction: column;
            }
            
            .image-section {
                height: 300px;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            .main-offer {
                font-size: 28px;
            }
            
            .offer-description {
                font-size: 16px;
            }
            
            .bonuses-container {
                flex-direction: column;
            }
            
            .option-card {
                flex: 1 1 calc(50% - 20px);
            }
            
            .final-page-container {
                flex-direction: column;
            }
            
            .final-left-section,
            .final-right-section {
                padding: 40px;
            }
            
            .final-thank-you {
                font-size: 36px;
            }
            
            .final-price {
                font-size: 28px;
            }
            
            .final-price span {
                font-size: 40px;
            }
            
            .final-bonuses {
                justify-content: center;
            }
            
            .contact-method {
                min-width: 150px;
            }
        }
        
        @media (max-width: 768px) {
            .quiz-body {
                padding: 30px 20px;
            }
            
            .question-text {
                font-size: 22px;
            }
            
            .option-card {
                min-width: 150px;
                min-height: 180px;
                padding: 20px 10px;
            }
            
            .option-icon {
                font-size: 32px;
            }
            
            .quiz-header h1 {
                font-size: 26px;
            }
            
            .quiz-timer {
                font-size: 16px;
            }
            
            .final-thank-you {
                font-size: 32px;
            }
            
            .final-price {
                font-size: 24px;
            }
            
            .final-price span {
                font-size: 36px;
            }
            
            .discount-code {
                font-size: 24px;
            }
            
            .final-bonus-card {
                max-width: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .main-offer {
                font-size: 24px;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 16px;
                width: 100%;
                text-align: center;
            }
            
            .question-text {
                font-size: 20px;
            }
            
            .option-card {
                flex: 1 1 100%;
                min-height: auto;
            }
            
            .progress-steps {
                font-size: 12px;
            }
            
            .contact-form-title {
                font-size: 18px;
            }
            
            .final-bonuses {
                flex-direction: column;
                align-items: center;
            }
            
            .final-bonus-card {
                max-width: 100%;
            }
            
            body {
                padding: 10px;
            }
            
            .final-left-section,
            .final-right-section {
                padding: 25px;
            }
            
            .final-thank-you {
                font-size: 28px;
            }
            
            .final-description {
                max-width: 100%;
            }
        }
        
    