<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ZapravCar - Доставка топлива c выгодой и комфортом</title>
    <!-- Yandex.Metrika counter -->
    <script type="text/javascript" >
        (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
        m[i].l=1*new Date();
        for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
        k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
        (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
    
        ym(101150435, "init", {
            clickmap:true,
            trackLinks:true,
            accurateTrackBounce:true,
            webvisor:true
        });
    </script>
    <noscript><div><img src="https://mc.yandex.ru/watch/101150435" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
    <!-- /Yandex.Metrika counter -->
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <link rel="icon" href="/favicon.png" type="image/png">
    <style>
        /* Promo Banner Styles */
        .promo-banner {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: white;
            text-align: center;
            padding: 10px 35px 10px 10px;
            font-weight: 500;
            font-size: 14px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: pulse 2s infinite;
        }
        
        .promo-banner .promo-code {
            background: white;
            color: #F57C00;
            padding: 2px 8px;
            border-radius: 20px;
            font-weight: 700;
            margin-left: 5px;
            display: inline-block;
            animation: bounce 1s infinite alternate;
            font-size: 13px;
        }
        

        /* Header adjustments */
        header {
            top: 40px; /* Смещаем хедер ниже баннера */
            transition: top 0.3s ease;
        }

        body {
            padding-top: 90px; /* Компенсация высоты баннера и хедера */
        }

        /* Mobile specific styles */
        @media (max-width: 768px) {
            .promo-banner {
                font-size: 12px;
                padding: 8px 30px 8px 8px;
            }
            
            .promo-banner .promo-code {
                font-size: 11px;
                padding: 1px 6px;
            }
            
            header {
                top: 36px; /* Меньший отступ для мобильных */
            }
            
            body {
                padding-top: 76px; /* Меньший отступ для мобильных */
            }
        }

        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(245, 124, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(245, 124, 0, 0); }
        }
        
        @keyframes bounce {
            from { transform: translateY(0); }
            to { transform: translateY(-3px); }
        }
        :root {
            --primary-color: #4CAF50;
            --secondary-color: #388E3C;
            --accent-color: #8BC34A;
            --dark-color: #2E7D32;
            --light-color: #C8E6C9;
            --text-color: #333;
            --text-light: #fff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 40px; /* Компенсация высоты баннера */
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 40px; /* Смещаем ниже баннера */
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: top 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 15px;
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--light-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 0;
            padding-bottom: 35vh;
            padding-top: 200px;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 18px;
        }

        .btn-phone:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-phone {
            background-color: #388E3C;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-telegram {
            background-color: #0088cc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom:20px;
        }
        .btn-telegram:hover {
            background-color:  #005b88;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .btn-telegram i {
            margin-right: 10px;
            font-size: 20px;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 50px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background-color: #fff;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 0 20px;
            margin-bottom: 30px;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -50px;
            width: 100px;
            height: 2px;
            background-color: var(--primary-color);
            display: none;
        }

        .step h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .testimonial-author h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .testimonial-rating {
            color: #FFC107;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: var(--dark-color);
            color: #fff;
            text-align: center;
        }

        .cta h2 {
            font-size: 36px;
            color: #fff;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            max-width: 700px;
            color: #fff;

            margin: 0 auto 30px;
        }

        /* Footer */
        footer {
            background-color: #222;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: #fff;
            background-color: #444;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .step {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: var(--shadow);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                margin-top: 70px;
            }
            
            .hero h2 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 576px) {
            .logo h1 {
                font-size: 20px;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }
    </style>
</head>
<body>
    <!-- Promo Banner -->
    <div class="promo-banner" id="promoBanner">
        <div class="container">
            <span>Скидка 500 рублей на первый заказ по промокоду</span>
            <span class="promo-code">ЗАПРАВЬ</span>
        </div>
    </div>

    <!-- Header -->
    <header>
        <div class="container header-container">
            <div class="logo">
                <h1>ZapravCar</h1>
            </div>
            <button class="mobile-menu-btn" id="mobileMenuBtn">
                <i class="fas fa-bars"></i>
            </button>
            <nav>
                <ul id="navMenu">
                    <li><a href="#features">Преимущества</a></li>
                    <li><a href="#how-it-works">Как это работает</a></li>
                    <li><a href="#testimonials">Отзывы</a></li>
                    <li><a href="#cta">Заказать</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="container">
            <div class="hero-content fade-in">
                <h2>Доставка топлива к вашему автомобилю в Адлере и Сочи</h2>
                <p>Быстро, безопасно и по цене АЗС. Заправьтесь, не тратя время на очереди!</p>
                <a href="https://t.me/zapravcar_bot" class="btn btn-telegram" target="_blank">
                    <i class="fab fa-telegram"></i> Заказать в Telegram-боте
                </a>
                <a href="tel:+79183093393" class="btn btn-phone">Позвонить нам</a>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="features" id="features">
        <div class="container">
            <div class="section-title fade-in">
                <h2>Почему выбирают нас</h2>
                <p>ZapravCar предлагает лучший сервис доставки топлива с гарантией качества</p>
            </div>
            <div class="features-grid">
                <div class="feature-card fade-in delay-1">
                    <div class="feature-icon">
                        <i class="fas fa-bolt"></i>
                    </div>
                    <h3>Быстрая и бесплатная доставка</h3>
                    <p>Среднее время доставки - 60 минут. Мы ценим ваше время и оперативно реагируем на заказы.</p>
                </div>
                <div class="feature-card fade-in delay-2">
                    <div class="feature-icon">
                        <i class="fas fa-shield-alt"></i>
                    </div>
                    <h3>Безопасность</h3>
                    <p>Все наши сотрудники прошли специальное обучение. Используем только сертифицированное оборудование.</p>
                </div>
                <div class="feature-card fade-in delay-3">
                    <div class="feature-icon">
                        <i class="fas fa-ruble-sign"></i>
                    </div>
                    <h3>Цена как на АЗС</h3>
                    <p>Мы не накручиваем цены. Вы платите за топливо столько же, сколько на заправке, но с дополнительным комфортом.</p>
                </div>
                <div class="feature-card fade-in delay-4">
                    <div class="feature-icon">
                        <i class="fas fa-gas-pump"></i>
                    </div>
                    <h3>Качественное топливо</h3>
                    <p>Гарантируем качество топлива, каждая партия топлива проходит испытания в сертифицированной лаборатории на соответствие ГОСТу. Предоставляем соответствующие сертификаты.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works Section -->
    <section class="how-it-works" id="how-it-works">
        <div class="container">
            <div class="section-title fade-in">
                <h2>Как это работает</h2>
                <p>Всего 3 простых шага до заправки вашего автомобиля</p>
            </div>
            <div class="steps">
                <div class="step fade-in delay-1">
                    <div class="step-number">1</div>
                    <h3>Оформите заказ</h3>
                    <p>Напишите в наш Telegram-бот, укажите адрес, тип и объем топлива.</p>
                </div>
                <div class="step fade-in delay-2">
                    <div class="step-number">2</div>
                    <h3>Подтвердите детали и способ оплаты</h3>
                    <p>Оплата возможна как в боте онлайн, так и за наличный рассчет на месте.</p>
                </div>
                <div class="step fade-in delay-3">
                    <div class="step-number">3</div>
                    <h3>Получите заправку</h3>
                    <p>Наш заправщик приедет в указанное место и заправит ваш автомобиль.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials Section -->
    <section class="testimonials" id="testimonials">
        <div class="container">
            <div class="section-title fade-in">
                <h2>Отзывы клиентов</h2>
                <p>Что говорят о нас наши клиенты</p>
            </div>
            <div class="testimonials-grid">
                <div class="testimonial-card fade-in delay-1">
                    <div class="testimonial-header">
                        <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Иван Петров" class="testimonial-avatar">
                        <div class="testimonial-author">
                            <h4>Иван Петров</h4>
                            <div class="testimonial-rating">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="testimonial-text">"Пользуюсь услугами ZapravCar уже несколько месяцев. Очень удобно, особенно когда работаешь удаленно и нет времени ехать на заправку. Топливо качественное, привозят быстро!"</p>
                </div>
                <div class="testimonial-card fade-in delay-2">
                    <div class="testimonial-header">
                        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Елена Смирнова" class="testimonial-avatar">
                        <div class="testimonial-author">
                            <h4>Елена Смирнова</h4>
                            <div class="testimonial-rating">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                            </div>
                        </div>
                    </div>
                    <p class="testimonial-text">"Как мама с двумя детьми, очень ценю сервис ZapravCar. Не нужно тащить детей на заправку или оставлять их в машине. Заправщик приезжает, когда мне удобно, и делает все сам."</p>
                </div>
                <div class="testimonial-card fade-in delay-3">
                    <div class="testimonial-header">
                        <img src="https://randomuser.me/api/portraits/men/67.jpg" alt="Алексей Козлов" class="testimonial-avatar">
                        <div class="testimonial-author">
                            <h4>Алексей Козлов</h4>
                            <div class="testimonial-rating">
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star"></i>
                                <i class="fas fa-star-half-alt"></i>
                            </div>
                        </div>
                    </div>
                    <p class="testimonial-text">"Заказал заправку ночью, когда все АЗС были закрыты. Удивило, что работают круглосуточно! Приехали за 25 минут, заправили аккуратно, без разливов. Рекомендую!"</p>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="cta" id="cta">
        <div class="container">
            <div class="section-title fade-in">
                <h2>Готовы попробовать?</h2>
                <p>Закажите доставку топлива прямо сейчас и оцените все преимущества нашего сервиса</p>
            </div>
            <a href="https://t.me/zapravcar_bot" class="btn btn-telegram fade-in delay-1" target="_blank">
                <i class="fab fa-telegram"></i> Заказать в Telegram
            </a>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-column">
                    <h3>ZapravCar</h3>
                    <p>Сервис доставки топлива к вашему автомобилю. Быстро, безопасно и по цене АЗС.</p>
                    <div class="social-links">
                        <a href="#"><i class="fab fa-telegram"></i></a>
                        <a href="#"><i class="fab fa-vk"></i></a>
                        <a href="#"><i class="fab fa-instagram"></i></a>
                    </div>
                </div>
                <div class="footer-column">
                    <h3>Контакты</h3>
                    <ul>
                        <li><i class="fas fa-phone"></i> +7 (918) 309-33-93</li>
                        <li><i class="fas fa-envelope"></i> info@zapravcar.ru</li>
                        <li><i class="fas fa-map-marker-alt"></i>г. Сочи</li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>Ссылки</h3>
                    <ul>
                        <li><a href="#features">Преимущества</a></li>
                        <li><a href="#how-it-works">Как это работает</a></li>
                        <li><a href="#testimonials">Отзывы</a></li>
                        <li><a href="#cta">Заказать</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>Часы работы</h3>
                    <ul>
                        <li>Пн-Вс: 24/7</li>
                        <li>Без выходных</li>
                    </ul>
                </div>
            </div>
            <div class="copyright">
                <p>&copy; 2025 ZapravCar. Все права защищены.</p>
            </div>
        </div>
    </footer>
    <script>
        // Ждем полной загрузки DOM
        document.addEventListener('DOMContentLoaded', function() {
            // Promo Banner Functionality
            const promoBanner = document.getElementById('promoBanner');
            const header = document.querySelector('header');
            
 
            // Mobile menu toggle
            document.getElementById('mobileMenuBtn').addEventListener('click', function() {
                document.getElementById('navMenu').classList.toggle('show');
            });
    
            // Smooth scrolling for anchor links
            document.querySelectorAll('a[href^="#"]').forEach(anchor => {
                anchor.addEventListener('click', function(e) {
                    e.preventDefault();
                    
                    document.querySelector(this.getAttribute('href')).scrollIntoView({
                        behavior: 'smooth'
                    });
                    
                    // Close mobile menu if open
                    document.getElementById('navMenu').classList.remove('show');
                });
            });
    
            // Animation on scroll
            const fadeElements = document.querySelectorAll('.fade-in');
            
            const fadeObserver = new IntersectionObserver((entries) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.style.opacity = 1;
                        entry.target.style.transform = 'translateY(0)';
                    }
                });
            }, {
                threshold: 0.1
            });
    
            fadeElements.forEach(element => {
                element.style.opacity = 0;
                element.style.transform = 'translateY(20px)';
                element.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
                fadeObserver.observe(element);
            });
    
            // Обновление года в копирайте (только если элемент существует)
            const copyrightElement = document.querySelector('.copyright p');
            if (copyrightElement) {
                copyrightElement.innerHTML = `&copy; ${new Date().getFullYear()} ZapravCar. Все права защищены.`;
            }
        });
    </script>
</body>
</html>