@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #e9ebf0;
  --surface: #ffffff;
  --ink: #15191f;
  --ink-2: #3f4753;
  --muted: #7c8696;
  --line: #e6e8ee;
  --topbar: #10141b;
  --cream: #fbf2d8;
  --cream-ink: #6f5a16;
  --teal: #0d9488;
  --teal-d: #0f766e;
  --emerald: #10b981;
  --grad: linear-gradient(135deg, #0d9488, #10b981);
  --grad-soft: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  --footer: #10141b;
  --footer-2: #1b212b;
  --star: #f5a623;
  --shadow: 0 10px 30px rgba(16, 20, 27, .08);
  --fh: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fb: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fq: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--fb);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main { flex: 1 0 auto; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--fh); line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }

.kicker {
  display: inline-block;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fh);
  font-weight: 600;
  font-size: .98rem;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  min-height: 44px;
}

.btn i { font-size: .85em; }

.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(13, 148, 136, .28); }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(13, 148, 136, .38); }

.btn-ghost { background: #fff; color: var(--teal-d); border: 1.5px solid var(--line); }

.btn-ghost:hover { border-color: var(--teal); transform: translateY(-2px); }

.btn-lg { padding: 14px 26px; font-size: 1.02rem; }

.btn-block { width: 100%; }

.topbar {
  background: var(--topbar);
  color: #cfd5df;
  text-align: center;
  font-family: var(--fh);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 9px 16px;
}

.site-header { background: var(--surface); box-shadow: 0 1px 0 var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo a { display: inline-flex; align-items: center; gap: 12px; }

.logo img { width: 50px; height: 50px; border-radius: 12px; object-fit: cover; }

.logo span {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: var(--ink);
}

.ad-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--cream-ink);
  background: var(--cream);
  border: 1px solid #ecdca6;
  border-radius: 999px;
  padding: 7px 14px;
  max-width: 52%;
  text-align: right;
}

.ad-notice i { color: var(--teal-d); }

.ad-bar { background: var(--cream); border-top: 1px solid #ecdca6; border-bottom: 1px solid #ecdca6; }

.ad-bar .wrap {
  font-size: .82rem;
  color: var(--cream-ink);
  padding-top: 9px;
  padding-bottom: 9px;
}

.ad-bar a { color: var(--teal-d); font-weight: 700; text-decoration: underline; }

.article {
  background: var(--surface);
  max-width: 980px;
  margin: 30px auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 48px);
}

.article-head { margin-bottom: 26px; }

.article-head h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 16px; }

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: .9rem;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.byline strong { color: var(--ink); }

.by-sep { color: var(--muted); }

.stars, .review-stars, .rating-stars { color: var(--star); letter-spacing: 1px; }

.byline .fa-thumbs-up { color: var(--teal); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-figure { margin-bottom: 26px; }

.hero-img, .media-img   {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef1f5;
}

.media-imgs {
border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #eef1f5;
}

.hero-img img, .media-img img, .media-imgs img { width: 100%; height: 100%; object-fit: cover; }

figcaption {
  font-family: var(--fq);
  font-style: italic;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.prose p { margin-bottom: 14px; color: var(--ink-2); }

.prose p:last-child { margin-bottom: 0; }

.pullquote {
  position: relative;
  background: var(--grad-soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin: 26px 0;
  font-family: var(--fq);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
}

.pq-label {
  display: block;
  font-family: var(--fh);
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 8px;
}

.section { padding: 30px 0; border-top: 1px solid var(--line); }

.section:first-of-type { border-top: none; }

.section > h2, .section-text h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 16px; }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.section-grid > *,
.section-grid.reverse > *,
.product-grid > *,
.secure-grid > *,
.reviews-grid > * {
  min-width: 0;
  max-width: 100%;
}

.section-grid.reverse { grid-template-columns: 1.05fr 1fr; }

.section-grid.reverse .media-card { order: 2; }

.media-card { margin: 0; }

.media-wide { margin: 0 0 20px; }

.section-text p { color: var(--ink-2); margin-bottom: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f1f5f4;
  border: 1px solid #d8e6e2;
  color: var(--teal-d);
  font-size: .82rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 13px;
}

.chip i { color: var(--emerald); font-size: .8em; }

.save-list { list-style: none; display: grid; gap: 14px; margin: 18px 0; }

.save-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  background: #fafbfc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}

.save-list li div { color: var(--ink-2); }

.save-list strong { color: var(--ink); }

.icon-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.note-box {
  background: #f6f8fa;
  border: 1px dashed #c7cfd9;
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: .95rem;
}

.note-box strong { color: var(--ink); }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }

.audience-card {
  background: var(--grad-soft);
  border: 1px solid #d8e6e2;
  border-radius: 14px;
  padding: 16px;
}

.audience-card i { font-size: 1.3rem; color: var(--teal-d); margin-bottom: 8px; }

.audience-card h3 { font-size: 1.02rem; margin-bottom: 5px; }

.audience-card p { font-size: .88rem; color: var(--ink-2); }

.table-wrap { overflow-x: auto; margin-top: 8px; border-radius: 14px; border: 1px solid var(--line); }

.compare-table { width: 100%; border-collapse: collapse; min-width: 540px; font-size: .92rem; }

.compare-table th, .compare-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }

