/* Self-hosted. No external requests: no Google Fonts, no CDNs, no webfonts.
   System font stack keeps DE/GDPR exposure at zero (cf. LG München I, 3 O 17493/20). */

:root {
  --bg: #ffffff;
  --fg: #11181c;
  --muted: #5b6770;
  --line: #e4e8eb;
  --card: #f7f9fa;
  --brand: #0b6bcb;
  --brand-dark: #084f97;
  --warn-bg: #fff8e6;
  --warn-line: #f0d191;
  --radius: 10px;
  --maxw: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Mandatory advertising label — must stay above the fold and must not be
   styled to blend into the page (§ 6 TMG, § 5a Abs. 4 UWG). */
.ad-label {
  background: #22303a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
}

header.site {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
header.site .wrap { display: flex; align-items: center; gap: 12px; }
.logo { font-weight: 800; font-size: 19px; letter-spacing: -.01em; }
.logo span { color: var(--brand); }
.site-note { margin-left: auto; font-size: 13px; color: var(--muted); }

h1 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 28px 0 14px;
}
h2 {
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 36px 0 12px;
}
h3 { font-size: 18px; margin: 24px 0 8px; }
p { margin: 0 0 16px; }
a { color: var(--brand); }

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 26px;
}
.byline .tag {
  background: #eef2f5;
  color: #38474f;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.lede { font-size: 19px; color: #2a353c; }

figure { margin: 24px 0; }
figure img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin: 26px 0;
}

.risk {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 26px 0;
  font-size: 15px;
  line-height: 1.6;
}
.risk strong { display: block; margin-bottom: 6px; }

/* Placeholder slots — real content required before launch. Deliberately loud
   so nothing ships while still empty. */
