/* ВЕСЬ БАННЕР */
.hero {
    margin-top: 0 !important;
    width: 100%;
    /* Дорогой градиент поверх фото: Темно-синий -> Почти черный */
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.92) 0%, rgba(2, 12, 27, 0.95) 100%), 
                url('../img/1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.hero-buttons { display: flex; justify-content: center; gap: 20px; }

/* КВИЗ (Опросник) */
.quiz-section { padding: 100px 0; background: #ffffff; }

.quiz-box {
    max-width: 750px; margin: 0 auto; background: #ffffff; padding: 50px;
    border-radius: 12px; box-shadow: 0 20px 50px rgba(10, 25, 47, 0.08); border: 1px solid #f1f5f9;
}

.quiz-step h3 { margin-bottom: 30px; color: #0A192F; font-size: 26px; text-align: center; }

/* Прогресс-бар */
.quiz-progress { width: 100%; height: 4px; background: #e2e8f0; border-radius: 4px; margin-bottom: 40px; overflow: hidden; }
.progress-bar { height: 100%; background: #C5A059; width: 0%; transition: 0.5s ease; }

/* Варианты ответов */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.quiz-option {
    background: #f8fafc; border: 1px solid #e2e8f0; padding: 25px;
    font-size: 16px; font-weight: 600; color: #334155; cursor: pointer;
    border-radius: 8px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 12px;
}

.quiz-option:hover {
    border-color: #C5A059; background: #ffffff;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1); transform: translateY(-2px);
}

.quiz-option.active { border-color: #C5A059; background: #C5A059; color: #ffffff; }

.quiz-back {
    margin-top: 30px; background: none; border: none; color: #94a3b8; font-weight: 500;
    cursor: pointer; font-size: 14px; transition: 0.3s; display: block; margin-left: auto; margin-right: auto;
}
.quiz-back:hover { color: #0A192F; }

/* Форма в конце квиза */
.lead-form-modern .form-group input {
    width: 100%; padding: 18px; border: 1px solid #e2e8f0; border-radius: 4px;
    margin-bottom: 20px; font-size: 16px; background: #f8fafc; transition: 0.3s;
}
.lead-form-modern .form-group input:focus { border-color: #C5A059; outline: none; background: #fff; }

@media (max-width: 768px) {
    .hero h2 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; }
    .options-grid { grid-template-columns: 1fr; }
    .quiz-box { padding: 30px 20px; }
}