ya-hotel-by-sozdat-sayt-dlya/index.html

197 lines
10 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>BusinessMeet — Встречи для бизнеса</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>💼</text></svg>">
<style>
:root{--ink:#0F1218;--cyan:#00E5FF;--cyan-50:#E8FCFF;--white:#FFFFFF;--gray-900:#1A1F29;--gray-800:#252B37;--gray-500:#5B6573;--gray-100:#F2F4F7}
*{box-sizing:border-box;margin:0;padding:0}
body{font:17px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,system-ui,sans-serif;color:var(--white);background:var(--ink)}
.container{max-width:1140px;margin:0 auto;padding:80px 24px}
.hero{background:linear-gradient(135deg,var(--ink) 0%,var(--gray-900) 100%);padding:120px 24px;text-align:center}
.hero h1{font-size:clamp(36px,6vw,56px);font-weight:800;line-height:1.05;margin-bottom:24px;color:var(--white)}
.hero p{font-size:clamp(18px,2.5vw,20px);color:#9aa3b2;max-width:600px;margin:0 auto 32px}
.btn{display:inline-block;background:var(--cyan);color:var(--ink);padding:16px 32px;border-radius:8px;font-weight:700;text-decoration:none;transition:transform .2s}
.btn:hover{transform:translateY(-2px)}
.section{padding:80px 24px}
.section h2{font-size:clamp(28px,4vw,36px);font-weight:700;margin-bottom:48px;text-align:center}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;max-width:1140px;margin:0 auto}
.card{background:var(--gray-800);border-radius:16px;padding:32px;border:1px solid var(--gray-500);transition:border-color .3s}
.card:hover{border-color:var(--cyan)}
.card-icon{font-size:40px;margin-bottom:16px}
.card h3{font-size:22px;font-weight:700;margin-bottom:12px;color:var(--white)}
.card p{color:#9aa3b2;line-height:1.6}
.schedule-item{background:var(--gray-800);border-radius:12px;padding:24px;margin-bottom:16px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;max-width:1140px;margin-left:auto;margin-right:auto}
.schedule-time{font-weight:700;color:var(--cyan);font-size:18px;min-width:120px}
.schedule-info{flex:1;min-width:200px}
.schedule-info h4{font-size:20px;font-weight:700;margin-bottom:4px;color:var(--white)}
.schedule-info p{color:#9aa3b2;font-size:14px}
.schedule-btn{background:transparent;border:2px solid var(--cyan);color:var(--cyan);padding:10px 20px;border-radius:8px;font-weight:700;cursor:pointer;transition:all .3s}
.schedule-btn:hover{background:var(--cyan);color:var(--ink)}
.form-section{background:var(--gray-900)}
.form-container{max-width:500px;margin:0 auto}
.form-group{margin-bottom:20px}
.form-group label{display:block;margin-bottom:8px;font-weight:600;color:var(--white)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:14px;border-radius:8px;border:1px solid var(--gray-500);background:var(--gray-800);color:var(--white);font-size:17px}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--cyan)}
.form-submit{width:100%;background:var(--cyan);color:var(--ink);padding:16px;border-radius:8px;font-weight:700;font-size:18px;border:none;cursor:pointer;transition:transform .2s}
.form-submit:hover{transform:translateY(-2px)}
.testimonial{text-align:center;max-width:700px;margin:0 auto}
.testimonial blockquote{font-size:20px;font-style:italic;color:#9aa3b2;margin-bottom:16px;line-height:1.6}
.testimonial cite{font-style:normal;color:var(--white);font-weight:700}
.footer{background:var(--gray-900);padding:40px 24px;text-align:center;color:#9aa3b2}
.footer a{color:var(--cyan);text-decoration:none}
.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media(max-width:640px){.hero{padding:80px 20px}.schedule-item{flex-direction:column;text-align:center}.schedule-btn{width:100%}}
</style>
</head>
<body>
<section class="hero">
<h1>Бизнес-встречи<br><span style="color:var(--cyan)">на новом уровне</span></h1>
<p>Профессиональные консультации и стратегические сессии для роста вашего бизнеса. Запишитесь на встречу уже сегодня.</p>
<a class="btn" href="#schedule">Выбрать время</a>
</section>
<section class="section">
<h2>Почему выбирают нас</h2>
<div class="grid">
<div class="card reveal">
<div class="card-icon">🎯</div>
<h3>Фокус на результате</h3>
<p>Каждая встреча заканчивается конкретным планом действий и измеримыми результатами.</p>
</div>
<div class="card reveal">
<div class="card-icon"></div>
<h3>Оперативность</h3>
<p>Быстрая организация встреч в удобное время. Онлайн или офлайн — как вам удобно.</p>
</div>
<div class="card reveal">
<div class="card-icon">🔒</div>
<h3>Конфиденциальность</h3>
<p>Полная конфиденциальность обсуждаемых вопросов и защита данных.</p>
</div>
<div class="card reveal">
<div class="card-icon">👥</div>
<h3>Экспертность</h3>
<p>Команда профессионалов с опытом работы в международных компаниях.</p>
</div>
</div>
</section>
<section class="section" id="schedule">
<h2>Расписание встреч</h2>
<div class="schedule-item reveal">
<div class="schedule-time">Пн 10:00</div>
<div class="schedule-info">
<h4>Стратегическая сессия</h4>
<p>Планирование и постановка целей на квартал</p>
</div>
<button class="schedule-btn" onclick="prefill('Стратегическая сессия','Пн 10:00')">Записаться</button>
</div>
<div class="schedule-item reveal">
<div class="schedule-time">Пн 15:00</div>
<div class="schedule-info">
<h4>Консультация по финансам</h4>
<p>Аудит и оптимизация финансовых процессов</p>
</div>
<button class="schedule-btn" onclick="prefill('Консультация по финансам','Пн 15:00')">Записаться</button>
</div>
<div class="schedule-item reveal">
<div class="schedule-time">Вт 11:00</div>
<div class="schedule-info">
<h4>Маркетинговый разбор</h4>
<p>Анализ текущей стратегии и рекомендации</p>
</div>
<button class="schedule-btn" onclick="prefill('Маркетинговый разбор','Вт 11:00')">Записаться</button>
</div>
<div class="schedule-item reveal">
<div class="schedule-time">Ср 14:00</div>
<div class="schedule-info">
<h4>Командная встреча</h4>
<p>Сессия для команд от 5 человек</p>
</div>
<button class="schedule-btn" onclick="prefill('Командная встреча','Ср 14:00')">Записаться</button>
</div>
<div class="schedule-item reveal">
<div class="schedule-time">Чт 16:00</div>
<div class="schedule-info">
<h4>Индивидуальная консультация</h4>
<p>Персональная работа с руководителем</p>
</div>
<button class="schedule-btn" onclick="prefill('Индивидуальная консультация','Чт 16:00')">Записаться</button>
</div>
</section>
<section class="section form-section">
<h2>Записаться на встречу</h2>
<div class="form-container">
<form action="https://formsubmit.co/your@email.com" method="POST">
<div class="form-group">
<label for="name">Ваше имя</label>
<input type="text" id="name" name="name" placeholder="Иван Петров" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="ivan@company.com" required>
</div>
<div class="form-group">
<label for="phone">Телефон</label>
<input type="tel" id="phone" name="phone" placeholder="+7 (777) 123-45-67">
</div>
<div class="form-group">
<label for="type">Тип встречи</label>
<select id="type" name="type" required>
<option value="">Выберите тип встречи</option>
<option value="Стратегическая сессия">Стратегическая сессия</option>
<option value="Консультация по финансам">Консультация по финансам</option>
<option value="Маркетинговый разбор">Маркетинговый разбор</option>
<option value="Командная встреча">Командная встреча</option>
<option value="Индивидуальная консультация">Индивидуальная консультация</option>
</select>
</div>
<div class="form-group">
<label for="time">Предпочтительное время</label>
<input type="text" id="time" name="time" placeholder="Например: Пн 10:00">
</div>
<div class="form-group">
<label for="message">Комментарий</label>
<textarea id="message" name="message" rows="4" placeholder="Кратко опишите ваш запрос"></textarea>
</div>
<button type="submit" class="form-submit">Отправить заявку</button>
</form>
</div>
</section>
<section class="section">
<h2>Отзывы клиентов</h2>
<div class="testimonial reveal">
<blockquote>«За 3 месяца работы с командой BusinessMeet мы увеличили выручку на 40%. Профессиональный подход и реальные результаты.»</blockquote>
<cite>— Алексей К., CEO TechCorp</cite>
</div>
</section>
<footer class="footer">
<p>© 2026 BusinessMeet. Все права защищены.</p>
<p><a href="mailto:info@businessmeet.kz">info@businessmeet.kz</a> | +7 (777) 123-45-67</p>
</footer>
<script>
var io=new IntersectionObserver(function(entries){
entries.forEach(function(e){if(e.isIntersecting)e.target.classList.add('in');});
},{threshold:.15});
document.querySelectorAll('.reveal').forEach(function(el){io.observe(el);});
function prefill(type, time) {
document.getElementById('type').value = type;
document.getElementById('time').value = time;
document.getElementById('schedule').scrollIntoView({behavior:'smooth'});
}
</script>
</body>
</html>