.compare-table thead th { font-family: var(--fh); background: #f6f8fa; font-size: .9rem; }

.compare-table thead th:last-child { color: var(--teal-d); }

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table td:first-child { font-weight: 600; color: var(--ink); }

.compare-table .yes { color: var(--teal-d); font-weight: 600; background: var(--grad-soft); }

.compare-table .no { color: #b45309; }

.compare-table td i { margin-right: 6px; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; margin: 8px 0 18px; }

.buy-col { display: grid; gap: 18px; }

.price-card {
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  background-image: linear-gradient(#fff, #fff), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.price-badge {
  display: inline-block;
  font-family: var(--fh);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-d);
  background: var(--grad-soft);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 12px; }

.price { font-family: var(--fh); font-size: 2.4rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff4e0;
  color: #b45309;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
}

.price-note { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }

.price-fine { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }

.rating-widget { background: #fafbfc; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }

.rating-head { display: flex; align-items: center; gap: 12px; }

.rating-num { font-family: var(--fh); font-size: 2.2rem; font-weight: 700; line-height: 1; }

.rating-sub { font-size: .82rem; color: var(--muted); margin: 8px 0 14px; }

.rating-bars { display: grid; gap: 8px; }

.bar-row { display: grid; grid-template-columns: 64px 1fr 42px; align-items: center; gap: 10px; font-size: .82rem; color: var(--ink-2); }

.bar-track { height: 8px; background: #e6e8ee; border-radius: 999px; overflow: hidden; }

.bar-fill { display: block; height: 100%; background: var(--grad); border-radius: 999px; }

.bar-pct { text-align: right; color: var(--muted); }

.secure-section { background: var(--grad-soft); border-radius: 18px; padding: clamp(22px, 3.5vw, 40px); margin-top: 30px; border-top: none; }

.secure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; margin-top: 8px; }

.form-card { background: #fff; border-radius: 18px; padding: 26px; box-shadow: var(--shadow); }

.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }

.form-lead { color: var(--ink-2); font-size: .92rem; margin-bottom: 18px; }

.field { margin-bottom: 14px; }

.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }

.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--fb);
  font-size: .95rem;
  color: var(--ink);
  background: #f7f9fa;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  transition: border-color .15s ease, background .15s ease;
}

.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }

.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-2); margin: 6px 0 16px; }

.check-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; }

.faq { display: grid; gap: 12px; align-content: start; }

.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-family: var(--fh);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  background: none;
  border: none;
  padding: 16px 18px;
  cursor: pointer;
  min-height: 44px;
}

.faq-q i { color: var(--teal); transition: transform .25s ease; }

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }

.faq-a p { padding: 0 18px 16px; color: var(--ink-2); font-size: .92rem; }

.faq-item.open .faq-a { max-height: 320px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }

