/* ==========================================================
   FDP Selm — Schulden stoppen, Zukunft sichern!
   Landingpage CSS — mobile-first
   ========================================================== */

:root {
  --c-yellow:   #FFED00;
  --c-magenta:  #E6007E;
  --c-navy:     #003A8F;
  --c-navy-2:   #002866;
  --c-ink:      #111827;
  --c-ink-soft: #374151;
  --c-gray:     #6B7280;
  --c-line:     #E5E7EB;
  --c-bg:       #FFFFFF;
  --c-bg-soft:  #F8F9FB;

  --f: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 8px;

  --shadow-1: 0 1px 2px rgba(17, 24, 39, .06), 0 1px 3px rgba(17, 24, 39, .04);
  --shadow-2: 0 10px 24px -10px rgba(17, 24, 39, .18), 0 4px 10px rgba(17, 24, 39, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--f);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-magenta); text-decoration: none; transition: color .15s ease; }
a:hover, a:focus { color: var(--c-navy); text-decoration: underline; }

/* superscripts */
sup a {
  color: var(--c-magenta);
  font-weight: 700;
  padding: 0 3px;
  text-decoration: none;
}
sup a:hover { color: var(--c-navy); text-decoration: underline; }
.hero sup a { color: var(--c-yellow); }
.hero sup a:hover { color: #fff; }

/* ==========================================================
   Layout
   ========================================================== */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap--narrow { max-width: 820px; }

.section { padding: 72px 0; }
@media (min-width: 768px) {
  .section { padding: 112px 0; }
}

/* ==========================================================
   Top bar
   ========================================================== */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: var(--c-yellow);
  border-bottom: 3px solid var(--c-magenta);
}
.topbar__inner {
  max-width: 1120px; margin: 0 auto;
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar__home img { height: 44px; width: auto; }
.topbar__back {
  color: var(--c-navy);
  font-weight: 600;
  font-size: 14px;
}
.topbar__back:hover { color: var(--c-magenta); }

/* ==========================================================
   Typography helpers
   ========================================================== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-magenta);
  margin: 0 0 12px;
}
.eyebrow--light { color: var(--c-yellow); }

.h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.015em;
  color: var(--c-navy);
  margin: 0 0 24px;
}
.h2--light { color: #fff; }

.h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-navy);
  margin: 0 0 16px;
}

.lead {
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--c-ink-soft);
  max-width: 70ch;
  margin: 0 0 32px;
}
.lead--light { color: rgba(255,255,255,.88); }

.kicker {
  margin: 40px 0 0;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--c-magenta);
  border-left: 6px solid var(--c-yellow);
  padding: 4px 0 4px 18px;
}
.kicker--light { color: var(--c-yellow); border-left-color: #fff; }
.kicker--strong {
  font-size: clamp(22px, 2.8vw, 30px);
  padding: 8px 0 8px 20px;
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 32px; font-size: 17px; }

.btn--primary {
  background: var(--c-magenta);
  color: #fff;
  border-color: var(--c-magenta);
}
.btn--primary:hover { background: #b90064; border-color: #b90064; color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
  border-width: 2px;
  font-weight: 800;
}
.btn--ghost:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
section:not(.section--cta):not(.section--solutions):not(.hero) .btn--ghost {
  color: var(--c-navy);
  border-color: var(--c-navy);
}
section:not(.section--cta):not(.section--solutions):not(.hero) .btn--ghost:hover {
  background: var(--c-navy); color: #fff;
}
.hero .btn--ghost { color: #fff !important; border-color: #fff !important; }
.hero .btn--ghost:hover { background: #fff; color: var(--c-navy) !important; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 96px;
}
@media (min-width: 768px) {
  .hero { padding: 88px 0 120px; }
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(230, 0, 126, .25), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(255, 237, 0, .10), transparent 60%),
    linear-gradient(180deg, #002970 0%, #003A8F 100%);
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 100%);
}

.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__top { margin-bottom: 40px; }
@media (min-width: 900px) { .hero__top { margin-bottom: 56px; } }

.hero__title {
  font-size: clamp(40px, 9vw, 120px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.035em;
  margin: 0;
  color: #fff;
  hyphens: none;
}
.hero__title-row { display: block; }
.hero__title-row--accent { color: var(--c-yellow); }

/* Grid: text left, counter right */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}

