/*
  Kevin Funnel Website
  --------------------
  Diese Datei enthält nur Styling.
  Du kannst Farben, Abstände und Schriftgrößen später hier ändern.
*/

:root {
  --bg: #06101c;
  --bg-2: #0a1726;
  --card: rgba(12, 25, 40, 0.78);
  --card-solid: #0d1a2a;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f5f7fb;
  --muted: #aeb9c7;
  --soft: #788799;
  --blue: #2f7dff;
  --blue-2: #75b5ff;
  --gold: #f0bb68;
  --gold-2: #ffd994;
  --danger: #ff7a7a;
  --success: #82f2b1;
  --radius: 28px;
  --radius-small: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 12px;
}

#topics,
#about,
#check-teaser,
#contact {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(47, 125, 255, 0.18), transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(240, 187, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #020711 0%, var(--bg) 40%, #040b14 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 10, 20, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff6e8;
}

.brand-line {
  display: block;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.22);
}

.brand-sub {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  line-height: 1.35;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:first-child::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: calc(var(--header-height) + 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero-bg.webp?v=image-cache-20260704-2");
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.96) 0%, rgba(3, 9, 18, 0.82) 34%, rgba(3, 9, 18, 0.25) 72%, rgba(3, 9, 18, 0.55) 100%),
    linear-gradient(0deg, #06101c 0%, transparent 25%, transparent 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(47, 125, 255, 0.22), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(240, 187, 104, 0.13), transparent 32%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr;
  align-items: center;
  width: min(1260px, calc(100% - 40px));
}

.hero-copy {
  padding: 40px 0 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-2);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow.gold {
  color: var(--gold-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  max-width: 780px;
  margin-bottom: 26px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 560px;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
}

.btn {
  appearance: none;
  border: 0;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0a1018;
  background: linear-gradient(135deg, #ffe1a4 0%, var(--gold) 48%, #d8933e 100%);
  box-shadow: 0 18px 45px rgba(240, 187, 104, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 24px 60px rgba(240, 187, 104, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #1c75ff, #174a99);
  box-shadow: 0 18px 45px rgba(47, 125, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
}

.btn-big {
  min-height: 64px;
  padding-inline: 34px;
  font-size: 18px;
}

.btn-wide {
  width: 100%;
}

.micro-note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 14px;
}

.section {
  position: relative;
  padding: 105px 0;
}

.section-intro {
  padding-top: 70px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading p {
  font-size: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.next-card,
.contact-form,
.disclaimer-box,
.funnel-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 23, 38, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-card {
  padding: 28px;
  border-radius: var(--radius-small);
  min-height: 220px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.check-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.check-left p {
  font-size: 18px;
}

.check-bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.check-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-bullets svg,
.trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
  flex: 0 0 auto;
}

.funnel-shell {
  min-height: 520px;
  border-radius: 32px;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  overflow: hidden;
}

.funnel-shell::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 125, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.funnel-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-bottom: 14px;
}

.progress-track {
  position: relative;
  z-index: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 34px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 24px rgba(47, 125, 255, 0.8);
  transition: width 280ms ease;
}

.question-area {
  position: relative;
  z-index: 1;
  animation: fadeUp 260ms ease both;
}

.question-area h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.question-area p {
  margin-bottom: 22px;
}

.is-welcome {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 12px;
}

.welcome-icon,
.next-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--blue-2);
  background: rgba(47, 125, 255, 0.14);
  border: 1px solid rgba(117, 181, 255, 0.24);
  box-shadow: 0 0 40px rgba(47, 125, 255, 0.18);
}

.welcome-icon svg,
.next-icon svg {
  width: 34px;
  height: 34px;
}

.answers-grid {
  display: grid;
  gap: 14px;
}

.answer-button {
  width: 100%;
  min-height: 78px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: 180ms ease;
}

.answer-button:hover,
.answer-button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(117, 181, 255, 0.78);
  background: rgba(47, 125, 255, 0.15);
  box-shadow: 0 16px 45px rgba(47, 125, 255, 0.16);
}

.answer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(47, 125, 255, 0.13);
  color: var(--blue-2);
}

.answer-icon svg {
  width: 24px;
  height: 24px;
}

.answer-text strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}

.answer-text span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.answer-arrow {
  color: rgba(255, 255, 255, 0.56);
}

.privacy-line {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--soft);
}

.privacy-line svg {
  width: 16px;
  height: 16px;
}

.result-section {
  position: relative;
  min-height: 760px;
  padding: 120px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.result-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/result-bg.webp?v=image-cache-20260704-2");
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
}

.result-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.94) 0%, rgba(3, 9, 18, 0.78) 43%, rgba(3, 9, 18, 0.34) 100%),
    linear-gradient(0deg, rgba(6, 16, 28, 1) 0%, transparent 18%, transparent 78%, rgba(6, 16, 28, 0.92) 100%);
  z-index: 1;
}

.result-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px minmax(0, 650px);
  gap: 52px;
  align-items: center;
}