.slot {
  border: 2px dashed #c2ccd3;
  background: repeating-linear-gradient(45deg, #fafbfc, #fafbfc 10px, #f2f5f7 10px, #f2f5f7 20px);
  border-radius: var(--radius);
  padding: 22px;
  margin: 26px 0;
  color: #46545e;
  font-size: 15px;
}
.slot h3 { margin-top: 0; font-size: 16px; text-transform: uppercase; letter-spacing: .05em; }
.slot code { background: #e7ecef; padding: 1px 5px; border-radius: 4px; font-size: 13px; }

ul.checks { list-style: none; padding: 0; margin: 0; }
ul.checks li {
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
ul.checks li:last-child { border-bottom: 0; }
ul.checks li::before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* ---------- form ---------- */

.form-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin: 34px 0;
  background: var(--bg);
}
.form-section h2 { margin-top: 0; }

.progress { height: 4px; background: #e9edf0; border-radius: 999px; overflow: hidden; margin-bottom: 20px; }
.progress i { display: block; height: 100%; width: 50%; background: var(--brand); transition: width .25s ease; }

.field { margin-bottom: 16px; }
label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
input[type=email], input[type=text], input[type=tel] {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  font: inherit;
  font-size: 16px; /* prevents iOS zoom-on-focus */
  color: var(--fg);
  background: var(--bg);
  border: 1px solid #cfd7dc;
  border-radius: 8px;
}
input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(11,107,203,.15); }
input[aria-invalid="true"] { border-color: #c0392b; }

.phone-row { display: flex; gap: 8px; }
.phone-row select {
  height: 48px;
  font: inherit;
  font-size: 16px;
  border: 1px solid #cfd7dc;
  border-radius: 8px;
  background: var(--bg);
  color: var(--fg);
  padding: 0 8px;
  flex: 0 0 auto;
}

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #35424a; margin: 18px 0; }
.consent input { margin-top: 3px; flex: 0 0 auto; width: 18px; height: 18px; }
.consent label { font-weight: 400; font-size: 14px; margin: 0; line-height: 1.5; }

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.cta:hover { background: var(--brand-dark); color: #fff; }
.cta[disabled] { opacity: .45; cursor: not-allowed; }

a.cta { margin: 26px 0; }

.err { color: #c0392b; font-size: 14px; margin-top: 6px; min-height: 0; }
.err:empty { margin-top: 0; }

.hidden { display: none !important; }

/* ---------- footer ---------- */

footer.site {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: #f4f6f8;
  padding: 30px 0 44px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #44525b;
}
footer.site h4 { font-size: 14px; margin: 20px 0 6px; color: var(--fg); }
footer.site nav { margin-bottom: 18px; }
footer.site nav a { margin-right: 14px; white-space: nowrap; }
footer.site .imprint { margin-top: 18px; padding-top: 18px; border-top: 1px solid #dde3e7; }

/* ---------- image slots ----------
   Each slot sits where its image goes and states the job in English. They
   replace the artwork itself, so the page cannot go live still showing them —
   which is the point. Delete a whole .img-slot block when its image lands. */

.img-slot {
  border: 2px dashed var(--brand);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #f4f9ff, #f4f9ff 12px, #eef5fd 12px, #eef5fd 24px);
  padding: 22px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #22303a;
}
.img-slot .slot-no {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.img-slot .slot-no.optional { background: #6b7b86; }
.img-slot h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--fg);
}
.img-slot .spec {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #35434c;
  background: #e2edfa;
  border: 1px solid #cadff5;
  border-radius: 6px;
  padding: 8px 11px;
  margin: 10px 0 13px;
}
.img-slot p { margin: 0 0 10px; }
.img-slot p:last-child { margin-bottom: 0; }
.img-slot ul { margin: 8px 0 10px 18px; padding: 0; }
.img-slot li { margin-bottom: 6px; }
.img-slot .avoid {
  background: #fdf1ee;
  border-left: 3px solid #c0392b;
  padding: 10px 13px;
  border-radius: 0 6px 6px 0;
  color: #7e2c1a;
}
.img-slot .avoid strong { color: #a02d17; }

/* Ghost frame showing the space the finished image will occupy. */
.img-slot .frame {
  border: 1px solid #b9d3ef;
  border-radius: 7px;
  background: #fff;
  color: #7b8b97;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.img-slot .frame.r169 { aspect-ratio: 16 / 9; }
.img-slot .frame.r1610 { aspect-ratio: 16 / 10; }
.img-slot .frame.r5219 { aspect-ratio: 1440 / 560; }
.img-slot .frame.r125 { aspect-ratio: 1440 / 600; }

/* ---------- brand mark ---------- */

.logo-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}
.logo .ai { color: var(--brand); }

/* ---------- numbered steps ---------- */

ol.steps { list-style: none; counter-reset: s; padding: 0; margin: 20px 0; }
ol.steps li {
  counter-increment: s;
  position: relative;
  padding: 0 0 20px 46px;
  border-left: 2px solid var(--line);
  margin-left: 14px;
}
ol.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
ol.steps li::before {
  content: counter(s);
  position: absolute;
  left: -15px; top: -2px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol.steps li strong { display: block; margin-bottom: 3px; }

/* ---------- fee table ---------- */

.table-scroll { overflow-x: auto; margin: 20px 0; }
table.info {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 420px;
}
table.info th, table.info td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.info th { background: var(--card); font-weight: 700; }
table.info td:first-child { font-weight: 600; width: 42%; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); margin: 22px 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 650;
  font-size: 16.5px;
  color: var(--fg);
  text-align: left;
  padding: 16px 34px 16px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 21px;
  font-weight: 400;
  color: var(--brand);
}
.faq-q[aria-expanded="true"]::after { content: "–"; }
.faq-a { padding: 0 0 16px; font-size: 15.5px; color: #3a464e; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- misc ---------- */

.not-for { border-left: 3px solid #c0392b; padding-left: 16px; margin: 22px 0; }
.not-for li { margin-bottom: 8px; }

.kicker {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.legal-page h2 { font-size: 20px; }
.legal-page { font-size: 16px; }
.legal-page dl { margin: 16px 0; }
.legal-page dt { font-weight: 700; margin-top: 14px; }
.legal-page dd { margin: 4px 0 0; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .lede { font-size: 17px; }
  .site-note { display: none; }
}
