.b2b-subtitle { color: #666; font-size: clamp(13px, 1.8vw, 16px); } /* Бенефиты */ .b2b-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin-bottom: 25px; } .benefit-item { background: #fafafa; border: 1px solid #e0e0e0; border-radius: 10px; padding: 20px; display: flex; align-items: center; gap: 15px; transition: all 0.3s; } .benefit-item:hover { border-color: #C9A227; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); } .benefit-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #C9A227, #b8941f); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; } .benefit-text h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; } .benefit-text p { font-size: 13px; color: #666; } /* Секции формы */ .b2b-section { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 25px; margin-bottom: 20px; } .section-title { font-family: Georgia, serif; font-size: clamp(16px, 2.5vw, 20px); font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #C9A227; display: flex; align-items: center; gap: 10px; white-space: nowrap; } @media (max-width: 480px) { .section-title { white-space: normal; } } /* Гриды */ .b2b-grid { display: grid; gap: 15px; } @media (min-width: 768px) { .b2b-grid-3 { grid-template-columns: 2fr 1fr 1fr; } .b2b-grid-2 { grid-template-columns: 1fr 1fr; } .b2b-grid-4 { grid-template-columns: 1fr 1.5fr 1fr 1fr; } .b2b-grid-dates { grid-template-columns: 1fr auto 1fr auto 100px; align-items: end; } } @media (max-width: 767px) { .b2b-grid { grid-template-columns: 1fr; } .b2b-grid-dates { grid-template-columns: 1fr; } .date-arrow { display: none; } } .form-field { position: relative; width: 100%; } .form-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; color: #555; margin-bottom: 6px; letter-spacing: 0.5px; } .form-field input, .form-field select { width: 100%; height: 50px; padding: 12px 40px 12px 14px; border: 2px solid #333; border-radius: 8px; font-size: 16px; transition: all 0.2s; background: #fff; } .form-field input:focus { outline: none; border-color: #C9A227; box-shadow: 0 0 0 3px rgba(201,162,39,0.1); } .form-field input.auto-filled { background: #fffbf0; border-color: #C9A227; } .field-icon { position: absolute; right: 14px; bottom: 14px; font-size: 18px; opacity: 0.4; pointer-events: none; } .spinner { position: absolute; right: 40px; bottom: 16px; width: 18px; height: 18px; border: 2px solid #f0f0f0; border-top-color: #C9A227; border-radius: 50%; animation: spin 1s linear infinite; display: none; } @keyframes spin { to { transform: rotate(360deg); } } /* Подсказки DaData */ .suggestions-dropdown { position: absolute; top: calc(100% + 5px); left: 0; right: 0; background: white; border: 2px solid #333; border-radius: 8px; max-height: 300px; overflow-y: auto; z-index: 10000; display: none; box-shadow: 0 10px 40px rgba(0,0,0,0.15); } .suggestion-row { padding: 12px; cursor: pointer; border-bottom: 1px solid #f0f0f0; font-size: 14px; transition: all 0.2s; } .suggestion-row:hover { background: #fffbf0; padding-left: 16px; } .suggestion-name { font-weight: 600; margin-bottom: 3px; } .suggestion-info { font-size: 12px; color: #666; } .status-badge { font-size: 10px; padding: 2px 6px; background: #e8f5e9; color: #2e7d32; border: 1px solid #333; border-radius: 3px; margin-left: 5px; } .hidden { display: none !important; } /* Блок заказа */ .order-block { display: none; background: linear-gradient(135deg, #fffdf5 0%, #fff 100%); border: 2px solid #C9A227; border-radius: 12px; padding: 25px; margin-top: 20px; animation: fadeIn 0.4s; } .order-block.active { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; } .order-service-name { font-family: Georgia, serif; font-size: clamp(18px, 3vw, 22px); font-weight: 700; flex: 1; } .site-tag { background: #C9A227; color: #000; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; border: 1.5px solid #222; white-space: nowrap; } .date-arrow { text-align: center; font-size: 20px; color: #999; padding-bottom: 10px; } /* Дополнения */ .extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin: 15px 0; } .extra-box { display: flex; align-items: center; gap: 10px; padding: 14px; background: #fff; border: 1.5px solid #ddd; border-radius: 8px; cursor: pointer; transition: all 0.2s; } .extra-box:hover { border-color: #C9A227; background: #fffbf0; } .extra-box input { width: 20px; height: 20px; accent-color: #C9A227; flex-shrink: 0; } .extra-name { flex: 1; font-size: 14px; font-weight: 500; } .extra-price { font-weight: 700; font-size: 14px; white-space: nowrap; } /* Калькулятор */ .calc-summary { background: #f5f5f5; border-radius: 10px; padding: 20px; margin: 20px 0; } .calc-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #e0e0e0; font-size: 15px; } .calc-row:last-child { border-bottom: none; } .calc-label { color: #555; font-weight: 500; } .calc-value { font-weight: 700; color: #000; } .discount-tag { color: #d32f2f; font-size: 12px; margin-left: 5px; } /* Итоговый блок */ .total-final { background: linear-gradient(135deg, #C9A227 0%, #b8941f 100%); color: #000; padding: 25px; border-radius: 10px; border: 2px solid #222; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-top: 20px; } .total-info { flex: 1; } .total-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; margin-bottom: 5px; } .total-amount { font-family: Georgia, serif; font-size: clamp(26px, 5vw, 36px); font-weight: 800; letter-spacing: -1px; } .total-note { font-size: 13px; font-weight: 600; text-align: right; line-height: 1.4; } @media (max-width: 600px) { .total-final { flex-direction: column; text-align: center; } .total-note { text-align: center; } } /* Кнопки действий */ .action-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin-top: 25px; } .btn-action { height: 56px; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; font-family: inherit; } .btn-solid { background: linear-gradient(135deg, #C9A227 0%, #b8941f 100%); color: #000; border: 2px solid transparent; } .btn-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,162,39,0.3); border-color: #222; } .btn-outline { background: #fff; color: #000; border: 2px solid #C9A227; } .btn-outline:hover { background: linear-gradient(135deg, #C9A227 0%, #b8941f 100%); } /* Модальные окна */ .b2b-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 99999; justify-content: center; align-items: center; padding: 15px; backdrop-filter: blur(5px); } .b2b-modal.active { display: flex; } .modal-container { background: #fff; border-radius: 12px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; border: 2px solid #C9A227; animation: modalPop 0.3s; } @keyframes modalPop { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } .modal-header { background: linear-gradient(135deg, #C9A227 0%, #b8941f 100%); padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #222; } .modal-title { font-family: Georgia, serif; font-size: 24px; font-weight: 700; color: #000; } .modal-close { width: 36px; height: 36px; background: rgba(255,255,255,0.3); border: 2px solid #222; border-radius: 50%; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; } .modal-close:hover { background: #fff; transform: rotate(90deg); } .modal-body { padding: 25px; } .contact-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; } @media (max-width: 600px) { .contact-options { grid-template-columns: repeat(2, 1fr); } } .contact-option { padding: 15px 8px; border: 2px solid #e0e0e0; border-radius: 8px; text-align: center; cursor: pointer; transition: all 0.2s; font-size: 13px; font-weight: 700; } .contact-option:hover, .contact-option.active { border-color: #C9A227; background: #fffbf0; transform: translateY(-2px); } .contact-icon-big { font-size: 24px; margin-bottom: 5px; display: block; } .preview-data { background: #f5f5f5; border-radius: 8px; padding: 20px; margin: 20px 0; } .preview-title { font-family: Georgia, serif; font-size: 16px; font-weight: 700; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid #C9A227; } .preview-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; flex-wrap: wrap; gap: 5px; } .preview-label { color: #666; font-weight: 500; } .preview-value { font-weight: 700; color: #000; text-align: right; } .preview-highlight { font-size: 20px; color: #000; font-weight: 800; font-family: Georgia, serif; } /* Успех */ .success-modal .modal-container { max-width: 450px; text-align: center; padding: 40px 30px; } .success-icon-big { font-size: 80px; margin-bottom: 20px; } .success-title { font-family: Georgia, serif; font-size: 32px; font-weight: 700; margin-bottom: 15px; } .success-text { font-size: 16px; color: #555; margin-bottom: 20px; line-height: 1.5; } .order-number-final { background: #C9A227; color: #000; padding: 15px 30px; border-radius: 8px; font-size: 28px; font-weight: 800; font-family: Georgia, serif; display: inline-block; margin-bottom: 20px; border: 2px solid #222; letter-spacing: 2px; } /* Адаптация для мобильных */ @media (max-width: 480px) { .b2b-section { padding: 15px; } .benefit-item { padding: 15px; } .benefit-icon { width: 40px; height: 40px; font-size: 20px; } .extra-box { padding: 12px; } .modal-title { font-size: 20px; } .order-service-name { font-size: 18px; } }
4 ШАГА ДО СТАРТА
Заявка
Свяжитесь с нами любыми доступными способами. через заявку на сайте, по телефону или через whatsapp , telegram, ВКонтакте
Оплата
Вносите предоплату или полную оплату. Уточняем дату и адрес подачи и детали. После подтверждения нужно будет оплатить стоимость аренды.
Документы
После оплаты вы получаете билет с номером заказа или ваучер с данными о заказе если вы заказываете в подарок. Ждем день Х.
Старт программы
В нужную дату и время привозим авто. Далее проводим инструктаж. отдаем ключи
Вопросы и ответы