Ковш 400 JCB

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
    <title>Ковши для JCB 3CX | Прочная сталь, высокая производительность</title>
    <!-- Google Fonts & simple reset -->
    <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fefefe;
            color: #1a2c3e;
            line-height: 1.4;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* шапка */
        .header {
            background: #0b2b26;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5b042, #e07c1f);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .logo span {
            color: #f5b042;
            background: none;
            -webkit-background-clip: unset;
        }
        .logo small {
            font-size: 0.85rem;
            font-weight: 400;
            color: #cbd5e1;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            color: #f5f3ef;
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #f5b042;
        }
        .btn-nav {
            background: #e07c1f;
            padding: 8px 18px;
            border-radius: 40px;
            color: white !important;
            font-weight: 700;
        }
        .btn-nav:hover {
            background: #c06912;
            transform: scale(0.97);
        }

        /* hero */
        .hero {
            background: linear-gradient(105deg, #f0f4f0 0%, #e9ece9 100%);
            padding: 70px 0 60px;
            border-bottom: 1px solid #dee2e0;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .hero-content {
            flex: 1.2;
        }
        .hero-badge {
            background: #0b2b26;
            color: #f5b042;
            display: inline-block;
            padding: 4px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-title span {
            color: #e07c1f;
        }
        .hero-desc {
            font-size: 1.2rem;
            color: #2c4251;
            margin-bottom: 28px;
            max-width: 90%;
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 30px;
        }
        .stat-item p:first-child {
            font-weight: 800;
            font-size: 1.8rem;
            color: #0b2b26;
        }
        .btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: #e07c1f;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            text-decoration: none;
            display: inline-block;
        }
        .btn-primary:hover {
            background: #c06512;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #0b2b26;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            color: #0b2b26;
            cursor: pointer;
            transition: 0.2s;
            text-decoration: none;
        }
        .btn-outline:hover {
            background: #0b2b26;
            color: white;
        }
        .hero-image {
            flex: 1;
            min-width: 260px;
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2));
        }

        /* секции */
        section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .section-sub {
            text-align: center;
            color: #4a6272;
            max-width: 680px;
            margin: 0 auto 48px;
            font-size: 1.1rem;
        }

        /* преимущества */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }
        .feature-card {
            background: white;
            border-radius: 28px;
            padding: 28px 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            transition: all 0.25s;
            border: 1px solid #eef2f0;
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            border-color: #e07c1f30;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        /* каталог */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .product-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(0,0,0,0.05);
            transition: 0.2s;
            border: 1px solid #eef0ec;
        }
        .product-card:hover {
            box-shadow: 0 20px 35px -8px rgba(0,0,0,0.15);
        }
        .product-img {
            background: #eef2e8;
            text-align: center;
            padding: 32px 16px;
        }
        .product-img img {
            max-width: 80%;
            height: 150px;
            object-fit: contain;
        }
        .product-info {
            padding: 24px 20px 28px;
        }
        .product-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .product-spec {
            color: #e07c1f;
            font-weight: 600;
            margin: 8px 0;
        }
        .product-desc {
            color: #4a5562;
            font-size: 0.9rem;
            margin: 12px 0;
        }
        .price {
            font-weight: 800;
            font-size: 1.5rem;
            color: #0b2b26;
            margin: 15px 0 10px;
        }
        .btn-card {
            width: 100%;
            background: #0b2b26;
            padding: 12px;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            color: white;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .btn-card:hover {
            background: #e07c1f;
        }

        /* прочность */
        .strength-banner {
            background: linear-gradient(120deg, #1e3a32, #0f2923);
            color: white;
            border-radius: 48px;
            padding: 50px 40px;
            text-align: center;
        }
        .strength-banner h2 {
            font-size: 2rem;
        }
        .strength-banner p {
            max-width: 700px;
            margin: 20px auto;
        }

        /* форма */
        .form-section {
            background: #f8faf7;
            border-radius: 48px;
            padding: 48px 40px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
        }
        .form-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }
        .form-content {
            flex: 1;
        }
        .form-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .contact-form input, .contact-form textarea {
            padding: 14px 18px;
            border: 1px solid #cfdfd4;
            border-radius: 32px;
            font-family: inherit;
            font-size: 1rem;
            background: white;
        }
        .contact-form button {
            background: #e07c1f;
            border: none;
            padding: 14px;
            border-radius: 40px;
            font-weight: 700;
            color: white;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .contact-form button:hover {
            background: #bc6314;
        }
        .form-image {
            flex: 0.8;
            text-align: center;
        }
        .form-image img {
            max-width: 100%;
        }

        footer {
            background: #0f241f;
            color: #bcd0c8;
            padding: 40px 0;
            text-align: center;
            font-size: 0.85rem;
        }
        @media (max-width: 760px) {
            .hero-title { font-size: 2.2rem; }
            .container { padding: 0 20px; }
            .hero-grid { flex-direction: column-reverse; text-align: center; }
            .hero-desc { max-width: 100%; }
            .hero-stats { justify-content: center; }
            .btn-group { justify-content: center; }
            .section-title { font-size: 1.9rem; }
        }
    </style>
</head>
<body>
    <header class="header">
        <div class="container header-inner">
            <div class="logo">
                BUCKET PRO<span>®</span>
                <small>для JCB 3CX & погрузчиков</small>
            </div>
            <div class="nav-links">
                <a href="#catalog">Каталог</a>
                <a href="#strength">Преимущества</a>
                <a href="#contact" class="btn-nav">Связаться</a>
            </div>
        </div>
    </header>

    <section class="hero">
        <div class="container hero-grid">
            <div class="hero-content">
                <div class="hero-badge">⚡ Официальная поставка • сталь Hardox</div>
                <h1 class="hero-title">Ковши для <span>JCB 3CX</span> — максимальная грузоподъемность</h1>
                <p class="hero-desc">Усиленные ковши с прямым монтажом на экскаватор-погрузчик JCB 3CX (и аналоги 3CX Super, 4CX). Высокая износостойкость, гарантия 24 месяца.</p>
                <div class="hero-stats">
                    <div class="stat-item"><p>15+</p><span>лет на рынке</span></div>
                    <div class="stat-item"><p>1200+</p><span>установлено</span></div>
                    <div class="stat-item"><p>450+</p><span>отзывов 5★</span></div>
                </div>
                <div class="btn-group">
                    <a href="#catalog" class="btn-primary">Выбрать ковш →</a>
                    <a href="#contact" class="btn-outline">Получить консультацию</a>
                </div>
            </div>
            <div class="hero-image">
                <!-- Иконка / изображение ковша JCB стилизованное -->
                <img src="https://cdn-icons-png.flaticon.com/512/3125/3125713.png" alt="Ковш экскаватора-погрузчика JCB 3CX" style="width: 85%; max-width: 320px;">
            </div>
        </div>
    </section>

    <!-- Преимущества (материалы/прочность) -->
    <section id="strength">
        <div class="container">
            <h2 class="section-title">Почему выбирают наши ковши?</h2>
            <p class="section-sub">Спроектированы под тяжелые условия, совместимость 1:1 с оригинальной навеской JCB 3CX</p>
            <div class="features-grid">
                <div class="feature-card"><div class="feature-icon">🔩</div><h3>Сталь Hardox 450</h3><p>Повышенная устойчивость к истиранию и ударам. Кромка усилена наплавкой.</p></div>
                <div class="feature-card"><div class="feature-icon">⚙️</div><h3>Точная посадка</h3><p>Пазлы, проушины и геометрия полностью соответствуют JCB 3CX. Быстрая замена.</p></div>
                <div class="feature-card"><div class="feature-icon">⛏️</div><h3>Усиленные зубья</h3><p>Сменные зубья системы ESCO / JCB, закаленные, для скальных и мерзлых грунтов.</p></div>
                <div class="feature-card"><div class="feature-icon">🛡️</div><h3>Гарантия 2 года</h3><p>На все модели — защита от деформации и заводских дефектов.</p></div>
            </div>
        </div>
    </section>

    <!-- каталог ковшей -->
    <section id="catalog">
        <div class="container">
            <h2 class="section-title">🔥 Модельный ряд для JCB 3CX</h2>
            <p class="section-sub">Подходит для ковшового и обратного оборудования, погрузочные и экскаваторные ковши</p>
            <div class="catalog-grid">
                <!-- карточка 1 -->
                <div class="product-card">
                    <div class="product-img"><img src="https://cdn-icons-png.flaticon.com/512/936/936490.png" alt="Ковш погрузочный"></div>
                    <div class="product-info">
                        <div class="product-title">Ковш погрузочный</div>
                        <div class="product-spec">JCB 3CX • 1.0 м³ • ширина 2100 мм</div>
                        <div class="product-desc">Универсальный прямой ковш для сыпучих материалов, усиленная спинка, режущая кромка Boron.</div>
                        <div class="price">₽137 500</div>
                        <button class="btn-card" data-product="Ковш погрузочный 1.0м³ JCB 3CX">Запросить цену</button>
                    </div>
                </div>
                <!-- карточка 2 -->
                <div class="product-card">
                    <div class="product-img"><img src="https://cdn-icons-png.flaticon.com/512/1019/1019820.png" alt="Скальный ковш"></div>
                    <div class="product-info">
                        <div class="product-title">Ковш скальный X-HEAVY</div>
                        <div class="product-spec">JCB 3CX • 0.75 м³ • с защитой от абразива</div>
                        <div class="product-desc">Для гранита, щебня и мерзлого грунта. Утолщенные стенки 14 мм, бронефутеровка.</div>
                        <div class="price">₽189 200</div>
                        <button class="btn-card" data-product="Ковш скальный X-HEAVY 0.75м³">Запросить цену</button>
                    </div>
                </div>
                <!-- карточка 3 -->
                <div class="product-card">
                    <div class="product-img"><img src="https://cdn-icons-png.flaticon.com/512/2241/2241988.png" alt="Ковш-грязевой"></div>
                    <div class="product-info">
                        <div class="product-title">Ковш дренажный / планировочный</div>
                        <div class="product-spec">JCB 3CX • 1.2 м³ • перфорация</div>
                        <div class="product-desc">Легкий ковш для песка, торфа и влажных грунтов. Отверстия для фильтрации.</div>
                        <div class="price">₽146 900</div>
                        <button class="btn-card" data-product="Ковш дренажный 1.2м³">Запросить цену</button>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- блок прочности и сервиса -->
    <div class="container" style="margin-top: -30px; margin-bottom: 20px;">
        <div class="strength-banner">
            <h2>💪 Адаптированы под JCB 3CX / 3CX Super / 4CX</h2>
            <p>Прямая замена оригинальных ковшей без доработок. Усиленные проушины и палец 45 мм — гарантия надежности при максимальных нагрузках.</p>
            <p style="font-size: 1rem;">✔️ Сертификаты качества ✔️ Подбор по серийному номеру техники ✔️ Доставка по РФ</p>
        </div>
    </div>

    <!-- форма обратной связи + консультация-->
    <section id="contact">
        <div class="container form-section">
            <div class="form-grid">
                <div class="form-content">
                    <h3>📞 Нужна помощь с выбором ковша для JCB 3CX?</h3>
                    <p style="margin-bottom: 24px;">Оставьте заявку — инженер подберет идеальный ковш по вашим задачам, рассчитает сроки и скидку на партию.</p>
                    <form class="contact-form" id="leadForm">
                        <input type="text" placeholder="Ваше имя" id="name" required>
                        <input type="tel" placeholder="Телефон или WhatsApp" id="phone" required>
                        <textarea rows="3" placeholder="Модель техники / дополнительные пожелания..." id="message"></textarea>
                        <button type="submit">Отправить заявку →</button>
                        <small style="text-align: center; margin-top: 8px;">Наши менеджеры свяжутся в течение 20 минут</small>
                    </form>
                </div>
                <div class="form-image">
                    <img src="https://cdn-icons-png.flaticon.com/512/1795/1795856.png" alt="Схема ковша JCB" style="max-width: 210px;">
                </div>
            </div>
        </div>
    </section>

    <footer>
        <div class="container">
            <p>© 2025 BUCKET PRO — специализированные ковши для JCB 3CX и экскаваторов-погрузчиков. Все права защищены.</p>
            <p style="margin-top: 12px;">📍 Склад запчастей: Москва, Рязань, Новосибирск | Доставка по всей России и СНГ</p>
        </div>
    </footer>

    <!-- модальное уведомление (простой Toast) -->
    <div id="toastMsg" style="position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: #0b2b26; color: #f5b042; padding: 12px 28px; border-radius: 50px; font-weight: 600; box-shadow: 0 8px 20px rgba(0,0,0,0.2); z-index: 1000; opacity: 0; transition: 0.2s; pointer-events: none;">Сообщение</div>

    <script>
        // всплывающее уведомление
        function showToast(message, isError = false) {
            const toast = document.getElementById('toastMsg');
            toast.style.opacity = '1';
            toast.style.background = isError ? '#a1220a' : '#0b2b26';
            toast.style.color = '#fff';
            toast.innerText = message;
            setTimeout(() => {
                toast.style.opacity = '0';
            }, 2800);
        }

        // обработчик "запросить цену" у карточек
        const btns = document.querySelectorAll('.btn-card');
        btns.forEach(btn => {
            btn.addEventListener('click', (e) => {
                const product = btn.getAttribute('data-product') || 'ковш';
                const contactSection = document.getElementById('contact');
                // подсказка пользователю
                showToast(`✅ Товар "${product}" — укажите контакты в форме ниже, мы отправим КП`, false);
                contactSection.scrollIntoView({ behavior: 'smooth', block: 'center' });
                // предзаполним поле сообщения
                const msgTextarea = document.getElementById('message');
                if (msgTextarea && !msgTextarea.value.includes(product)) {
                    if(msgTextarea.value.trim() === "") {
                        msgTextarea.value = `Интересует: ${product}, JCB 3CX. Просьба прислать цену и наличие.`;
                    } else {
                        msgTextarea.value = msgTextarea.value + `\nИнтерес: ${product}`;
                    }
                }
            });
        });

        // форма отправки (имитация лид-запроса)
        const form = document.getElementById('leadForm');
        if(form) {
            form.addEventListener('submit', (e) => {
                e.preventDefault();
                const name = document.getElementById('name').value.trim();
                const phone = document.getElementById('phone').value.trim();
                if(!name || !phone) {
                    showToast('Пожалуйста, укажите имя и телефон для связи', true);
                    return;
                }
                const message = document.getElementById('message').value;
                // имитация отправки на сервер (можно заменить на реальный endpoint)
                console.log('Форма отправлена:', {name, phone, message});
                showToast(`Спасибо, ${name}! Менеджер свяжется с вами в ближайшее время.`, false);
                form.reset();
                // дополнительно — можно отправить через fetch на demo, но здесь просто демо
                // отправка аналитики
                try {
                    // заглушка для реального запроса при необходимости
                    // fetch('/api/lead', {method:'POST', body: JSON.stringify({name, phone, message}) })
                } catch(e) {}
            });
        }

        // Плавный скролл для навигационных ссылок
        document.querySelectorAll('.nav-links a, .btn-primary, .btn-outline').forEach(anchor => {
            anchor.addEventListener('click', function(e) {
                const href = this.getAttribute('href');
                if(href && href.startsWith('#') && href !== '#') {
                    e.preventDefault();
                    const targetId = href.substring(1);
                    const target = document.getElementById(targetId);
                    if(target) {
                        target.scrollIntoView({ behavior: 'smooth', block: 'start' });
                    }
                }
            });
        });
        // также для кнопок каталога ссылка -> catalog
        const catalogLink = document.querySelector('.btn-primary');
        if(catalogLink && catalogLink.getAttribute('href') === '#catalog') {
            // уже обработано выше
        }
    </script>
</body>
</html>

Обратный звонок
Запрос успешно отправлен!
Имя *
Телефон *
Предзаказ
Предзаказ успешно отправлен!
Имя *
Телефон *
Добавить в корзину
Название товара
100 ₽
1 шт.
Перейти в корзину
Заказ в один клик

Я ознакомлен и согласен с условиями оферты и политики конфиденциальности.