/* Betrugslotse (Arbeitstitel) — geteiltes Design-System */
:root {
  --navy: #0E3B52;
  --navy-deep: #0A2A3B;
  --teal: #1FA98F;
  --teal-dark: #16876F;
  --amber: #F2A33C;
  --ink: #16242C;
  --muted: #5B6B74;
  --line: #E2E9ED;
  --bg: #FFFFFF;
  --bg-soft: #F4F8FA;
  --bg-navy: #0E3B52;
  --danger: #D9534F;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 6px 24px rgba(14, 59, 82, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 59, 82, 0.16);
  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
h1, h2, h3 { line-height: 1.2; color: var(--navy); font-weight: 800; letter-spacing: -0.02em; }
h2.section-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); text-align: center; margin-bottom: 14px; }
.section-lead { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 44px; font-size: 1.08rem; }
.highlight { color: var(--teal); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--font); font-weight: 700; font-size: 1.05rem;
  padding: 16px 30px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(31,169,143,.32); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-block { width: 100%; }
.btn svg { width: 20px; height: 20px; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 1.22rem; letter-spacing: -0.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.brand-mark svg { width: 20px; height: 20px; }
.header-nav { display: flex; align-items: center; gap: 26px; }
.header-nav a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.header-nav a:hover { color: var(--navy); }
.header-cta { padding: 10px 18px; font-size: .95rem; }
@media (max-width: 760px) { .header-nav a:not(.header-cta) { display: none; } }

/* Hero */
.hero { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); padding: 64px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(31,169,143,.12); color: var(--teal-dark); font-weight: 700; font-size: .85rem; padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 18px; }
.hero p.lead { font-size: 1.18rem; color: var(--muted); margin-bottom: 28px; }
.hero p.lead strong { color: var(--ink); }
.hero-cta-note { margin-top: 14px; font-size: .9rem; color: var(--muted); }
.hero-visual { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; color: #fff; box-shadow: var(--shadow-lg); }
.hero-visual h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.hero-stat { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat b { font-size: 1.6rem; color: var(--teal); font-weight: 800; }
.hero-stat span { color: rgba(255,255,255,.8); font-size: .95rem; }

/* Trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: var(--navy); }
.trust-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card .card-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(31,169,143,.12); color: var(--teal-dark); display: grid; place-items: center; margin-bottom: 16px; }
.card .card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { text-align: center; padding: 12px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin: 0 auto 14px; }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .96rem; }

/* Mission / banner */
.banner { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 44px; text-align: center; }
.banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.banner p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 26px; }
.urgency { background: #FFF6EC; border: 1px solid #F6D9AE; border-radius: var(--radius); padding: 16px 22px; display: flex; gap: 14px; align-items: center; color: #8A5A12; font-size: .98rem; }
.urgency svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--amber); }
.urgency strong { color: #6B440C; }

/* Reviews */
.reviews-head { text-align: center; margin-bottom: 36px; }
.stars { color: #F4B740; letter-spacing: 2px; font-size: 1.1rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.review-card .stars { font-size: 1rem; margin-bottom: 10px; }
.review-card p { color: var(--ink); font-size: .98rem; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.review-author strong { display: block; font-size: .95rem; color: var(--navy); }
.review-author span { font-size: .85rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-family: var(--font); font-weight: 700; font-size: 1.05rem; color: var(--navy); text-align: left; }
.faq-q svg { width: 20px; height: 20px; color: var(--teal); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { color: var(--muted); padding: 0 4px 20px; }
.faq-item.open .faq-a { max-height: 320px; }

/* Newsletter */
.newsletter { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; border-radius: var(--radius-lg); padding: 48px; }
.newsletter-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.82); margin: 10px 0 0; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 15px 18px; border-radius: var(--radius); border: none; font-family: var(--font); font-size: 1rem; }
.newsletter-note { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 12px; }
.newsletter-success { display: none; background: rgba(31,169,143,.2); border: 1px solid var(--teal); border-radius: var(--radius); padding: 16px; color: #fff; }

/* Footer */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer p { font-size: .92rem; margin-bottom: 6px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.footer a { color: rgba(255,255,255,.75); display: block; margin-bottom: 8px; font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 20px; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-disclaimer { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 10px; line-height: 1.5; }

/* Quiz modal */
.quiz-modal { position: fixed; inset: 0; background: rgba(10,42,59,.6); backdrop-filter: blur(4px); z-index: 100; display: none; align-items: flex-start; justify-content: center; padding: 24px; overflow-y: auto; }
.quiz-modal.open { display: flex; }
.quiz-box { background: #fff; border-radius: var(--radius-lg); max-width: 560px; width: 100%; padding: 36px; position: relative; margin: 32px 0; box-shadow: var(--shadow-lg); }
.quiz-close { position: absolute; top: 16px; right: 16px; background: var(--bg-soft); border: none; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--muted); }
.quiz-close svg { width: 20px; height: 20px; }
.quiz-progress { height: 6px; background: var(--line); border-radius: 100px; overflow: hidden; margin-bottom: 8px; }
.quiz-progress-bar { height: 100%; width: 20%; background: var(--teal); border-radius: 100px; transition: width .3s ease; }
.quiz-progress-text { font-size: .82rem; color: var(--muted); margin-bottom: 24px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-step h2 { font-size: 1.4rem; margin-bottom: 6px; }
.quiz-sub { color: var(--muted); margin-bottom: 22px; font-size: .98rem; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 2px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; font-family: var(--font); font-size: 1.02rem; font-weight: 600; color: var(--ink); text-align: left; transition: all .15s; }
.quiz-option:hover { border-color: var(--teal); background: rgba(31,169,143,.05); }
.quiz-option .opt-icon { font-size: 1.4rem; }
.quiz-select { width: 100%; padding: 15px 16px; border: 2px solid var(--line); border-radius: var(--radius); font-family: var(--font); font-size: 1rem; background: #fff; margin-bottom: 18px; }
.quiz-next { margin-top: 4px; }
.quiz-next:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* Quiz form */
.quiz-form .form-note { background: rgba(31,169,143,.1); border-radius: 10px; padding: 12px 16px; color: var(--teal-dark); font-weight: 600; font-size: .95rem; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group select { width: 100%; padding: 13px 14px; border: 2px solid var(--line); border-radius: 10px; font-family: var(--font); font-size: 1rem; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.radio-group { display: flex; gap: 10px; }
.radio-option { flex: 1; }
.radio-option input { position: absolute; opacity: 0; }
.radio-option span { display: block; text-align: center; padding: 12px; border: 2px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: .95rem; transition: all .15s; }
.radio-option input:checked + span { border-color: var(--teal); background: rgba(31,169,143,.08); color: var(--teal-dark); }
.form-privacy { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.result-head { text-align: center; margin-bottom: 22px; }
.result-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,169,143,.14); color: var(--teal); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 14px; }
.ty-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(31,169,143,.14); color: var(--teal); display: grid; place-items: center; margin: 0 auto 20px; }
.ty-icon svg { width: 38px; height: 38px; }
.ty-steps { background: var(--bg-soft); border-radius: var(--radius); padding: 22px; margin-top: 22px; text-align: left; }
.ty-step { display: flex; gap: 14px; margin-bottom: 16px; }
.ty-step:last-child { margin-bottom: 0; }
.ty-step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; font-size: .9rem; }
.ty-step strong { display: block; color: var(--navy); }
.ty-step p { font-size: .92rem; color: var(--muted); }
.text-center { text-align: center; }

/* Cookie */
.cookie { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 20px; z-index: 120; display: none; }
.cookie.show { display: block; }
.cookie h4 { font-size: 1rem; margin-bottom: 6px; }
.cookie p { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns button { flex: 1; padding: 11px; border-radius: 10px; font-family: var(--font); font-weight: 600; cursor: pointer; font-size: .9rem; }
.cookie-accept { background: var(--teal); color: #fff; border: none; }
.cookie-decline { background: #fff; color: var(--muted); border: 1px solid var(--line); }

@media (max-width: 860px) {
  .hero-grid, .grid-3, .steps, .grid-2, .newsletter-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  /* Mobile: Hero-Text + CTA zuerst, Nutzen-Box danach (fast nur Mobile-Traffic) */
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Partner-Kanzlei ---------- */
.partner-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 36px;
  box-shadow: 0 10px 40px rgba(14, 59, 82, 0.06);
}
.partner-photo img { width: 100%; border-radius: var(--radius); display: block; }
.stars { color: var(--amber); letter-spacing: 2px; }
.partner-rating { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.partner-rating strong { color: var(--ink); }
.partner-info h3 { font-size: 26px; color: var(--navy); margin: 0 0 4px; }
.partner-title { color: var(--muted); font-weight: 600; margin: 0 0 18px; }
.partner-creds { list-style: none; padding: 0; margin: 0 0 18px; }
.partner-creds li { padding-left: 26px; position: relative; margin-bottom: 8px; color: var(--ink); }
.partner-creds li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.partner-quote { border-left: 3px solid var(--teal); margin: 0; padding: 4px 0 4px 16px; color: var(--muted); font-style: italic; }
.review-card p { margin: 10px 0 14px; }
.review-author { color: var(--muted); font-size: 13px; margin: 0 !important; }
@media (max-width: 820px) {
  .partner-card { grid-template-columns: 1fr; padding: 26px; gap: 22px; }
  .partner-photo img { max-width: 260px; margin: 0 auto; }
}

/* ---------- Hero-Partner-Strip (Trust-Element unterm CTA) ---------- */
.hero-partner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 430px;
  box-shadow: 0 4px 18px rgba(14, 59, 82, 0.06);
}
.hero-partner img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.hero-partner strong { display: block; color: var(--navy); font-size: 0.95rem; line-height: 1.3; }
.hero-partner .hp-rating { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; color: var(--muted); font-weight: 600; margin-top: 2px; }
.hero-partner .hp-rating .stars { letter-spacing: 1px; font-size: 0.85rem; }
.hero-partner em { display: block; color: var(--muted); font-size: 0.8rem; font-style: normal; margin-top: 2px; }

/* Mobile-Header: Brand + CTA nebeneinander ohne Overflow */
@media (max-width: 480px) {
  .header-content { gap: 10px; }
  .header .brand, .brand { font-size: 1.02rem; gap: 8px; }
  .header-cta { padding: 9px 14px; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }
}
