<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>webdesignersdesk — Website Builder for Professionals</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;400;500;600;700;800&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <meta name="google-site-verification" content="2XqbuSSVyxyMy_-y9_jO7GFTbGl6-4K3CINe8wsoKow" />
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background: #fbfdfe;
            color: #1a2c3e;
            line-height: 1.5;
        }
        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --accent: #06b6d4;
            --gray-bg: #f8fafc;
            --card-shadow: 0 20px 35px -12px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
            --hover-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
            --border-light: #e2e8f0;
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid var(--border-light);
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .logo i { color: var(--primary); margin-right: 8px; }
        .nav-links { display: flex; gap: 32px; font-weight: 500; }
        .nav-links a { text-decoration: none; color: #2d3e50; transition: color 0.2s; }
        .nav-links a:hover { color: var(--primary); }
        .btn-outline {
            border: 1.5px solid var(--primary);
            background: transparent;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
        }
        .btn-outline:hover { background: var(--primary); color: white; }
        .btn-primary {
            background: linear-gradient(95deg, var(--primary), var(--accent));
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(37,99,235,0.25);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 20px -10px var(--primary); }
        .hero { padding: 70px 0 60px; text-align: center; }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e293b, #2563eb);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 24px;
        }
        .hero p { font-size: 1.25rem; color: #334155; max-width: 720px; margin: 0 auto 32px; }
        .hero-badge {
            background: #eef2ff;
            display: inline-block;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 24px;
        }
        .section-title { text-align: center; font-size: 2.25rem; font-weight: 700; margin: 60px 0 16px; }
        .section-sub { text-align: center; color: #475569; max-width: 680px; margin: 0 auto 48px; font-size: 1.1rem; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 32px; margin: 40px 0 20px; }
        .feature-card {
            background: white;
            border-radius: 32px;
            padding: 32px 24px;
            transition: all 0.25s;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(226,232,240,0.6);
        }
        .feature-card:hover { transform: translateY(-6px); box-shadow: var(--hover-shadow); }
        .feature-icon {
            width: 58px; height: 58px;
            background: linear-gradient(145deg, #eef2ff, #ffffff);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            color: var(--primary);
        }
        .feature-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
        .feature-card p { color: #475569; }
        .steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin: 60px 0 70px; }
        .step {
            flex: 1; min-width: 220px; text-align: center;
            background: var(--gray-bg); padding: 32px 20px; border-radius: 48px;
        }
        .step-number {
            width: 48px; height: 48px;
            background: var(--primary); color: white;
            font-weight: 800; font-size: 1.4rem;
            border-radius: 60px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
        }
        .cta-section {
            background: linear-gradient(115deg, #0f172a 0%, #1e293b 100%);
            border-radius: 48px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            margin: 70px 0;
        }
        .cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 18px; }
        .cta-section .btn-primary { background: white; color: #0f172a; box-shadow: none; margin-top: 20px; }
        footer {
            border-top: 1px solid var(--border-light);
            padding: 40px 0 32px;
            text-align: center;
            color: #5b6e8c;
            font-size: 0.9rem;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="navbar">
        <div class="logo"><i class="fas fa-laptop-code"></i> webdesignersdesk</div>
        <div class="nav-links">
            <a href="#">Home</a>
            <a href="#">Features</a>
            <a href="#">Pricing</a>
            <a href="#">Support</a>
        </div>
        <button class="btn-outline">Sign In</button>
    </div>

    <div class="hero">
        <div class="hero-badge"><i class="fas fa-rocket"></i> Your reliable website builder — webdesignersdesk</div>
        <h1>Create websites<br>that inspire</h1>
        <p>An intelligent platform for web designers and creative teams. No coding, no technical complexity — powerful tools, inspiring design, and full control.</p>
        <button class="btn-primary"><i class="fas fa-magic"></i> Start for Free</button>
    </div>

    <div class="section-title">Everything for the perfect website</div>
    <div class="section-sub">Modern webdesignersdesk technologies that solve real challenges: speed, reliability, and smart content management.</div>

    <div class="section-title" style="margin-top: 20px;">Build websites intuitively</div>
    <div class="section-sub">Visual builder, powerful backend, and ready-made solutions — from idea to launch in just a few hours.</div>

    <div class="steps">
        <div class="step"><div class="step-number">1</div><h3>Choose a Style</h3><p>Responsive templates, hundreds of sections, and animations. Customize your brand without coding.</p></div>
        <div class="step"><div class="step-number">2</div><h3>Add Content</h3><p>Texts, galleries, videos, and forms — drag and drop elements and edit everything live online.</p></div>
        <div class="step"><div class="step-number">3</div><h3>Publish & Grow</h3><p>One click to publish, built-in SEO optimization, and analytics. Your website is ready for millions of visitors.</p></div>
    </div>

    <div class="cta-section">
        <h2>Ready to create the website of your dreams?</h2>
        <p style="font-size:1.1rem; margin-bottom:8px; opacity:0.9;">Join thousands of webdesignersdesk users building web projects without unnecessary complexity.</p>
        <button class="btn-primary" style="background:white; color:#0f172a;"><i class="fas fa-play"></i> Launch Demo Project</button>
        <p style="margin-top:28px; font-size:0.85rem;">Free plan forever. Advanced features available on demand.</p>
    </div>

    <footer>
        <p><i class="fas fa-laptop-code"></i> webdesignersdesk — website builder for web designers | © 2026</p>
        <p style="margin-top:12px;">Intelligent recovery, powerful caching, and a user-friendly interface.<br>Last updated: 09.06.2026</p>
        <div style="margin-top:20px;">
            <span class="tech-badge"><i class="fas fa-database"></i> SQLite Ready</span>
            <span class="tech-badge"><i class="fas fa-bolt"></i> PDO Driver</span>
            <span class="tech-badge"><i class="fas fa-lock"></i> GPL Compatible</span>
        </div>
    </footer>
</div>

<script>
    document.querySelectorAll('.btn-primary').forEach(btn => {
        btn.addEventListener('click', () => alert('✨ webdesignersdesk Demo Mode — control panel with AI assistant and page editor!'));
    });
</script>
</body>
</html>