<!DOCTYPE html>
<html lang="nl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>VeroCon | Webhosting & AI-oplossingen</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
    <style>
        :root {
            --bg-black: #050505;
            --card-dark: #111111;
            --text-white: #ffffff;
            --text-gray: #a1a1a1;
            /* VeroCon Gradients */
            --gradient-primary: linear-gradient(90deg, #b340be 0%, #0f56d5 100%);
            --accent-purple: #940fc9;  
            --accent-orange: #0055ee;
        }

        body {
            font-family: 'Inter', sans-serif;
            margin: 0; padding: 0;
      
            background: linear-gradient(45deg, #370038, black, #00193a);
            color: var(--text-white);
            display: flex; justify-content: center; align-items: center;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 700px; width: 90%; text-align: center;
            padding: 2rem;
        }

        .logo {
            max-width: 280px; height: auto; margin-bottom: 3rem;
        }

        .hero-title {
            font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem;
            line-height: 1.1; letter-spacing: -1px;
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sub-text {
            font-size: 1.25rem; color: var(--text-gray); line-height: 1.6;
            margin-bottom: 2.5rem; font-weight: 300;
        }

        .highlight-box {
            background: var(--card-dark);
            border: 1px solid #222; border-radius: 16px;
            padding: 2.5rem; margin-bottom: 3rem;
            text-align: left; position: relative;
        }

        .highlight-box h2 {
            font-size: 1.5rem; margin-top: 0; font-weight: 600;
        }

        .features {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem;
        }

        .feature-item {
            display: flex; align-items: center; font-size: 0.95rem; color: var(--text-gray);
        }

        .feature-item::before {
            content: ""; width: 8px; height: 8px; background: var(--accent-orange);
            border-radius: 50%; margin-right: 12px; box-shadow: 0 0 10px var(--accent-orange);
        }

        .cta-button {
            display: inline-block; background: var(--gradient-primary);
            color: white; padding: 1.1rem 2.5rem; border-radius: 50px;
            text-decoration: none; font-weight: 700; font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(176, 71, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 122, 0, 0.4);
        }

        .footer {
            margin-top: 4rem; font-size: 0.85rem; color: #444; letter-spacing: 1px;
        }
    </style>
</head>
<body>
    <div class="container">
        <img src="https://verocon.nl/wp-content/uploads/2025/12/Verocon-logo-def-rechthoek-jouw-IT-wit.png" alt="Verocon Logo" class="logo">

        <h1 class="hero-title"><span class="gradient-text">Webhosting</span></h1>
        
        <p class="sub-text">
            Je bevindt je op een actieve node van het VeroCon netwerk. Wij leveren high-performance hostingoplossingen die met u meegroeien, ondersteund door nuchtere techniek en direct contact.
        </p>

        <div class="highlight-box">
            <h2>Jouw data veilig, <span style="color: var(--accent-purple)">lokaal</span> & <span style="color: var(--accent-orange)">persoonlijk</span></h2>
            <div class="features">
                <div class="feature-item">Infrastructuur & Hosting</div>
                <div class="feature-item">AI Strategy & Architecture</div>
                <div class="feature-item">Privacy zonder compromis</div>
                <div class="feature-item">Geen Big Tech, wel contact</div>
            </div>
        </div>

        <a href="https://verocon.nl" class="cta-button">Ik wil ook webhosting</a>

        <div class="footer">
            &copy; VeroCon - Jouw IT, onze kracht
        </div>
    </div>
</body>
</html>