.review-card { background: #fafbfc; border: 1px solid var(--line); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.review-head { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--fh);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta { display: flex; flex-direction: column; line-height: 1.3; }

.review-meta strong { font-size: .95rem; }

.review-meta span { font-size: .78rem; color: var(--muted); }

.review-text { font-size: .92rem; color: var(--ink-2); flex: 1; }

.review-foot { font-size: .82rem; color: var(--teal-d); font-weight: 600; }

.reviews-note { font-size: .82rem; color: var(--muted); margin-top: 16px; text-align: center; }

.disclaimer-box { background: #f3f5f8; border: 1px solid var(--line); border-radius: 16px; padding: clamp(20px, 3vw, 32px); margin-top: 30px; }

.disclaimer-box h3 { font-size: 1rem; margin: 16px 0 5px; color: var(--ink); }

.disclaimer-box h3:first-child { margin-top: 0; }

.disclaimer-box p { font-size: .88rem; color: var(--ink-2); }

.site-footer { flex-shrink: 0; background: var(--footer); color: #c4cad4; margin-top: auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "about about" "brand links" "disclaimer disclaimer" "bottom bottom";
  gap: 26px 40px;
  padding-top: 40px;
  padding-bottom: 30px;
  font-size: .92rem;
}

.footer-about { grid-area: about; }

.footer-offenlegung { font-size: .9rem; color: #9aa3b1; line-height: 1.6; }

.footer-brand { grid-area: brand; }

.logo-footer a span { color: #fff; }

.footer-contacts { margin-top: 14px; display: grid; gap: 4px; font-size: .92rem; color: #c4cad4; }

.footer-links { grid-area: links; display: flex; flex-wrap: wrap; gap: 14px 26px; align-content: start; }

.footer-links a { display: flex; flex-direction: column; font-weight: 600; color: #e3e7ee; transition: color .15s ease; }

.footer-links a:hover { color: var(--emerald); }

.footer-links small { font-weight: 400; font-size: .9rem; color: #7e8794; margin-top: 2px; }

.footer-disclaimer { grid-area: disclaimer; border-top: 1px solid var(--footer-2); padding-top: 22px; }

.footer-disclaimer p { font-size: .9rem; color: #9aa3b1; line-height: 1.6; }

.footer-bottom {
  grid-area: bottom;
  border-top: 1px solid var(--footer-2);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: .9rem;
  color: #8b94a2;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--grad);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 148, 136, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 50;
}

.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.thanks-main { display: flex; align-items: center; justify-content: center; padding: 60px 20px; min-height: 60vh; }

.thanks-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 44px 36px;
  border-top: 5px solid var(--teal);
}

.thanks-card img { width: 50px; height: 50px; border-radius: 12px; margin: 0 auto 18px; }

.thanks-card h1 { font-size: 1.9rem; margin-bottom: 14px; }

.thanks-card p { color: var(--ink-2); font-size: 1.2rem; margin-bottom: 10px; }

.thanks-card .thanks-name { color: var(--teal-d); font-weight: 700; }

.thanks-icon { font-size: 2.6rem; color: var(--emerald); margin-bottom: 8px; }

@media (max-width: 860px) {
  .section-grid, .section-grid.reverse, .product-grid, .secure-grid { grid-template-columns: 1fr; }
  .section-grid.reverse .media-card { order: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; grid-template-areas: "about" "brand" "links" "disclaimer" "bottom"; }
  .ad-notice { max-width: 100%; }
}

@media (max-width: 560px) {
  .audience-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

.legal-content { max-width: 800px; margin: 0 auto; padding: 40px 20px; word-break: break-word; }

.legal-content h1 { font-family: var(--fh); font-size: 2rem; margin-bottom: 10px; color: var(--ink); }

.legal-content h2 { font-family: var(--fh); font-size: 1.8rem; margin: 32px 0 12px; color: var(--ink); }

.legal-content h3 { font-family: var(--fh); font-size: 1.4rem; margin: 24px 0 10px; color: var(--ink); }

.legal-content p { font-size: 1rem; line-height: 1.6; color: #333; margin-bottom: 14px; }

.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin: 1rem 0; }

.legal-content li { font-size: 1rem; line-height: 1.6; color: #333; margin-bottom: 8px; }

.legal-content strong { color: var(--ink); }

.legal-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal-d);
  background: var(--grad-soft);
  border: 1px solid #d8e6e2;
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 26px;
}

.legal-block { background: #fafbfc; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin: 16px 0; }

.legal-block p:last-child { margin-bottom: 0; }

.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .95rem; }

.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; }

.legal-table th { background: #f6f8fa; font-family: var(--fh); color: var(--ink); }

.legal-table td { color: #333; }

.legal-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 16px 0; }

.legal-card { background: var(--grad-soft); border: 1px solid #d8e6e2; border-radius: 14px; padding: 16px 18px; }

.legal-card h3 { margin: 0 0 6px; font-size: 1.1rem; }

.legal-card p { margin: 0; font-size: .95rem; color: #333; }

@media (max-width: 640px) {
  .legal-card-grid { grid-template-columns: 1fr; }
  .legal-content h1 { font-size: 1.7rem; }
  .legal-content h2 { font-size: 1.5rem; }
  .footer-col { word-break: break-all; }
  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header-inner .logo {
    flex: 0 1 auto;
    min-width: 0;
  }
  .header-inner .logo a {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .header-inner .logo img {
    width: 42px;
    height: 42px;
  }
  .header-inner .logo span {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    word-break: break-word;
    min-width: 0;
  }
  .header-inner .ad-notice {
    flex: 0 1 54%;
    max-width: 54%;
    margin-left: auto;
    text-align: left;
    justify-content: flex-start;
    font-size: .72rem;
    line-height: 1.35;
    padding: 8px 10px;
    word-break: break-word;
  }
  .logo a { flex-direction: column; }
  .logo a span { word-break: break-all; min-width: 0; flex: 1; }
  .footer-brand .logo a { flex-direction: row; }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .section-grid > *,
  .section-grid.reverse > *,
  .product-grid > *,
  .secure-grid > *,
  .reviews-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .table-wrap { overflow-x: visible; }
  .compare-table { min-width: 0; display: block; }
  .compare-table thead { display: none; }
  .compare-table tbody,
  .compare-table tr,
  .compare-table td { display: block; width: 100%; min-width: 0; }
  .compare-table tr {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .compare-table td {
    padding: 6px 16px;
    border-bottom: none;
  }
  .compare-table td:first-child {
    font-size: 1rem;
    padding-top: 12px;
  }
  .legal-table {
    display: block;
    border: none;
  }
  .legal-table thead { display: none; }
  .legal-table tbody { display: block; }
  .legal-table tr {
    display: block;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: #fafbfc;
  }
  .legal-table tr:last-child { margin-bottom: 0; }
  .legal-table td {
    display: block;
    width: 100%;
    min-width: 0;
    border: none;
    padding: 8px 0;
    font-size: .9rem;
  }
  .legal-table td:first-child {
    font-family: var(--fh);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    padding-top: 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 8px;
    padding-bottom: 10px;
  }
  .legal-table td:not(:first-child)::before {
    display: block;
    font-family: var(--fh);
    font-weight: 600;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal-d);
    margin-bottom: 4px;
  }
  .legal-table td:nth-child(2)::before { content: "Zweck"; }
  .legal-table td:nth-child(3)::before { content: "Rechtsgrundlage"; }
  .legal-table td:nth-child(4)::before { content: "Speicherdauer"; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .header-inner {
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 8px;
  }
  .header-inner .logo img {
    width: 38px;
    height: 38px;
  }
  .header-inner .ad-notice {
    flex-basis: 58%;
    max-width: 58%;
    font-size: .68rem;
    padding: 7px 9px;
  }
  .article { padding: 18px 14px; margin: 16px auto; }
  .form-card { padding: 18px 14px; }
  .secure-section { padding: 18px 14px; }
  .thanks-card { padding: 32px 20px; }
  .legal-content { padding: 28px 14px; }
  .btn { font-size: .92rem; padding: 11px 18px; }
  .article-head h1 { font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .price { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}