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

        :root {
            --primary: #ff6b35;
            --primary-dark: #e55a2b;
            --secondary: #f7931e;
            --accent: #0066cc;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-500: #6b7280;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --success: #10b981;
            --radius: 1rem;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--gray-50);
            color: var(--gray-800);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* ── Topbar ── */
        .topbar {
            background: #fff;
            border-bottom: 1px solid var(--gray-200);
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .topbar-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            text-decoration: none;
        }
        .topbar-logo span { color: var(--primary); }
        .topbar-link {
            font-size: 14px;
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.15s;
        }
        .topbar-link:hover { color: var(--primary); }

        /* ── Hero ── */
        .hero {
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, #2d1810 100%);
            color: #fff;
            text-align: center;
            padding: 64px 24px 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-badges {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,107,53,0.2);
            border: 1px solid rgba(255,107,53,0.4);
            border-radius: 999px;
            padding: 4px 14px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #ffb088;
        }
        .hero-badge--lease {
            background: rgba(16,185,129,0.2);
            border-color: rgba(16,185,129,0.4);
            color: #6ee7b7;
        }
        .hero-domain {
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 20px;
            word-break: break-all;
            position: relative;
        }
        .hero-domain .tld { color: var(--primary); }
        .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .hero-pricing {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .hero-price-block { text-align: center; }
        .hero-price-amount {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 700;
            color: #fff;
        }
        .hero-price-label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-top: 4px;
        }
        .hero-price-divider {
            width: 1px;
            background: rgba(255,255,255,0.2);
            align-self: stretch;
        }
        .hero-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 0.5rem;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.1s, box-shadow 0.15s;
            display: inline-block;
        }
        .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.3); }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.35);
            padding: 14px 32px;
            border-radius: 0.5rem;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.15s;
            display: inline-block;
        }
        .btn-outline:hover { background: rgba(255,255,255,0.1); }

        /* ── Main layout ── */
        .main {
            max-width: 1000px;
            margin: -32px auto 0;
            padding: 0 16px 60px;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 24px;
            width: 100%;
            position: relative;
        }
        @media (max-width: 768px) {
            .main { grid-template-columns: 1fr; margin-top: -16px; }
        }

        /* ── Cards ── */
        .card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
            padding: 28px;
            border: 1px solid var(--gray-200);
        }
        .card + .card { margin-top: 20px; }
        .card h2 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--gray-900);
        }

        .hero-desc .description-content { max-width: 800px; margin: 0 auto; text-align: left; }
        .hero-desc .description-content h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; color: #fff; }
        .hero-desc .description-content h2:first-child { margin-top: 0; }
        .hero-desc .description-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; color: rgba(255,255,255,0.9); }
        .hero-desc .description-content h4 { font-size: 1rem; font-weight: 600; margin: 20px 0 8px; color: rgba(255,255,255,0.9); }
        .hero-desc .description-content p { line-height: 1.7; color: rgba(255,255,255,0.7); margin: 0 0 12px; font-size: 15px; }
        .hero-desc .description-content p:last-child { margin-bottom: 0; }
        .hero-desc .description-content strong { color: rgba(255,255,255,0.9); }
        .hero-desc .description-content em { font-style: italic; }
        .hero-desc .description-content hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 28px 0; }

        /* ── USP's ── */
        .usps { display: flex; flex-direction: column; gap: 16px; }
        .usp {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .usp-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .usp-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
        .usp-text span { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

        /* ── Domain info ── */
        .domain-info { display: flex; flex-direction: column; gap: 0; }
        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 14px;
        }
        .info-row:last-child { border-bottom: none; }
        .info-label { color: var(--gray-500); }
        .info-value { font-weight: 600; color: var(--gray-900); }
        .info-value--price { color: var(--primary); font-size: 17px; }
        .badge-available {
            background: #dcfce7;
            color: #166534;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
        }

        /* ── CTA card (verkoop je domeinen) ── */
        .cta-card {
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
            color: #fff;
            border: none;
        }
        .cta-card h2 { color: #fff; }
        .cta-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 0.5rem;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.1s, box-shadow 0.15s;
        }
        .btn-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.3); }

        /* ── Formulier ── */
        .form-group { margin-bottom: 14px; }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 13px;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.15s, box-shadow 0.15s;
            background: #fff;
            color: var(--gray-800);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 80px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            border: none;
            padding: 13px;
            border-radius: 0.5rem;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.1s, box-shadow 0.15s;
        }
        .btn-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.3); }

        .alert-success {
            background: #dcfce7;
            border: 1px solid #86efac;
            color: #166534;
            border-radius: 0.5rem;
            padding: 14px 16px;
            font-size: 14px;
            margin-bottom: 16px;
        }
        .alert-error {
            background: #fee2e2;
            border: 1px solid #fca5a5;
            color: #991b1b;
            border-radius: 0.5rem;
            padding: 14px 16px;
            font-size: 14px;
            margin-bottom: 16px;
        }

        /* ── Trust bar ── */
        .trust-bar {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 20px 16px;
            background: #fff;
            border-top: 1px solid var(--gray-200);
            margin-top: auto;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--gray-500);
            font-weight: 500;
        }

        /* ── Footer ── */
        footer {
            background: var(--gray-900);
            color: var(--gray-500);
            text-align: center;
            padding: 20px;
            font-size: 13px;
        }
        footer a { color: var(--primary); text-decoration: none; }
        footer a:hover { text-decoration: underline; }

        /* ── Breadcrumb ── */
        .breadcrumb {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--gray-500);
            text-decoration: none;
            transition: color .15s;
        }
        .breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
        .breadcrumb-sep { opacity: .5; }
        .breadcrumb-current { color: var(--gray-900); font-weight: 600; }

        /* ── Related domains ── */
        /* ── Domeinprofiel (SEO content) ── */
        .domain-profile {
            background: #fff;
            border-top: 1px solid var(--gray-200);
            padding: 48px 16px;
        }
        .domain-profile-inner { max-width: 1100px; margin: 0 auto; }
        .domain-profile h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--gray-900);
            margin: 0 0 24px;
            text-align: center;
        }
        .domain-profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
        }
        .dp-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 20px 22px;
        }
        .dp-card h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0 0 10px;
        }
        .dp-card p {
            font-size: 13px;
            color: var(--gray-700, #475569);
            line-height: 1.55;
            margin: 0;
        }
        .dp-card code {
            background: rgba(255,107,53,.1);
            color: var(--primary);
            padding: 1px 6px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .related-section {
            background: var(--gray-50);
            padding: 48px 16px;
            border-top: 1px solid var(--gray-200);
        }
        .related-inner { max-width: 1100px; margin: 0 auto; }
        .related-title {
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 24px;
            color: var(--gray-900);
            text-align: center;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
        }
        .related-card {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            padding: 14px 16px;
            text-decoration: none;
            color: inherit;
            transition: border-color .15s, transform .15s, box-shadow .15s;
        }
        .related-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,.06);
        }
        .related-name {
            font-weight: 700;
            color: var(--gray-900);
            font-size: 14px;
        }
        .related-branche {
            font-size: 10px;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .04em;
            margin-top: 2px;
        }
        .related-meta {
            font-size: 12px;
            color: var(--gray-500);
            font-weight: 500;
        }
        .related-more {
            text-align: center;
            margin-top: 24px;
        }
        .related-more a {
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            font-size: 14px;
        }
        .related-more a:hover { text-decoration: underline; }

        /* ── Structured data (hidden) ── */
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
