<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>DeutKap | Jetzt Konto eröffnen</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://i.gyazo.com/efd09c83a727336f2c80bd94ea06ad0d.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet" />
<style>
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--navy: #1a1a2e;
--accent: #1565c0;
--gold: #c8a04a;
--white: #ffffff;
--off-white: #f5f6fa;
--text: #222222;
--muted: #555555;
--border: #d0d5dd;
--green: #1b7a4a;
--red-bar: #c0392b;
}
body {
font-family: "Inter", sans-serif;
background: #e8e8e8;
color: var(--text);
font-size: 15px;
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
}
img {
display: block;
max-width: 100%;
}
/* ── WRAPPER 600px ── */
.wrapper {
max-width: 600px;
margin: 0 auto;
background: var(--off-white);
overflow: hidden;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
/* ── URGENCY BAR ── */
.urgency-bar {
background: var(--red-bar);
color: #fff;
text-align: center;
font-size: 12px;
font-weight: 600;
padding: 8px 16px;
letter-spacing: 0.2px;
}
/* ── HEADER ── */
.site-header {
background: var(--navy);
display: flex;
align-items: center;
justify-content: center;
padding: 14px 28px;
border-bottom: 3px solid var(--gold);
}
.logo {
display: flex;
align-items: center;
gap: 8px;
}
.logo-eagle {
font-size: 24px;
color: var(--gold);
}
.logo-text {
font-size: 19px;
font-weight: 800;
color: var(--white);
letter-spacing: 4px;
text-transform: uppercase;
}
.header-divider {
width: 32px;
height: 3px;
background: var(--accent);
border-radius: 2px;
}
/* ── BODY: two col table ── */
.lp-table {
width: 100%;
border-collapse: collapse;
}
.lp-table td {
vertical-align: top;
padding: 36px 24px;
}
.col-left {
width: 55%;
border-right: 1px solid var(--border);
background: #fff;
}
.col-right {
width: 45%;
background: var(--off-white);
vertical-align: middle !important;
}
/* ── LEFT COL ── */
.col-left h2 {
font-size: 33px;
font-weight: 800;
color: var(--navy);
line-height: 1.35;
margin-bottom: 20px;
}
.col-left h2 span {
color: var(--accent);
}
.feature-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 14px;
}
.feature-list li {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: larger;
color: var(--muted);
line-height: 1.55;
}
.feature-list li::before {
content: "•";
color: var(--accent);
font-size: 16px;
line-height: 1.3;
flex-shrink: 0;
}
.feature-list li a {
color: var(--accent);
font-weight: 600;
text-decoration: underline;
}
.verified-block {
margin-top: 28px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.verified-icon {
width: 80px;
height: 80px;
border-radius: 50%;
border: 3px solid var(--accent);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.verified-icon .heart {
font-size: 28px;
line-height: 1;
}
.verified-icon .v-label {
font-size: 9px;
font-weight: 800;
letter-spacing: 1px;
color: var(--navy);
margin-top: 3px;
text-transform: uppercase;
}
/* ── RIGHT COL ── */
.right-inner {
background: #fff;
border: 2px solid var(--accent);
border-radius: 10px;
padding: 24px 20px;
text-align: center;
}
.slots-notice {
font-size: 15px;
font-weight: 700;
color: var(--navy);
line-height: 1.4;
margin-bottom: 20px;
}
.slots-notice span {
color: var(--accent);
}
/* FORM PLACEHOLDER — client replaces this block */
.form-placeholder {
background: var(--off-white);
border: 2px dashed var(--border);
border-radius: 8px;
padding: 32px 16px;
color: var(--muted);
font-size: 13px;
font-weight: 600;
text-align: center;
letter-spacing: 0.5px;
}
.trust-logos {
display: flex;
align-items: center;
justify-content: center;
gap: 18px;
margin-top: 18px;
}
.badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 3px;
}
.badge-icon {
width: 34px;
height: 34px;
border-radius: 50%;
border: 2px solid var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
}
.badge-icon.green {
border-color: var(--green);
}
.badge-label {
font-size: 8px;
font-weight: 700;
letter-spacing: 0.8px;
text-transform: uppercase;
color: var(--muted);
text-align: center;
}
.badge-sub {
font-size: 7px;
color: #aaa;
text-align: center;
}
/* ── RESPONSIVE ── */
@media (max-width: 520px) {
.lp-table,
.lp-table tbody,
.lp-table tr,
.lp-table td {
display: block !important;
width: 100% !important;
}
.col-left {
border-right: none;
border-bottom: 1px solid var(--border);
padding: 28px 20px;
}
.col-right {
padding: 24px 20px;
}
.urgency-bar {
font-size: 11px;
}
.logo-text {
font-size: 16px;
}
.col-left h2 {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="wrapper">
<!-- URGENCY BAR -->
<div class="urgency-bar">
⚠ ACHTUNG: Sehr hohe Mediennachfrage, die Anmeldung ist geschlossen. Die Zeit ist abgelaufen!
</div>
<!-- HEADER -->
<header class="site-header">
<div class="logo">
<img src="https://zupimages.net/up/26/26/ybpz.png" alt="">
</div>
</header>
<!-- TWO COLUMN BODY -->
<table class="lp-table" cellpadding="0" cellspacing="0">
<tr>
<!-- LEFT: VALUE PROPS -->
<td class="col-left">
<h2>
DeutKap ist nun für die <span>Öffentlichkeit in Deutschland</span> zugänglich.
</h2>
<ul class="feature-list">
<li>
Kostenloser persönlicher Kundenbetreuer, zugelassen durch die
Bundesanstalt für Finanzdienstleistungsaufsicht (BaFin).
</li>
<li>
Kostenloser Zugang für alle deutschen Staatsbürger. Sie müssen
lediglich Ihre Identität während des Begrüßungsgesprächs bestätigen.
</li>
<li>
Verdienen Sie in weniger als 15 Minuten
</li>
</ul>
<div class="verified-block">
<img src="https://i.gyazo.com/9451fed08f9444fda3e55d9779da5184.webp" alt=""
style="max-width: 170px;">
</div>
<a href="https://qrco.de/bgtBH8"
style="display:block;background-color:#1a1a2e;color:#ffffff;text-align:center;font-weight:bold;padding:14px 20px;font-size:16px;text-decoration:none;border-radius:5px;margin:20px 0;transition:background-color 0.3s ease,transform 0.2s ease;box-shadow:0 4px 6px rgba(0,0,0,0.1);text-transform:uppercase">Registrieren
Sie sich jetzt<span style="margin-left:5px">→</span></a>
<tr>
<td align="center" bgcolor="#1a1a2e"
style="padding:20px 24px; border-top:1px solid rgba(255,255,255,0.1);">
<p
style="margin:0 0 14px 0; font-family:'Inter',Helvetica,Arial,sans-serif; font-size:12px; color:#ffffff;">
© 2026 Deutkap. Alle Rechte vorbehalten.</p>
</td>
</tr>
</td>
</tr>
</table>
</div>
</body>
</html>