.portrait-card {
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.portrait-card img {
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.result-content {
  padding: 34px;
  border-radius: 32px;
  background: rgba(6, 16, 28, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.result-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.result-text .result-tagline {
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.result-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.next-section {
  padding-top: 80px;
}

.next-grid {
  display: grid;
  grid-template-columns: minmax(0, 600px);
  justify-content: center;
  gap: 18px;
}

.next-card {
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.next-icon {
  margin: 0;
  width: 64px;
  height: 64px;
}

.contact-section {
  padding-top: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.contact-copy p {
  font-size: 18px;
}

.disclaimer-box {
  border-radius: 24px;
  padding: 22px;
  margin-top: 26px;
}

.disclaimer-box strong {
  color: #fff;
}

.disclaimer-box p {
  margin: 8px 0 0;
  font-size: 15px;
}

.contact-form {
  border-radius: 32px;
  padding: clamp(22px, 4vw, 36px);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label,
.contact-form > label:not(.hp-field) {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(117, 181, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(47, 125, 255, 0.16);
}

select option {
  background: #0d1a2a;
  color: #fff;
}

textarea {
  resize: vertical;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 14px;
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 500 !important;
  margin: 14px 0;
  line-height: 1.5;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-row a {
  color: var(--blue-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  display: none !important;
}

.form-message {
  min-height: 28px;
  margin: 14px 0 0;
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.contact-success-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(130, 242, 177, 0.28);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(130, 242, 177, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
}

.contact-success-panel:focus {
  outline: 3px solid rgba(130, 242, 177, 0.55);
  outline-offset: 6px;
}

.contact-success-panel h2 {
  margin: 8px 0 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  font-size: 42px;
}

.contact-success-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .contact-success-panel h2 {
    font-size: 34px;
    line-height: 1.12;
  }
}

.about-section {
  padding-top: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 720px);
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  background: rgba(3, 9, 18, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand .brand-name {
  font-size: 34px;
}

.footer-legal h3 {
  margin: 0 0 10px;
}

.footer-legal p,
.site-footer p {
  font-size: 14px;
}

.legal-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-bottom p {
  margin-bottom: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card-solid);
  padding: 28px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 28px;
}

.is-hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .menu-button {
    display: inline-flex;
    z-index: 60;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 18, 31, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .main-nav a::after {
    display: none;
  }

  .brand-sub,
  .brand-line {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 50px) 0 72px;
    background-position: center top;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 9, 18, 0.58) 0%, rgba(3, 9, 18, 0.86) 46%, rgba(3, 9, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 9, 18, 0.88) 0%, rgba(3, 9, 18, 0.45) 100%);
  }

  .hero-grid,
  .check-container,
  .result-wrap,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 150px 0 30px;
  }

  .steps-grid,
  .next-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .result-wrap {
    gap: 24px;
  }

  .portrait-card {
    width: min(320px, 100%);
  }

  .next-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-name {
    font-size: 34px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 74px 0;
  }

  .funnel-shell,
  .result-content,
  .contact-form {
    border-radius: 24px;
  }

  .answer-button {
    grid-template-columns: auto 1fr;
  }

  .answer-arrow {
    display: none;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .result-section {
    padding: 82px 0;
  }

  .trust-row {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------------------------------------
   Check-Teaser-Basis
   ------------------------------------------------------------
   Nur die normalen Seiten-Elemente des Check-Teasers.
   Die Fokusmodus-/Overlay-Regeln stehen gesammelt im finalen
   Check-CSS darunter, damit keine Doppelregeln greifen.
*/

.section-focus {
  padding-top: 70px;
}

.focus-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.focus-copy p {
  font-size: 18px;
}

.focus-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 125, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 38, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.focus-card h3 {
  margin-bottom: 6px;
}

.focus-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.focus-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--blue-2);
  background: rgba(47, 125, 255, 0.14);
  border: 1px solid rgba(117, 181, 255, 0.24);
  box-shadow: 0 0 40px rgba(47, 125, 255, 0.2);
}

.focus-icon svg {
  width: 32px;
  height: 32px;
}

@keyframes checkEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    grid-template-columns: auto 1fr;
  }

  .focus-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* =========================================================
   Fokus-Check
   Ziel: Vollbild-Ort, kein Webseiten-Scroll, kurze Buttons,
   klare Trennung, keine überlappenden Texte.
   ========================================================= */

body.check-open {
  overflow: hidden;
}

.check-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 24px);
  overflow: hidden;
  isolation: isolate;
}

.check-overlay.is-hidden {
  display: none;
}

.check-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(5, 13, 28, 0.86) 52%, rgba(3, 8, 18, 0.96) 100%),
    url("assets/hero-bg.webp?v=image-cache-20260704-2") center / cover no-repeat;
  filter: saturate(0.9) brightness(0.78);
  transform: scale(1.03);
}

.check-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(47, 125, 255, 0.24), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(240, 187, 104, 0.16), transparent 27%),
    linear-gradient(180deg, rgba(3, 7, 15, 0.05), rgba(3, 7, 15, 0.48));
  backdrop-filter: blur(11px);
}

.check-stage {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  height: min(690px, calc(100dvh - 32px));
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: clamp(10px, 1.6vh, 16px);
  border-radius: clamp(22px, 3vw, 34px);
  padding: clamp(16px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(8, 18, 31, 0.92);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(25px);
  animation: checkEnter 280ms ease both;
  outline: none;
  overflow: hidden;
}

.check-stage::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(47, 125, 255, 0.24), transparent 68%);
  pointer-events: none;
}

.check-stage::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(240, 187, 104, 0.12), transparent 68%);
  pointer-events: none;
}

.check-stage-header,
.check-stage .funnel-topline,
.check-stage .progress-track,
.check-stage .question-area,
.check-stage .privacy-line {
  position: relative;
  z-index: 2;
}

.check-stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.check-title-block {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.check-brand-text {
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.check-subtitle {
  color: rgba(230, 238, 250, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.check-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  transition: 180ms ease;
}

.check-close:hover,
.check-close:focus-visible {
  outline: none;
  border-color: rgba(117, 181, 255, 0.72);
  background: rgba(47, 125, 255, 0.18);
  transform: translateY(-1px);
}

.check-stage .funnel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(229, 239, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}


#stepCounter {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.check-stage .progress-track {
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.check-stage .progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7dff, #79bdff);
  box-shadow: 0 0 20px rgba(47, 125, 255, 0.65);
  transition: width 260ms ease;
}

.check-stage .question-area {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  gap: clamp(14px, 2vh, 20px);
  padding: clamp(4px, 0.6vw, 8px) 0 0;
  overflow: hidden;
}

.question-copy {
  max-width: 800px;
}

.question-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 125, 255, 0.13);
  border: 1px solid rgba(117, 181, 255, 0.28);
  color: #8cc4ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.check-stage .question-area h3 {
  max-width: 820px;
  margin: 0;
  color: #fffaf0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.check-stage .question-area p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(229, 239, 255, 0.72);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.45;
}

.check-stage .answers-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 12px;
}