.hero__sub {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin: 0 0 28px;
}
.hero__sub strong { color: var(--c-yellow); font-weight: 800; }
.hero__sub em { font-style: normal; color: #fff; font-weight: 700; border-bottom: 3px solid var(--c-magenta); }

.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero__counter {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,237,0,.25);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
  position: relative;
}
.hero__counter::before {
  content: "€";
  position: absolute;
  top: -14px; right: 24px;
  background: var(--c-magenta);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-2);
}
.counter-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1;
}
.counter-num {
  font-size: clamp(80px, 13vw, 140px);
  font-weight: 900;
  color: var(--c-yellow);
  letter-spacing: -.04em;
  text-shadow: 0 0 40px rgba(255, 237, 0, .3);
  line-height: .9;
}
.counter-unit {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: rgba(255,255,255,.88);
  letter-spacing: -.01em;
}
.counter-label {
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}

/* The big centered quote question */
.hero__question {
  margin: 56px auto 0;
  max-width: 840px;
  padding: 0 12px;
  text-align: center;
  color: #fff;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.25;
  position: relative;
}
.hero__question p {
  margin: 0;
  padding: 18px 8px 18px;
  border-top: 1px solid rgba(255,237,0,.35);
  border-bottom: 1px solid rgba(255,237,0,.35);
}
.hero__question::before, .hero__question::after {
  content: "";
  display: block;
  width: 48px; height: 4px;
  margin: 0 auto;
  background: var(--c-yellow);
  border-radius: 2px;
}
.hero__question::before { margin-bottom: 22px; }
.hero__question::after  { margin-top: 22px;    }

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  opacity: .6;
  display: none;
}
@media (min-width: 900px) { .hero__scroll { display: block; } }
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 0; top: 6px; }
  30%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; top: 26px; }
}

/* ==========================================================
   Section variants
   ========================================================== */
.section--problem { background: var(--c-bg); }
.section--contrast { background: var(--c-bg-soft); }
.section--solutions {
  background: var(--c-navy);
  color: #fff;
  position: relative;
}
.section--solutions::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(230, 0, 126, .2), transparent 60%),
    radial-gradient(700px 350px at 90% 90%, rgba(255, 237, 0, .08), transparent 60%);
  pointer-events: none;
}
.section--vision { background: var(--c-bg); text-align: center; }
.section--check { background: var(--c-bg-soft); }
.section--cta {
  background: linear-gradient(135deg, var(--c-magenta) 0%, #c00064 100%);
  color: #fff;
  text-align: center;
}
.section--sources {
  background: var(--c-bg-soft);
  padding: 72px 0 96px;
}

/* ==========================================================
   Facts grid (Problem)
   ========================================================== */
.factgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}
@media (min-width: 640px) { .factgrid { grid-template-columns: repeat(3, 1fr); } }
.fact {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fact:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.fact__num {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 900;
  line-height: 1;
  color: var(--c-magenta);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.fact__text { font-size: 15px; color: var(--c-ink-soft); line-height: 1.5; }
.fact--accent { background: var(--c-yellow); border-color: var(--c-yellow); }
.fact--accent .fact__num { color: var(--c-navy); font-size: clamp(30px, 3.4vw, 38px); }
.fact--accent .fact__text { color: var(--c-navy); font-weight: 600; }

/* ==========================================================
   Charts
   ========================================================== */
.chart {
  margin: 40px 0 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.chart + .chart { margin-top: 24px; }
.chart__title {
  font-weight: 800;
  font-size: 18px;
  color: var(--c-navy);
  margin: 0 0 16px;
}
.chart__wrap {
  width: 100%;
  overflow-x: auto;
}
.chart__svg { width: 100%; height: auto; display: block; }
.chart__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--c-gray);
  line-height: 1.45;
}

/* ==========================================================
   Contrast (weniger / mehr Geld für)
   ========================================================== */
.contrast {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0;
}
@media (min-width: 768px) { .contrast { grid-template-columns: 1fr 1fr; } }
.contrast__col {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
  border-top: 6px solid;
}
.contrast__col--neg { border-top-color: var(--c-magenta); }
.contrast__col--pos { border-top-color: var(--c-gray); }
.contrast__col h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-navy);
}
.clist { list-style: none; margin: 0; padding: 0; }
.clist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--c-line);
  font-weight: 600;
  font-size: 17px;
}
.clist li:last-child { border-bottom: 0; }
.clist li::before {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}
.clist--cross li::before { content: "✕"; background: var(--c-magenta); }
.clist--up li::before { content: "↑"; background: var(--c-gray); }

