/* ============================================
   СТИЛИ ТОЛЬКО ДЛЯ СТРАНИЦЫ ЗАКАЗА
   Не влияет на другие страницы
============================================ */

.order-page {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #2c3e50;
    background: #ffffff;
}

/* Контейнер */
.order-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO
============================================ */

.order-page .hero-section {
    background: linear-gradient(135deg, #eef6ff 0%, #dcecff 100%);
    padding: 100px 0;
    text-align: center;
}

.order-page .hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.order-page .hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.order-page .hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.order-page .feature-item {
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Цена */
.order-page .hero-price {
    font-size: 40px;
    font-weight: 800;
    color: #1e628d;
    margin-bottom: 40px;
}

/* Кнопки */
.order-page .btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.order-page .btn-primary {
    background: #1e628d;
    color: white;
    box-shadow: 0 8px 20px rgba(30,98,141,0.25);
}

.order-page .btn-primary:hover {
    background: #154b6c;
    transform: translateY(-2px);
}

.order-page .btn-secondary {
    background: transparent;
    border: 2px solid #1e628d;
    color: #1e628d;
}

.order-page .btn-secondary:hover {
    background: #1e628d;
    color: white;
}

/* ============================================
   СЕКЦИИ
============================================ */

.order-page section {
    padding: 100px 0;
}

/* Заголовки */
.order-page .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

/* ============================================
   КАРТОЧКИ МАТЕРИАЛОВ
============================================ */

.order-page .materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.order-page .material-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

.order-page .material-card:hover {
    transform: translateY(-5px);
}

.order-page .material-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.order-page .material-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #5a6c7d;
}

/* ============================================
   ПРЕИМУЩЕСТВА
============================================ */

.order-page .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.order-page .advantage-number {
    font-size: 56px;
    font-weight: 800;
    color: #1e628d;
    margin-bottom: 15px;
}

.order-page .advantage-text {
    font-size: 16px;
    color: #5a6c7d;
}

/* ============================================
   ФОРМА
============================================ */

.order-page .order-form {
    background: #f8fbff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    max-width: 700px;
    margin: 0 auto;
}

.order-page .form-group {
    margin-bottom: 25px;
}

.order-page .form-input,
.order-page .form-select,
.order-page .form-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #dbe5f0;
    font-size: 16px;
}

.order-page .form-input:focus,
.order-page .form-select:focus,
.order-page .form-textarea:focus {
    border-color: #1e628d;
    outline: none;
}

/* ============================================
   ОТЗЫВЫ
============================================ */

.order-page .review-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.order-page .review-text {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.order-page .review-author {
    font-weight: 600;
    text-align: right;
}

/* ============================================
   FAQ
============================================ */

.order-page .faq-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6eef5;
    margin-bottom: 15px;
}

.order-page .faq-question {
    padding: 18px 25px;
    font-weight: 600;
    background: #f3f8ff;
}

.order-page .faq-answer {
    padding: 20px 25px;
    background: white;
}

/* ============================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
============================================ */

@media (max-width: 768px) {

    .order-page .hero-title {
        font-size: 30px;
    }

    .order-page section {
        padding: 60px 0;
    }

    .order-page .order-form {
        padding: 25px;
    }

    .order-page .advantage-number {
        font-size: 40px;
    }
}