.check-stage .answer-count-6 .answers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-stage .answer-button {
  min-width: 0;
  min-height: clamp(70px, 10.5vh, 92px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 1.7vw, 18px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
  overflow: hidden;
}

.check-stage .answer-button.is-selected {
  border-color: rgba(117, 181, 255, 0.95);
  background: rgba(47, 125, 255, 0.24);
  box-shadow: 0 16px 50px rgba(47, 125, 255, 0.24);
}

.check-stage .answer-button:disabled {
  cursor: default;
}

.answer-emoji {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(47, 125, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(117, 181, 255, 0.18);
  font-size: 20px;
}

.check-stage .answer-text {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.check-stage .answer-text strong {
  color: #fff;
  font-size: clamp(16px, 1.85vw, 20px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.check-stage .answer-text small {
  color: rgba(229, 239, 255, 0.62);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.25;
}

.check-stage .answer-arrow {
  width: 24px;
  height: 24px;
  color: rgba(229, 239, 255, 0.58);
}

.check-stage .answer-arrow svg {
  width: 100%;
  height: 100%;
}

.check-stage .privacy-line {
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(229, 239, 255, 0.54);
  font-size: 13px;
  text-align: center;
}

.check-stage .privacy-line svg {
  width: 16px;
  height: 16px;
  color: #74b4ff;
}

.question-area.is-welcome {
  display: grid;
  place-items: center;
}

.finish-card {
  width: min(520px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid rgba(117, 181, 255, 0.28);
  background: rgba(255, 255, 255, 0.065);
  text-align: center;
}

.question-area.is-welcome h3 {
  font-size: clamp(28px, 5vw, 44px);
  text-align: center;
}

.question-area.is-welcome p {
  margin-top: 0;
  text-align: center;
}

.welcome-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(47, 125, 255, 0.18);
  color: #8cc4ff;
  border: 1px solid rgba(117, 181, 255, 0.25);
  box-shadow: 0 0 42px rgba(47, 125, 255, 0.24);
}

.welcome-icon svg {
  width: 30px;
  height: 30px;
}


/* Check: Text darf sauber umbrechen; echte Auswahl ist nur .is-selected. */
.check-stage .answer-button {
  -webkit-tap-highlight-color: transparent;
}

.check-stage .answer-text,
.check-stage .answer-text strong,
.check-stage .answer-text small {
  min-width: 0;
  max-width: 100%;
}

.check-stage .answer-text strong {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.check-stage .answer-text small {
  display: block;
  overflow-wrap: break-word;
}

@media (hover: hover) and (pointer: fine) {
  .check-stage .answer-button:hover:not(.is-selected) {
    transform: translateY(-2px);
    border-color: rgba(117, 181, 255, 0.78);
    background: rgba(47, 125, 255, 0.14);
    box-shadow: 0 16px 44px rgba(47, 125, 255, 0.18);
  }
}

.check-stage .answer-button:focus-visible:not(.is-selected) {
  outline: none;
  transform: none;
  border-color: rgba(240, 187, 104, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 3px rgba(240, 187, 104, 0.14);
}

@media (hover: none), (pointer: coarse) {
  .check-stage .answer-button:hover:not(.is-selected),
  .check-stage .answer-button:focus:not(:focus-visible):not(.is-selected) {
    transform: none;
    border-color: rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.035)),
      rgba(255, 255, 255, 0.045);
    box-shadow: none;
  }
}

@media (max-width: 860px) {
  .check-stage {
    width: min(680px, 100%);
    height: min(720px, calc(100dvh - 22px));
  }

  .check-stage .answer-count-6 .answers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .check-overlay {
    padding: 10px;
  }

  .check-stage {
    height: calc(100dvh - 20px);
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px;
    border-radius: 25px;
  }

  .check-title-block {
    display: grid;
    gap: 2px;
  }

  .check-brand-text {
    font-size: 28px;
  }

  .check-subtitle {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .check-close {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 14px;
  }

  .check-stage .funnel-topline {
    font-size: 12px;
    justify-content: flex-end;
  }

  #stepCounter {
    padding: 5px 8px;
  }

  .check-stage .progress-track {
    height: 7px;
  }

  .question-kicker {
    margin-bottom: 6px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .check-stage .question-area {
    align-content: start;
    justify-content: stretch;
    gap: 12px;
    padding: 2px 2px 0 0;
    overflow-y: auto;
  }

  .check-stage .question-area h3 {
    font-size: clamp(25px, 8vw, 36px);
    line-height: 1;
  }

  .check-stage .question-area p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .check-stage .answers-grid,
  .check-stage .answer-count-6 .answers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 8px;
  }

  .check-stage .answer-button {
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px;
    border-radius: 18px;
  }

  .check-stage .answer-count-6 .answer-button {
    min-height: 76px;
    padding: 10px 9px;
    gap: 8px;
  }

  .answer-emoji {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    font-size: 17px;
  }

  .check-stage .answer-count-6 .answer-emoji {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    font-size: 15px;
  }

  .check-stage .answer-text strong {
    font-size: 15px;
    line-height: 1.12;
  }

  .check-stage .answer-count-6 .answer-text strong {
    font-size: clamp(12.5px, 3.45vw, 14px);
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .check-stage .answer-text small,
  .check-stage .answer-count-6 .answer-text small {
    display: block;
    font-size: 11px;
    line-height: 1.18;
  }

  .check-stage .answer-arrow {
    display: none;
  }

  .check-stage .privacy-line {
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .check-stage .answer-count-6 .answer-button {
    min-height: 76px;
    padding: 9px 8px;
  }

  .check-stage .answer-count-6 .answer-emoji {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .check-stage .answer-count-6 .answer-text strong {
    font-size: clamp(12px, 3.35vw, 13.5px);
  }

  .check-stage .answer-count-6 .answer-text small {
    font-size: 10.7px;
  }
}

@media (max-width: 359px) {
  .check-stage {
    padding: 13px;
  }

  .check-stage .answers-grid,
  .check-stage .answer-count-6 .answers-grid {
    grid-template-columns: 1fr;
  }

  .check-stage .answer-button,
  .check-stage .answer-count-6 .answer-button {
    min-height: 58px;
    padding: 9px 10px;
    gap: 8px;
  }

  .answer-emoji,
  .check-stage .answer-count-6 .answer-emoji {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    font-size: 15px;
  }

  .check-stage .answer-text strong,
  .check-stage .answer-count-6 .answer-text strong {
    font-size: 13px;
  }

  .check-stage .answer-text small,
  .check-stage .answer-count-6 .answer-text small {
    display: block;
    font-size: 11px;
    line-height: 1.16;
  }
}

@media (max-height: 610px) and (max-width: 640px) {
  .check-stage {
    height: calc(100dvh - 14px);
    padding: 12px;
    gap: 8px;
  }

  .check-brand-text {
    font-size: 26px;
  }

  .check-subtitle,
  .question-kicker,
  .check-stage .privacy-line {
    display: none;
  }

  .check-stage .question-area {
    overflow-y: auto;
  }

  .check-stage .question-area h3 {
    font-size: clamp(24px, 6vh, 34px);
  }

  .check-stage .question-area p {
    margin-top: 5px;
    font-size: 12px;
  }

  .check-stage .answer-button,
  .check-stage .answer-count-6 .answer-button {
    min-height: 52px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .check-stage .answer-text small {
    display: none;
  }
}


/* ------------------------------------------------------------
   Direkt-Kontakt + Datenschutz-/Consent-Erweiterung
   ------------------------------------------------------------ */

.nav-cta {
  appearance: none;
  border: 1px solid rgba(240, 187, 104, 0.45);
  border-radius: 999px;
  padding: 10px 16px;
  color: #07101c;
  font-weight: 800;
  background: linear-gradient(135deg, #ffe1a4, var(--gold));
  box-shadow: 0 12px 30px rgba(240, 187, 104, 0.18);
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.soft-link {
  opacity: 0.84;
}

.focus-actions-inline,
.about-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.focus-actions-inline {
  justify-content: flex-end;
}

.mini-contact,
.footer-link-button,
.footer-contact-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--blue-2);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.mini-contact {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
}

.footer-contact-button {
  color: #0a1018;
  background: linear-gradient(135deg, #ffe1a4, var(--gold));
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 32px rgba(240, 187, 104, 0.16);
}

.privacy-mini {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(202, 214, 232, 0.74);
  margin: 10px 0 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(47, 125, 255, 0.08);
  border: 1px solid rgba(117, 181, 255, 0.16);
}

.legal-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 125, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(4, 11, 22, 0.96), rgba(4, 11, 22, 0.82));
  border-top: 1px solid var(--line);
}

.compact-legal {
  padding-top: 55px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 26px;
  align-items: start;
}

.two-column-legal {
  grid-template-columns: 0.75fr 1.25fr;
}

.legal-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(9, 20, 35, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-intro p {
  font-size: 16px;
}

.legal-card {
  grid-column: 2;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: clamp(20px, 2.4vw, 28px);
  margin-bottom: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(10, 23, 38, 0.70);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.two-column-legal .legal-card {
  grid-column: auto;
}

.legal-card h3 {
  margin-bottom: 10px;
}

.legal-card p {
  font-size: 15px;
  margin-bottom: 10px;
}

.legal-card a,
.footer-legal a {
  color: var(--blue-2);
  text-decoration: none;
}

.legal-note {
  color: rgba(255, 219, 156, 0.9) !important;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.consent-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: min(580px, calc(100% - 44px));
  pointer-events: none;
}

.consent-content {
  width: 100%;
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 125, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 17, 30, 0.95);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.consent-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 2px;
}

.consent-content h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.consent-content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.consent-actions,
.modal-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.consent-actions .btn,
.modal-actions .btn {
  min-height: 44px;
  padding: 12px 15px;
}

.consent-primary-action {
  box-shadow: 0 12px 28px rgba(47, 125, 255, 0.34);
}

.consent-secondary-action {
  border-color: rgba(117, 181, 255, 0.28);
}

.consent-subtle-action {
  color: rgba(234, 241, 250, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.consent-subtle-action:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.consent-modal-card {
  width: min(620px, 100%);
}

.consent-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  margin: 12px 0;
}

.consent-option strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.consent-option span {
  color: var(--muted);
  font-size: 14px;
}

.consent-option input[type="checkbox"] {
  width: 26px;
  height: 26px;
  accent-color: #2f7dff;
}

.status-pill {
  border: 1px solid rgba(117, 181, 255, 0.22);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--blue-2) !important;
  background: rgba(47, 125, 255, 0.10);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-cta {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
  }

  .focus-card {
    grid-template-columns: auto 1fr;
  }

  .focus-actions-inline {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .focus-actions-inline .btn,
  .focus-actions-inline .mini-contact {
    flex: 1;
  }

  .legal-layout,
  .two-column-legal {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    position: relative;
    top: auto;
  }

  .legal-card {
    grid-column: auto;
  }

  .consent-content {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .consent-actions .btn {
    width: 100%;
  }

  .consent-actions .consent-primary-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero-actions .btn {
    width: 100%;
  }

  .legal-section {
    padding: 64px 0;
  }

  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  .consent-content {
    max-height: 45dvh;
    overflow-y: auto;
    padding: 15px;
    border-radius: 18px;
    gap: 12px;
  }

  .consent-content h2 {
    font-size: 20px;
  }

  .consent-content p {
    font-size: 13px;
  }

  .consent-actions {
    gap: 7px;
  }

  .consent-actions .btn {
    min-height: 42px;
    padding: 11px 12px;
    font-size: 14px;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

/* Separate Datenschutz-/Impressum-Seiten */
.legal-page-main {
  padding-top: var(--header-height);
}

.legal-page-hero {
  position: relative;
  padding: clamp(72px, 10vw, 130px) 0 clamp(40px, 7vw, 76px);
  background:
    linear-gradient(90deg, rgba(3, 8, 17, 0.95) 0%, rgba(6, 16, 28, 0.84) 46%, rgba(6, 16, 28, 0.56) 100%),
    url("assets/hero-bg.webp?v=image-cache-20260704-2") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.legal-page-hero-inner {
  max-width: 850px;
}

.legal-page-hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-page-hero p {
  max-width: 720px;
  color: rgba(234, 241, 250, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.legal-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.legal-page-section {
  border-top: 0;
}

.nav-cta.as-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 640px) {
  .legal-page-actions .btn {
    width: 100%;
  }
}

/* Kompakte Erstinformation */
.first-info-page .legal-page-hero {
  padding: 70px 0 58px;
  background:
    linear-gradient(180deg, rgba(3, 8, 17, 0.96), rgba(7, 18, 31, 0.9));
}

.first-info-page .legal-page-hero-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.first-info-page .legal-page-hero h1 {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: 0;
}

.first-info-page .legal-page-hero p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.55;
}

.first-info-page .legal-page-section {
  padding: 54px 0 74px;
}

.first-info-page .first-info-layout {
  display: block;
  max-width: 940px;
  margin-inline: auto;
}

.first-info-page .legal-card {
  grid-column: auto;
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 14px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.20);
}

.first-info-page .legal-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.first-info-page .legal-card p {
  font-size: 15.5px;
  line-height: 1.68;
}

@media (max-width: 900px) {
  .first-info-page .legal-page-hero {
    padding: 58px 0 44px;
  }

  .first-info-page .legal-page-hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 640px) {
  .first-info-page .legal-page-hero {
    padding: 46px 0 36px;
  }

  .first-info-page .legal-page-hero h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .first-info-page .legal-page-hero p {
    font-size: 17px;
  }

  .first-info-page .legal-page-section {
    padding: 38px 0 58px;
  }

  .first-info-page .legal-card {
    padding: 21px 18px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .person-image-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
    border-radius: 15px;
  }

  .person-image-badge strong {
    font-size: 13px;
  }

  .person-image-badge span {
    font-size: 11px;
  }

  .person-image-badge small {
    display: none;
  }

  .result-pointer-card.result-visual-clear img {
    object-position: 50% 38%;
  }

  .result-pointer-card.result-visual-unclear img {
    object-position: 50% 28%;
  }

  .result-pointer-card.result-visual-party img {
    object-position: 50% 40%;
  }
}


/* ------------------------------------------------------------
   Wer-bin-ich-Bereich
   ------------------------------------------------------------ */

.about-grid-enhanced {
  grid-template-columns: 340px minmax(0, 780px);
}

.about-copy > p {
  max-width: 720px;
}

.mini-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .about-grid-enhanced {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Sauberer Check-Teaser
   ---------------------------------------------------------
   Der sichtbare 60-Sekunden-Bereich war zu textlastig und
   die Card wirkte versetzt. Diese Overrides machen die Card
   ruhiger, klarer und button-orientierter.
   ========================================================= */

.focus-card-clean {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 260px);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 125, 255, 0.20), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(240, 187, 104, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    rgba(10, 23, 38, 0.78);
}

.focus-card-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 26px);
}

.focus-card-clean .focus-icon {
  width: clamp(66px, 6vw, 86px);
  height: clamp(66px, 6vw, 86px);
  border-radius: 26px;
  flex: 0 0 auto;
}

.focus-card-clean .focus-icon svg {
  width: 38px;
  height: 38px;
}

.focus-card-text {
  min-width: 0;
}

.focus-card-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-2);
  background: rgba(47, 125, 255, 0.12);
  border: 1px solid rgba(117, 181, 255, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-card-clean h3 {
  margin: 0;
  max-width: none;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.focus-card-clean .focus-actions-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
}

.focus-card-clean .focus-actions-inline .btn,
.focus-card-clean .mini-contact {
  width: 100%;
  min-height: 58px;
}

.focus-card-clean .mini-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.90) !important;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.focus-card-clean .mini-contact:hover,
.focus-card-clean .mini-contact:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(117, 181, 255, 0.52);
  background: rgba(47, 125, 255, 0.13);
}

@media (max-width: 980px) {
  .focus-card-clean {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .focus-card-clean .focus-actions-inline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .focus-card-clean {
    padding: 22px;
    border-radius: 26px;
  }

  .focus-card-main {
    align-items: flex-start;
  }

  .focus-card-clean h3 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .focus-card-clean .focus-actions-inline {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Check-Teaser final ausgerichtet
   ---------------------------------------------------------
   Der rechte CTA-Kasten wird komplett neu ausgerichtet:
   keine übergroße Headline, keine Überlagerung, klare Buttons.
   ========================================================= */

.section-focus .focus-grid {
  align-items: center;
}

.focus-card-clean {
  width: min(100%, 640px);
  min-height: 300px;
  margin-left: auto;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: clamp(28px, 3.8vw, 46px) !important;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 125, 255, 0.25), transparent 38%),
    radial-gradient(circle at 86% 82%, rgba(240, 187, 104, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 38, 0.82);
}

.focus-card-clean .focus-card-main {
  min-width: 0;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 28px);
}

.focus-card-clean .focus-icon {
  width: clamp(72px, 7vw, 92px);
  height: clamp(72px, 7vw, 92px);
  border-radius: 28px;
}

.focus-card-clean .focus-card-text {
  min-width: 0;
  overflow: hidden;
}

.focus-card-clean .focus-card-kicker {
  margin-bottom: 12px;
}

.focus-card-clean h3 {
  max-width: 390px;
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.9vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
  overflow-wrap: normal;
}

.focus-mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.focus-mini-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(232, 241, 255, 0.86);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.focus-card-clean .focus-actions-inline {
  width: 100%;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  justify-content: stretch;
  margin: 0;
}

.focus-card-clean .focus-actions-inline .btn,
.focus-card-clean .mini-contact {
  grid-column: auto !important;
  width: 100% !important;
  min-height: 60px;
  border-radius: 18px;
  white-space: nowrap;
}

.focus-card-clean .mini-contact {
  font-size: 16px;
  font-weight: 850;
}

@media (max-width: 980px) {
  .focus-card-clean {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .focus-card-clean {
    min-height: auto;
    gap: 20px;
    padding: 22px !important;
    border-radius: 26px;
  }

  .focus-card-clean .focus-card-main {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .focus-card-clean .focus-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
  }

  .focus-card-clean h3 {
    max-width: none;
    font-size: clamp(30px, 9vw, 40px);
  }

  .focus-card-clean .focus-actions-inline {
    grid-template-columns: 1fr;
  }

  .focus-mini-facts {
    gap: 7px;
  }

  .focus-mini-facts span {
    font-size: 12px;
    min-height: 32px;
  }
}


/* Check-Teaser: Hauptbutton priorisieren */
.focus-card-clean .focus-actions-inline {
  grid-template-columns: 1fr !important;
}

/* Empfehlungsfeld im Kontaktformular: freiwillig, dezent, mobil sauber. */
.form-help {
  margin: 8px 0 0;
  color: rgba(202, 214, 232, 0.72);
  font-size: 13px;
  line-height: 1.45;
}


/* =========================================================
   Hybrid-Update: Hook-first Landingpage + Kevin + Themen
   ---------------------------------------------------------
   Bestehendes Design bleibt erhalten. Diese Ergänzungen
   ordnen die Startseite stärker als moderne Hybrid-Landingpage.
   ========================================================= */

.brand-logo {
  gap: 12px;
}

.brand-text-fallback {
  display: inline-grid;
  gap: 3px;
  min-width: 0;
}

.brand-logo .brand-name {
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand-logo .brand-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.hero-hybrid {
  min-height: 860px;
}

.hero-grid-hybrid {
  grid-template-columns: minmax(0, 680px) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 78px);
  justify-content: space-between;
}

.hero-hybrid h1 {
  max-width: 760px;
}

.hero-person-card,
.kevin-mini-card,
.topic-card,
.value-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(10, 23, 38, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-person-card {
  align-self: center;
  border-radius: 32px;
  padding: 14px;
  max-width: 340px;
  justify-self: end;
}

.hero-person-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-person-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.person-image-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(4, 11, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.person-image-badge strong,
.person-image-badge span,
.person-image-badge small {
  display: block;
  letter-spacing: 0;
}

.person-image-badge strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.person-image-badge span {
  margin-top: 3px;
  color: rgba(229, 239, 255, 0.78);
  font-size: 12px;
  line-height: 1.3;
}

.person-image-badge small {
  margin-top: 5px;
  color: rgba(255, 219, 156, 0.84);
  font-size: 11px;
  line-height: 1.25;
}

.hero-person-copy {
  padding: 16px 8px 6px;
}

.hero-person-copy span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-person-copy strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.section-why {
  padding-top: 78px;
}

.why-grid,
.topics-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  min-height: 190px;
}

.section-kevin-bridge {
  padding-top: 70px;
  padding-bottom: 78px;
}

.kevin-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.kevin-bridge-copy p {
  font-size: 18px;
  max-width: 760px;
}

.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.kevin-mini-card {
  border-radius: 32px;
  padding: 18px;
}

.kevin-mini-logo {
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.kevin-mini-card > img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.kevin-mini-card p {
  margin: 16px 4px 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.section-topics {
  padding-top: 76px;
  overflow: visible;
  background:
    radial-gradient(circle at 85% 10%, rgba(47, 125, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(4, 11, 22, 0.15), rgba(4, 11, 22, 0.54));
}

.topics-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  overflow: visible;
}

.topic-card {
  min-height: 190px;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topic-card:hover,
.topic-card.is-open {
  border-color: rgba(117, 181, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(10, 23, 38, 0.82);
}

.topic-card:hover {
  transform: translateY(-3px);
}

.topic-card.is-open {
  z-index: 20;
  transform: none;
}

.topic-card h3 {
  color: #fffaf0;
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
}

.topic-toggle {
  appearance: none;
  width: 100%;
  border: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  background: transparent;
  color: inherit;
  text-align: left;
}

.topic-toggle:focus-visible {
  outline: 2px solid rgba(117, 181, 255, 0.58);
  outline-offset: 6px;
  border-radius: 14px;
}

.topic-toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(240, 187, 104, 0.40);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 217, 148, 0.22), rgba(240, 187, 104, 0.05) 72%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  flex: 0 0 28px;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 240ms ease, transform 200ms ease;
}

.topic-toggle-icon::before,
.topic-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 6px rgba(240, 187, 104, 0.45);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.topic-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Hover: sanftes Gold-Leuchten um das Plus-Zeichen. */
.topic-card:hover .topic-toggle-icon,
.topic-toggle:hover .topic-toggle-icon {
  border-color: rgba(240, 187, 104, 0.68);
  box-shadow: 0 0 0 4px rgba(240, 187, 104, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Geöffnet: goldener Minus-Button mit weichem Schein. */
.topic-card.is-open .topic-toggle-icon {
  border-color: rgba(240, 187, 104, 0.78);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 217, 148, 0.40), rgba(240, 187, 104, 0.12) 72%);
  box-shadow: 0 0 0 4px rgba(240, 187, 104, 0.13), 0 6px 18px rgba(240, 187, 104, 0.18);
}

.topic-card.is-open .topic-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.topic-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.topic-detail {
  position: absolute;
  top: calc(100% - 10px);
  left: 18px;
  right: 18px;
  z-index: 2;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(10, 23, 38, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  color: rgba(245, 247, 251, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, visibility 0s linear 180ms, transform 180ms ease;
}

.topic-card.is-open .topic-detail {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (max-width: 980px) {
  .topic-detail {
    position: static;
    inset: auto;
    z-index: auto;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-top: 0 solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, padding-top 180ms ease, border-color 180ms ease, visibility 0s linear 220ms;
  }

  .topic-card.is-open .topic-detail {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    transition-delay: 0s;
  }
}

.about-section-expanded {
  padding-top: 90px;
}


.values-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 20px;
}

.value-card {
  border-radius: 22px;
  padding: 20px;
}

.value-card h3 {
  margin-bottom: 6px;
  color: #fffaf0;
}

.value-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.about-trust {
  margin-bottom: 24px;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .main-nav {
    gap: 17px;
    font-size: 14px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .brand-logo .brand-name {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  .brand-logo .brand-name {
    font-size: 30px;
  }

  .brand-logo .brand-sub {
    display: none;
  }

  .hero-grid-hybrid,
  .kevin-bridge-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid-hybrid {
    gap: 16px;
  }

  .hero-person-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    justify-self: start;
    width: min(100%, 390px);
    max-width: 390px;
    gap: 12px;
    padding: 10px;
    border-radius: 24px;
    margin-top: 4px;
  }

  .hero-person-image {
    border-radius: 18px;
  }

  .hero-person-image img {
    width: 86px;
    height: 86px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 50% 24%;
  }

  .hero-person-copy {
    min-width: 0;
    padding: 0 4px 0 0;
  }

  .hero-person-copy span {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 0.10em;
  }

  .hero-person-copy strong {
    font-size: 15px;
    line-height: 1.28;
  }

  .why-grid,
  .topics-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kevin-mini-card {
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .brand-logo .brand-name {
    font-size: 26px;
  }

  .hero-hybrid {
    padding-bottom: 64px;
  }

  .hero-hybrid h1 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.96;
  }

  .hero-hybrid .hero-text {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-actions .soft-link {
    display: inline-flex;
  }

  .hero-person-card {
    grid-template-columns: 74px minmax(0, 1fr);
    width: min(100%, 340px);
    padding: 9px;
    gap: 10px;
    border-radius: 22px;
  }

  .hero-person-image img {
    width: 74px;
    height: 74px;
  }

  .hero-person-copy strong {
    font-size: 14px;
  }

  .section-why,
  .section-kevin-bridge,
  .section-topics,
  .about-section-expanded {
    padding-top: 66px;
  }

  .why-card,
  .topic-card {
    min-height: auto;
    padding: 22px;
  }

  .why-card .card-number {
    margin-bottom: 18px;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .bridge-actions,
  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bridge-actions .btn,
  .about-actions .btn {
    width: 100%;
  }

  .kevin-mini-card {
    display: none;
  }

  .values-grid {
    gap: 12px;
  }

  .value-card {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .hero-hybrid h1 {
    font-size: clamp(38px, 11.2vw, 48px);
  }

  .brand-logo .brand-name {
    font-size: 23px;
  }

  .topic-card h3 {
    font-size: 19px;
  }
}


/* =========================================================
   Finales Bild-/UX-Update: Fazit-Pointer, Kevin-Brücke, Mobile
   ---------------------------------------------------------
   Nur Layout/Bildlogik. Keine Text- oder Check-Logik-Änderung.
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.site-header {
  width: 100%;
}

.main-nav,
.hero-grid,
.focus-grid,
.why-grid,
.topics-grid,
.about-grid,
.contact-grid,
.result-wrap,
.next-grid,
.footer-grid {
  min-width: 0;
}

/* Kevin-Brücke ohne mittlere Bildkarte: wirkt weiterhin hochwertig, aber ruhiger. */
.section-kevin-bridge {
  overflow: hidden;
}

.section-kevin-bridge .kevin-bridge-grid {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.kevin-bridge-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 18%, rgba(47, 125, 255, 0.18), transparent 32%),
    radial-gradient(circle at 8% 100%, rgba(240, 187, 104, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.028)),
    rgba(10, 23, 38, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.kevin-bridge-copy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(117, 181, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.kevin-bridge-copy > * {
  position: relative;
  z-index: 1;
}

/* Fazit: neues Zeigefinger-Bild nur in der Result-Section. */
.result-wrap {
  grid-template-columns: minmax(250px, 330px) minmax(0, 680px);
  gap: clamp(28px, 4.5vw, 58px);
  justify-content: center;
}

.result-pointer-card {
  width: min(330px, 100%);
  justify-self: end;
  align-self: center;
  transform: translateX(8px);
  isolation: isolate;
}

.result-pointer-card::after {
  content: "";
  position: absolute;
  inset: auto -18px 18px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 187, 104, 0.22), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.result-pointer-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 24%;
}

.result-pointer-card.result-visual-clear img {
  object-position: 50% 36%;
}

.result-pointer-card.result-visual-unclear img {
  object-position: 50% 30%;
}

.result-pointer-card.result-visual-party img {
  object-position: 50% 36%;
}

.result-content {
  position: relative;
  z-index: 2;
}

.result-content::before {
  content: "";
  position: absolute;
  inset: 20px auto 20px -1px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--gold-2), rgba(47, 125, 255, 0.35));
  opacity: 0.85;
}

/* Sauberere Tablet-/Mobile-Flächen. */
@media (max-width: 980px) {
  .site-header {
    min-height: var(--header-height);
  }

  .main-nav {
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
  }

  .hero-copy {
    padding: clamp(110px, 20vw, 150px) 0 24px;
  }

  .section-kevin-bridge .kevin-bridge-grid {
    grid-template-columns: 1fr;
  }

  .kevin-bridge-copy {
    padding: clamp(24px, 5vw, 38px);
  }

  .result-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .result-content {
    order: 1;
  }

  .result-pointer-card {
    order: 2;
    width: min(260px, 60vw);
    justify-self: center;
    transform: none;
  }

  .result-section {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--max), calc(100% - 30px));
  }

  .topics-grid,
  .why-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .why-card,
  .value-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand-logo .brand-name {
    max-width: calc(100vw - 92px);
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(22px, 7vw, 26px);
  }

  .menu-button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .hero {
    padding: calc(var(--header-height) + 32px) 0 56px;
    background-position: 66% top;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 9, 18, 0.55) 0%, rgba(3, 9, 18, 0.86) 40%, rgba(3, 9, 18, 0.99) 100%),
      linear-gradient(90deg, rgba(3, 9, 18, 0.88) 0%, rgba(3, 9, 18, 0.38) 100%);
  }

  .hero-copy {
    padding: clamp(92px, 26vw, 126px) 0 18px;
  }

  .hero-hybrid h1,
  h1 {
    font-size: clamp(36px, 11.4vw, 52px);
    line-height: 0.98;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-hybrid .hero-text,
  .hero-text,
  .section-heading p,
  .focus-copy p,
  .kevin-bridge-copy p,
  .contact-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .btn-big {
    min-height: 58px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .section-why,
  .section-kevin-bridge,
  .section-focus,
  .section-topics,
  .about-section-expanded {
    padding-top: 56px;
  }

  .section-kevin-bridge {
    padding-bottom: 58px;
  }

  .kevin-bridge-copy,
  .focus-card-clean,
  .result-content,
  .contact-form,
  .disclaimer-box,
  .next-card,
  .topic-card,
  .why-card,
  .value-card {
    border-radius: 22px;
  }

  .focus-card-clean {
    padding: 20px !important;
  }

  .focus-mini-facts span {
    white-space: normal;
  }

  .result-section {
    padding: 58px 0;
  }

  .result-content {
    padding: 24px 20px;
  }

  .result-content::before {
    inset: 18px auto 18px 0;
    width: 2px;
  }

  .result-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .result-text .result-tagline {
    font-size: 19px;
    line-height: 1.35;
  }

  .result-actions {
    margin-top: 22px;
  }

  .result-pointer-card {
    width: min(210px, 58vw);
  }

  .trust-row {
    gap: 10px;
  }

  .next-card {
    padding: 20px;
    gap: 14px;
  }

  .about-image {
    width: min(280px, 78vw);
    justify-self: center;
  }

  .consent-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .consent-content {
    max-height: 42dvh;
  }

  .modal {
    padding: 12px;
  }

  .modal-card {
    padding: 22px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }
}

@media (max-width: 760px) {
  .result-section {
    min-height: auto;
    padding: 92px 0 72px;
  }

  .result-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .result-content {
    border-radius: 28px;
  }

  .result-section.result-type-clear .result-pointer-card,
  .result-section.result-type-unclear .result-pointer-card {
    display: none;
  }

  .result-section.result-type-party {
    padding-top: 72px;
  }

  .result-section.result-type-party .result-wrap {
    gap: 14px;
  }

  .result-section.result-type-party .result-pointer-card {
    display: block;
    width: min(250px, 72vw);
    margin: 14px auto 0;
    padding: 8px;
    border-radius: 30px;
    opacity: 1;
  }

  .result-section.result-type-party .result-pointer-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 34%;
    border-radius: 22px;
  }

  .result-section.result-type-party .result-content {
    margin-top: 0;
    padding: 28px 22px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .main-nav {
    inset: var(--header-height) 10px auto 10px;
    padding: 10px;
    border-radius: 20px;
  }

  .main-nav a,
  .nav-cta {
    padding: 13px 14px;
  }

  .hero-copy {
    padding-top: 98px;
  }

  .eyebrow,
  .focus-card-kicker,
  .question-kicker {
    letter-spacing: 0.10em;
  }

  .focus-card-clean h3 {
    font-size: clamp(27px, 8.8vw, 36px);
  }

  .topics-grid {
    gap: 12px;
  }

  .topic-card,
  .why-card {
    padding: 18px;
  }

  .contact-form {
    padding: 18px;
  }

  input,
  select,
  textarea {
    padding: 14px;
    border-radius: 14px;
  }

  .checkbox-row {
    gap: 9px;
    font-size: 14px;
  }

  .privacy-mini {
    font-size: 12.5px;
    padding: 12px;
  }

  .result-pointer-card {
    width: min(190px, 56vw);
  }
}

@media (max-width: 359px) {
  .container {
    width: min(100% - 18px, var(--max));
  }

  .brand-logo .brand-name {
    font-size: 21px;
  }

  .hero-hybrid h1,
  h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .hero-hybrid .hero-text,
  .hero-text {
    font-size: 15.5px;
  }

  .btn {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 15px;
  }

  .hero-person-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .hero-person-image img {
    width: 64px;
    height: 64px;
  }

}


/* Check: Zurück-Button im Fokusmodus */
.check-header-actions {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.check-back {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  line-height: 1;
  transition: 180ms ease;
}

.check-back:hover,
.check-back:focus-visible {
  outline: none;
  border-color: rgba(117, 181, 255, 0.72);
  background: rgba(47, 125, 255, 0.16);
  transform: translateY(-1px);
}

.check-back:disabled,
.check-back.is-disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

@media (max-width: 640px) {
  .check-header-actions {
    gap: 8px;
  }

  .check-back {
    width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 14px;
    font-size: 0;
  }

  .check-back::before {
    content: "←";
    font-size: 20px;
    line-height: 1;
  }
}


/* Final Check-Cleanup: oben nur Fortschritt, Kategorie nur noch als Kicker bei der Frage. */
.check-stage .funnel-topline {
  justify-content: flex-end;
}

.party-warning-card {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.party-warning-card p {
  margin: 0;
}

.party-warning-card .party-warning-strong {
  color: rgba(255, 219, 156, 0.94);
  font-weight: 800;
}

.party-result-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .check-stage .funnel-topline {
    justify-content: flex-end;
  }

  .party-warning-card {
    gap: 10px;
  }

  .party-result-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 390px), (max-height: 610px) {
  .party-warning-card p {
    font-size: 12.5px;
    line-height: 1.35;
  }
}


/* =========================================================
   Logo-Magic-Update: lesbares Kevin-Regelt-Logo
   ---------------------------------------------------------
   Header nutzt die kompakte Wortmarke ohne winzige Unterzeile.
   Footer nutzt die größere Full-Variante mit lesbarer Claim-Zeile.
   Der Text-Fallback bleibt nur sichtbar, wenn das Logo nicht lädt.
   ========================================================= */

.site-header {
  gap: 18px;
}

.site-header .brand-logo {
  flex: 0 0 auto;
  max-width: min(340px, 29vw);
}

.brand-logo {
  min-width: 0;
}

.brand-logo-img {
  display: none;
  width: auto;
  height: 52px;
  max-width: 340px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo.has-logo .brand-logo-img {
  display: block;
}

.brand-logo.has-logo .brand-text-fallback {
  display: none !important;
}

.footer-brand.brand-logo {
  max-width: 360px;
}

.footer-brand.brand-logo .brand-logo-img {
  height: 76px;
  max-width: 340px;
}

/* Etwas kompakter, damit die Navigation auf mittleren Desktopbreiten stabil bleibt. */
@media (min-width: 981px) and (max-width: 1180px) {
  .site-header .brand-logo {
    max-width: 292px;
  }

  .brand-logo-img {
    height: 46px;
    max-width: 292px;
  }

  .footer-brand.brand-logo .brand-logo-img {
    height: 70px;
    max-width: 315px;
  }
}

@media (max-width: 980px) {
  .site-header .brand-logo {
    max-width: 270px;
  }

  .brand-logo-img {
    height: 42px;
    max-width: 270px;
  }

  .footer-brand.brand-logo {
    max-width: 320px;
  }

  .footer-brand.brand-logo .brand-logo-img {
    height: 66px;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    max-width: calc(100vw - 86px);
  }

  .brand-logo-img {
    height: 34px;
    max-width: min(215px, calc(100vw - 92px));
  }

  .footer-brand.brand-logo {
    max-width: 100%;
  }

  .footer-brand.brand-logo .brand-logo-img {
    height: 60px;
    max-width: min(290px, 100%);
  }
}

@media (max-width: 390px) {
  .brand-logo-img {
    height: 32px;
    max-width: min(198px, calc(100vw - 86px));
  }

  .footer-brand.brand-logo .brand-logo-img {
    height: 54px;
    max-width: min(260px, 100%);
  }
}

@media (max-width: 340px) {
  .brand-logo-img {
    height: 30px;
    max-width: min(178px, calc(100vw - 82px));
  }
}

/* =========================================================
   FINALER MANUELLER MOBILE-HERO-FIX
   ---------------------------------------------------------
   Desktop bleibt unverändert.
   Mobil wird die Hero-Person-Card vollständig ausgeblendet.
   Hero-Inhalt sitzt mobil deutlich höher.
   ========================================================= */

@media (max-width: 980px) {
  .hero-hybrid {
    min-height: auto !important;
  }

  .hero {
    min-height: auto !important;
    align-items: flex-start !important;
    padding: calc(var(--header-height) + 14px) 0 46px !important;
  }

  .hero-grid-hybrid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .hero-copy {
    padding: 56px 0 16px !important;
  }

  .hero-person-card {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(var(--header-height) + 8px) 0 42px !important;
    background-position: 66% top;
  }

  .hero-copy {
    padding: 42px 0 14px !important;
  }

  .hero-hybrid {
    padding-bottom: 42px !important;
  }
}

@media (max-width: 430px) {
  .hero-copy {
    padding-top: 34px !important;
  }
}

@media (max-width: 359px) {
  .hero-copy {
    padding-top: 30px !important;
  }
}

/* =========================================================
   FINALER MANUELLER CHECK-BUTTON-FIX MOBIL - FEINSCHLIFF
   ---------------------------------------------------------
   Mobil: Titel oben, Icon mittig, Erklärung darunter.
   Keine Icon-Spalte links.
   Keine hässliche automatische Worttrennung.
   Desktop bleibt unverändert.
   ========================================================= */

@media (max-width: 640px) {
  .check-stage .answers-grid,
  .check-stage .answer-count-6 .answers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-content: start !important;
    gap: 9px !important;
  }

  .check-stage .answer-button,
  .check-stage .answer-count-6 .answer-button {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-content: start !important;
    justify-items: center !important;
    text-align: center !important;
    min-height: 128px !important;
    padding: 14px 10px !important;
    gap: 8px !important;
    border-radius: 18px !important;
  }

  .check-stage .answer-text,
  .check-stage .answer-count-6 .answer-text {
    display: contents !important;
  }

  .check-stage .answer-text strong,
  .check-stage .answer-count-6 .answer-text strong {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: clamp(15px, 3.95vw, 17px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;

    /* Wichtig: keine hässliche Silbentrennung */
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }

  .answer-emoji,
  .check-stage .answer-count-6 .answer-emoji {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 13px !important;
    font-size: 17px !important;
    margin: 0 auto !important;
  }

  .check-stage .answer-text small,
  .check-stage .answer-count-6 .answer-text small {
    grid-column: 1 !important;
    grid-row: 3 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 11.2px !important;
    line-height: 1.24 !important;

    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }

  .check-stage .answer-arrow {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .check-stage .answer-button,
  .check-stage .answer-count-6 .answer-button {
    min-height: 126px !important;
    padding: 13px 8px !important;
    gap: 7px !important;
  }

  .check-stage .answer-text strong,
  .check-stage .answer-count-6 .answer-text strong {
    font-size: clamp(14.4px, 3.85vw, 16px) !important;
    line-height: 1.18 !important;

    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .check-stage .answer-text small,
  .check-stage .answer-count-6 .answer-text small {
    font-size: 10.9px !important;
    line-height: 1.22 !important;

    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .answer-emoji,
  .check-stage .answer-count-6 .answer-emoji {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 359px) {
  .check-stage .answers-grid,
  .check-stage .answer-count-6 .answers-grid {
    grid-template-columns: 1fr !important;
  }

  .check-stage .answer-button,
  .check-stage .answer-count-6 .answer-button {
    grid-template-columns: 1fr !important;
    min-height: 104px !important;
    padding: 12px 10px !important;
  }

  .check-stage .answer-text strong,
  .check-stage .answer-count-6 .answer-text strong {
    font-size: 14.5px !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (max-height: 610px) and (max-width: 640px) {
  .check-stage .question-area {
    overflow-y: auto !important;
  }

  .check-stage .answer-button,
  .check-stage .answer-count-6 .answer-button {
    grid-template-columns: 1fr !important;
    min-height: 108px !important;
    padding: 10px 8px !important;
    gap: 6px !important;
  }

  .check-stage .answer-text strong,
  .check-stage .answer-count-6 .answer-text strong {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .check-stage .answer-text small,
  .check-stage .answer-count-6 .answer-text small {
    display: block !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

/* ============================================================
   CONTENT-SUBPAGES (Aktuelles / News, Ratgeber, ueber-kevin)
   Eigenstaendig sichtbar, unabhaengig von .reveal (kein JS noetig).
   ============================================================ */
.content-main {
  padding-top: calc(var(--header-height) + 44px);
  padding-bottom: 96px;
}
.content-narrow {
  max-width: 820px;
  margin-inline: auto;
}

/* Breadcrumb */
.crumbs {
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--text); text-decoration: underline; }
.crumbs .sep { opacity: 0.5; }

/* Seitenkopf */
.content-head { margin-bottom: 34px; }
.content-head h1 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.06;
  margin: 10px 0 16px;
}
.content-head .lead {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}
.content-meta {
  font-size: 13px;
  color: var(--soft);
  margin-top: 14px;
}

/* Prose */
.prose { color: var(--muted); font-size: 16.5px; line-height: 1.72; }
.prose > * + * { margin-top: 18px; }
.prose h2 {
  color: var(--text);
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 44px;
  margin-bottom: 2px;
}
.prose h3 { color: var(--text); font-size: 19px; margin-top: 30px; }
.prose p { margin: 0; }
.prose a:not(.btn) { color: var(--blue-2); text-decoration: underline; text-underline-offset: 2px; }
.prose a:not(.btn):hover { color: var(--blue); }
.prose strong, .prose b { color: var(--text); }
.prose ul, .prose ol {
  margin: 6px 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.prose ul li { position: relative; padding-left: 30px; color: var(--text); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(47, 125, 255, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2375b5ff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid rgba(47, 125, 255, 0.4);
}
.prose ol { counter-reset: pc; }
.prose ol li { position: relative; padding-left: 40px; color: var(--text); counter-increment: pc; }
.prose ol li::before {
  content: counter(pc);
  position: absolute;
  left: 0;
  top: 0;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(47, 125, 255, 0.14);
  border: 1px solid rgba(47, 125, 255, 0.4);
  color: var(--blue-2);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}

/* Hinweis-/Disclaimer-Box */
.note-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--muted);
  margin-top: 26px;
}
.note-box strong { color: var(--text); }

/* Diagramm (Inline-SVG) */
.news-figure {
  margin: 30px 0 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 16px;
}
.news-figure svg { width: 100%; height: auto; display: block; }
.news-figure figcaption {
  font-size: 13px;
  color: var(--soft);
  margin-top: 12px;
  line-height: 1.5;
}

/* Quellen */
.sources { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 20px; }
.sources h2 { font-size: 17px; color: var(--text); margin: 0 0 12px; }
.sources ol { margin: 0; padding-left: 20px; color: var(--soft); font-size: 14px; line-height: 1.6; }
.sources a { color: var(--blue-2); text-decoration: none; word-break: break-word; }
.sources a:hover { text-decoration: underline; }

/* CTA-Reihe */
.content-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Artikel-Karten (Hub) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.entry-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.entry-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.entry-card .tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 700;
  margin-bottom: 12px;
}
.entry-card h2, .entry-card h3 { color: var(--text); font-size: 20px; line-height: 1.25; margin: 0 0 10px; }
.entry-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.entry-card .more { margin-top: auto; color: var(--blue-2); font-weight: 700; font-size: 14.5px; }

@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr; }
  .content-main { padding-top: calc(var(--header-height) + 26px); padding-bottom: 64px; }
}

/* FAQ-Akkordeon (Startseite) */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  overflow: hidden;
  transition: border-color 0.18s ease;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  position: relative;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2375b5ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.faq-body p { margin: 0; }

/* Autorenseite */
.author-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  margin-top: 14px;
}
.author-hero img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex: none;
  border: 2px solid rgba(47, 125, 255, 0.4);
}
.author-hero .ah-name { font-weight: 800; font-size: 19px; color: var(--text); }
.author-hero .ah-role { color: var(--muted); font-size: 14px; margin-top: 2px; }
.author-quote {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-2);
  line-height: 1.4;
  margin-top: 26px;
}
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.social-row a {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.social-row a:hover { border-color: rgba(47, 125, 255, 0.5); color: var(--blue-2); }
@media (max-width: 560px) {
  .author-hero { flex-direction: column; text-align: center; }
}