/* ==========================================================
   Cards (Ursachen)
   ========================================================== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) { .cards { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--c-magenta); }
.card__num {
  font-weight: 900;
  font-size: 32px;
  color: var(--c-yellow);
  -webkit-text-stroke: 1.5px var(--c-navy);
  line-height: 1;
  margin-bottom: 14px;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.25;
}
.card p {
  margin: 0 0 12px;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.card p:last-child { margin-bottom: 0; }

.card__quote {
  font-style: italic;
  border-left: 3px solid var(--c-magenta);
  padding: 6px 0 6px 14px;
  margin-top: 16px !important;
  font-size: 14px !important;
  color: var(--c-ink-soft);
}
.card__quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  color: var(--c-gray);
  font-weight: 600;
}
.card--fdp {
  background: #fff;
  border-left: 6px solid var(--c-yellow);
}
.card__fdp {
  background: rgba(255, 237, 0, .15);
  padding: 14px 16px !important;
  border-radius: var(--r-sm);
  margin-top: 12px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--c-ink) !important;
}
.card__fdp strong { color: var(--c-navy); }
.card__src {
  font-size: 12px !important;
  color: var(--c-gray) !important;
  margin-top: 10px !important;
  font-style: italic;
}

/* ==========================================================
   Pillars (Lösungen)
   ========================================================== */
.pillars {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  counter-reset: p;
}
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillars li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,237,0,.25);
  border-radius: 14px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.pillars li:hover {
  background: rgba(255, 237, 0, .08);
  border-color: var(--c-yellow);
}
.pillar__idx {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-yellow);
  color: var(--c-navy);
  font-weight: 900;
  font-size: 18px;
}

/* ==========================================================
   Vision list
   ========================================================== */
.vlist {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  font-size: clamp(18px, 2.2vw, 22px);
}
.vlist li {
  padding: 12px 0;
  color: var(--c-navy);
  font-weight: 700;
  position: relative;
}
.vlist li::before {
  content: "→";
  color: var(--c-magenta);
  margin-right: 12px;
  font-weight: 900;
}

/* ==========================================================
   Checks (Zukunfts-Check)
   ========================================================== */
.checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 768px) { .checks { grid-template-columns: repeat(3, 1fr); } }
.check {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-1);
  text-align: center;
}
.check__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-navy);
  font-weight: 900;
  font-size: 28px;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.check p {
  margin: 0;
  font-size: 17px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}
.check p strong { color: var(--c-navy); }

/* ==========================================================
   CTA box
   ========================================================== */
.cta-box {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 16px;
}
.cta-box .btn--primary {
  background: var(--c-yellow);
  color: var(--c-navy);
  border-color: var(--c-yellow);
}
.cta-box .btn--primary:hover { background: #fff; border-color: #fff; color: var(--c-navy); }
.micro {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}
.micro a { color: #fff; text-decoration: underline; }
.micro a:hover { color: var(--c-yellow); }

/* ==========================================================
   Sources
   ========================================================== */
.sources__intro {
  font-size: 15px;
  color: var(--c-ink-soft);
  margin: 0 0 24px;
}
.sources {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: src;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sources li {
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-magenta);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  scroll-margin-top: 90px;
}
.sources li strong { color: var(--c-navy); margin-right: 4px; }
.sources li q {
  display: block;
  margin: 6px 0 4px;
  font-style: italic;
  color: var(--c-ink);
  quotes: "„" "\"";
}
.sources li q::before { content: open-quote; }
.sources li q::after { content: close-quote; }
.sources__link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
}
.sources__note {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--c-gray);
  line-height: 1.55;
}

/* ==========================================================
   Motiv (SVG hero-style images between sections)
   ========================================================== */
.motiv {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 0;
}
.motiv--dark { background: #003A8F; }
.motiv--light { background: #F8F9FB; }
.motiv__frame {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .motiv__frame { padding: 40px 40px; }
}
.motiv__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--c-navy-2);
  color: rgba(255,255,255,.8);
  padding: 48px 0 40px;
  font-size: 14px;
}
.footer__brand { margin: 0 0 14px; color: #fff; }
.footer__nav { margin: 0 0 14px; display: flex; gap: 18px; flex-wrap: wrap; }
.footer__nav a { color: var(--c-yellow); }
.footer__nav a:hover { color: #fff; }
.footer__copy { margin: 0; color: rgba(255,255,255,.5); }

/* ==========================================================
   Respect motion preferences
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}
