/* VERSION: v9-typo-boost-20260420-1627 */
/* ============================================
   10FINANCE – Styles (Wix-Original-Nachbau)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0b1a2e;
  --navy-light: #0f2035;
  --navy-mid: #132a45;
  --dark-bg: #0e1c30;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --light-gray: #e2e4e8;
  --mid-gray: #7a8594;
  --dark-gray: #3a4a5c;
  --text: #1a2a3a;
  --text-light: #b0bac6;
  --text-muted: #8a95a5;
  --accent: #ffffff;
  --font-heading: 'Hanken Grotesk', 'Helvetica', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica', Arial, sans-serif;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h5 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }
h1 { font-size: clamp(2.8rem, 5.2vw, 4rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.55rem, 2.8vw, 2.05rem); }
h4 { font-size: 1.35rem; }
p { margin-bottom: 1rem; font-size: 1.12rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { opacity: 0.85; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(11, 22, 40, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.site-header.scrolled .container { height: 72px; }
.site-header.scrolled .logo img { height: 48px; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  font-weight: 700;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 52px; width: auto; display: block; }
.logo-text span { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after { display: none; }

.nav-cta {
  padding: 11px 26px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white) !important;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-cta:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 90px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding-top: 32px; gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: 16px 28px; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin: 20px 28px; width: calc(100% - 56px); text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(11, 22, 40, 0.96) 0%,
    rgba(11, 22, 40, 0.90) 30%,
    rgba(11, 22, 40, 0.55) 60%,
    rgba(11, 22, 40, 0.35) 100%);
  z-index: 1;
}
.hero .container {
  display: block;
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 560px;
  padding: 32px 40px;
  background: rgba(11, 22, 40, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: heroFadeIn 0.8s ease-out 0.2s both;
}
.hero-content h1 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-image { display: none; } /* Image is now background */

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Subpage hero */
.hero-sub {
  min-height: auto;
  padding: 140px 0 60px;
  background: var(--navy);
  background-image: none;
}
.hero-sub::before { display: none; }
.hero-sub .container {
  display: block;
  max-width: 800px;
  text-align: center;
}
.hero-sub .hero-content {
  max-width: none;
  background: none;
  border: none;
  backdrop-filter: none;
  padding: 0;
  animation: none;
}
.hero-sub h1 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.2vw, 3.2rem); }
.hero-sub p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 640px; margin: 0 auto 24px; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 40px; }
  .hero-content { padding: 24px 20px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { padding: 120px 0 40px; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--off-white); }
.section-charcoal { background: var(--dark-bg); color: var(--white); }

.section-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.section-dark .section-label { color: rgba(255,255,255,0.55); }

/* ---------- Simple Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
}

.card {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: none;
}
.card:hover { transform: none; box-shadow: none; }
.card h4 { margin-bottom: 12px; color: var(--text); font-size: 1.25rem; }
.card h5 { margin-bottom: 12px; color: var(--text); font-size: 1.02rem; letter-spacing: 0.08em; }
.card p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.65; }

/* Dark variant */
.card-dark h4 { color: var(--white); }
.card-dark h5 { color: rgba(255,255,255,0.9); }
.card-dark p { color: rgba(255,255,255,0.65); }

.card-bordered {
  padding-top: 22px;
  border-top: 1px solid var(--light-gray);
}
.section-dark .card-bordered { border-top-color: rgba(255,255,255,0.12); }
.card-icon { display: none; }

/* ---------- Bordered box cards ---------- */
.card-box {
  border: 1px solid var(--light-gray);
  padding: 30px 28px;
  background: var(--white);
}
.card-box h4 { font-size: 1.2rem; margin-bottom: 10px; }
.card-box h5 { margin-bottom: 10px; font-size: 0.98rem; letter-spacing: 0.08em; }
.card-box p { font-size: 1.05rem; line-height: 1.6; margin: 0; }

.section-dark .card-box,
.card-dark.card-box {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}
.section-dark .card-box h4,
.section-dark .card-box h5,
.card-dark.card-box h4,
.card-dark.card-box h5 { color: var(--white); }
.section-dark .card-box p,
.card-dark.card-box p { color: rgba(255,255,255,0.75); }

/* ---------- Vertical list items (Was sich verändert) ---------- */
.list-items { max-width: 780px; margin: 0 auto; }
.list-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.list-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.list-item h5 { margin-bottom: 8px; font-size: 0.95rem; color: var(--text); }
.list-item p { color: var(--text-muted); font-size: 1.02rem; margin: 0; }

/* ---------- Highlight Box ---------- */
.highlight-box {
  text-align: center;
  margin-top: 32px;
  padding: 28px 20px 0;
}
.highlight-box h3 { font-size: 1.3rem; font-style: normal; font-weight: 600; }
.section-dark .highlight-box h3 { color: rgba(255,255,255,0.92); }
.highlight-box p { color: var(--text-muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto 30px; font-size: 1.08rem; line-height: 1.6; }
.cta-banner .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ---------- Two Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-text h2 { margin-bottom: 18px; }
.two-col-text p { color: var(--text-muted); font-size: 1.08rem; }
.two-col-image img { border-radius: 0; box-shadow: none; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Baustein Items (Leistungen) ---------- */
.baustein-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.baustein-item {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.baustein-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 10px;
}
.baustein-item h4 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.baustein-item p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.6; }

/* ---------- Process Steps ---------- */
.process-steps { max-width: 650px; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px; top: 50px; bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.08);
}
.process-step:last-child { padding-bottom: 0; }
.step-number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.step h4 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: var(--text-muted); font-size: 1rem; }

/* ---------- Timeline (Über mich) ---------- */
.timeline-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.timeline-block:nth-child(even) .timeline-text { order: 2; }
.timeline-block:nth-child(even) .timeline-image { order: 1; }
.timeline-image img { border-radius: 0; box-shadow: none; }
@media (max-width: 768px) {
  .timeline-block { grid-template-columns: 1fr; }
  .timeline-block:nth-child(even) .timeline-text { order: 1; }
  .timeline-block:nth-child(even) .timeline-image { order: 2; }
}

/* ---------- Erkenntnis cards ---------- */
.erkenntnis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.erkenntnis-card {
  padding: 28px 0;
  border-top: 1px solid var(--light-gray);
}
.erkenntnis-card h5 { color: var(--text-muted); margin-bottom: 6px; }
.erkenntnis-card h4 { margin-bottom: 10px; font-size: 1.2rem; }
.erkenntnis-card p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.65; }
@media (max-width: 640px) {
  .erkenntnis-grid { grid-template-columns: 1fr; }
}

/* ---------- Was ich tue ---------- */
.was-ich-tue-card {
  padding: 24px 0;
  border-top: 1px solid var(--light-gray);
  margin-bottom: 0;
}
.was-ich-tue-card h5 { color: var(--text); margin-bottom: 10px; font-size: 0.95rem; }
.was-ich-tue-card p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.65; }

/* ---------- Podcast ---------- */
.podcast-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: center;
}
.podcast-cover {
  background: var(--navy);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
  padding: 20px;
}
.podcast-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-cover-text {
  position: relative;
  z-index: 1;
  line-height: 1.35;
}
.podcast-cover img + .podcast-cover-text { display: none; }
.podcast-info h3 { margin-bottom: 12px; color: var(--white); font-size: 1.5rem; }
.podcast-info p { color: rgba(255,255,255,0.65); margin-bottom: 14px; font-size: 1.05rem; line-height: 1.65; }
.podcast-hosts { font-size: 1rem; color: rgba(255,255,255,0.78); font-weight: 600; margin-bottom: 18px; }
@media (max-width: 640px) {
  .podcast-card { grid-template-columns: 1fr; }
  .podcast-cover { max-width: 200px; }
}

/* ---------- Episode items ---------- */
.episodes-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.episode-item {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.episode-item h5 { color: rgba(255,255,255,0.85); margin-bottom: 10px; font-size: 1rem; text-transform: none; letter-spacing: 0; }
.episode-item p { color: rgba(255,255,255,0.5); font-size: 0.98rem; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); padding: 22px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  transition: var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }
.faq-answer p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; }

/* ---------- Quickcheck Form ---------- */
.quickcheck-form {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--light-gray);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 1.02rem; }
.form-group label span { color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { min-height: 100px; resize: vertical; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group label {
  display: flex; align-items: center; gap: 12px;
  font-weight: 400; cursor: pointer;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  transition: var(--transition);
  font-size: 1rem;
}
.radio-group label:hover { border-color: var(--navy); }
.radio-group input[type="radio"] { width: auto; accent-color: var(--navy); }

.progress-bar { display: flex; gap: 3px; margin-bottom: 28px; }
.progress-bar .step-dot { flex: 1; height: 3px; background: var(--light-gray); border-radius: 1px; }
.progress-bar .step-dot.active { background: var(--navy); }

/* ---------- Kontakt ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.kontakt-info h3 { margin-bottom: 20px; }
.kontakt-detail { display: flex; gap: 16px; margin-bottom: 22px; }
.kontakt-detail-icon { display: none; }
.kontakt-detail h5 { color: var(--text); margin-bottom: 4px; text-transform: none; letter-spacing: 0; font-size: 1rem; }
.kontakt-detail p { color: var(--text-muted); font-size: 1.02rem; }
.kontakt-detail a { color: var(--navy); }
.kontakt-detail a:hover { opacity: 0.7; }
@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* ---------- Social ---------- */
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}
.social-icons a svg { width: 15px; height: 15px; display: block; }
.social-icons a:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.05); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo-text { margin-bottom: 14px; font-size: 1.2rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h5 { color: rgba(255,255,255,0.7); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.48); font-size: 0.92rem; padding: 4px 0; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Nicht-passen Liste ---------- */
.nicht-passen-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.nicht-passen-list li::before {
  content: '×'; position: absolute; left: 0;
  color: var(--text-muted); font-weight: 700;
}

/* ---------- Image Placeholders ---------- */
.img-placeholder {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  min-height: 280px;
  text-align: center;
}

/* ---------- Animations ---------- */
/* Default: content always visible (fallback wenn JS aus ist) */
.fade-in { opacity: 1; transform: none; }

/* JS-enabled: fade from hidden to visible */
.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-enabled .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered fade for cards */
.js-enabled .cards-grid.visible > *,
.js-enabled .list-items.visible > *,
.js-enabled .baustein-grid.visible > *,
.js-enabled .episodes-list.visible > * {
  animation: staggerFade 0.6s ease-out both;
}
.js-enabled .cards-grid.visible > *:nth-child(1),
.js-enabled .list-items.visible > *:nth-child(1),
.js-enabled .baustein-grid.visible > *:nth-child(1),
.js-enabled .episodes-list.visible > *:nth-child(1) { animation-delay: 0.05s; }
.js-enabled .cards-grid.visible > *:nth-child(2),
.js-enabled .list-items.visible > *:nth-child(2),
.js-enabled .baustein-grid.visible > *:nth-child(2),
.js-enabled .episodes-list.visible > *:nth-child(2) { animation-delay: 0.15s; }
.js-enabled .cards-grid.visible > *:nth-child(3),
.js-enabled .list-items.visible > *:nth-child(3),
.js-enabled .baustein-grid.visible > *:nth-child(3),
.js-enabled .episodes-list.visible > *:nth-child(3) { animation-delay: 0.25s; }
.js-enabled .cards-grid.visible > *:nth-child(4),
.js-enabled .list-items.visible > *:nth-child(4),
.js-enabled .baustein-grid.visible > *:nth-child(4),
.js-enabled .episodes-list.visible > *:nth-child(4) { animation-delay: 0.35s; }
.js-enabled .cards-grid.visible > *:nth-child(5),
.js-enabled .list-items.visible > *:nth-child(5) { animation-delay: 0.45s; }
.js-enabled .cards-grid.visible > *:nth-child(6),
.js-enabled .list-items.visible > *:nth-child(6) { animation-delay: 0.55s; }

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

@media (prefers-reduced-motion: reduce) {
  .fade-in, .js-enabled .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ---------- Mobile typography fine-tuning ---------- */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 1.05rem; }
  p { font-size: 1.05rem; }
  .card h4 { font-size: 1.15rem; }
  .card p { font-size: 1rem; }
  .card-box { padding: 24px 22px; }
  .card-box h4 { font-size: 1.1rem; }
  .card-box p { font-size: 1rem; }
  .cta-banner { padding: 60px 0; }
  .cta-banner p { font-size: 1rem; }
  .faq-question { font-size: 1.05rem; }
  .faq-answer p { font-size: 0.98rem; }
  .podcast-info h3 { font-size: 1.3rem; }
  .podcast-info p { font-size: 1rem; }
  .baustein-item h4 { font-size: 1.08rem; }
  .baustein-item p { font-size: 0.96rem; }
  .erkenntnis-card h4 { font-size: 1.1rem; }
  .erkenntnis-card p { font-size: 0.98rem; }
  .list-item p { font-size: 0.98rem; }
  .two-col-text p { font-size: 1rem; }
}

/* ---------- Fallback fonts ---------- */
.no-external-fonts {
  --font-heading: 'Helvetica', Arial, sans-serif;
  --font-body: 'Helvetica', Arial, sans-serif;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
#cc-overlay {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(11, 26, 46, 0.5);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}
#cc-banner {
  max-width: 700px; margin: 0 auto;
  background: var(--white);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: 28px;
  max-height: 90vh; overflow-y: auto;
}
#cc-text h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 8px; color: var(--navy); }
#cc-text p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.6; }
#cc-buttons { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cc-btn {
  padding: 10px 20px; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: 1.5px solid transparent;
}
.cc-btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cc-btn-primary:hover { opacity: 0.85; }
.cc-btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.cc-btn-outline:hover { background: var(--navy); color: var(--white); }
.cc-btn-text { background: transparent; color: var(--text-muted); border: none; padding: 10px 12px; }
.cc-btn-text:hover { color: var(--navy); }
.cc-details-toggle {
  display: block; margin-top: 12px; background: none; border: none;
  color: var(--navy); font-size: 0.8rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
}
#cc-details { margin-top: 16px; border-top: 1px solid var(--light-gray); padding-top: 16px; }
.cc-category { margin-bottom: 12px; padding: 12px; background: var(--off-white); border-radius: 2px; }
.cc-category label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.88rem; }
.cc-category label input { accent-color: var(--navy); width: 16px; height: 16px; }
.cc-category label span { font-size: 0.75rem; color: var(--text-muted); }
.cc-category p { color: var(--text-muted); font-size: 0.78rem; margin: 6px 0 0 24px; }
@media (max-width: 600px) {
  #cc-banner { padding: 18px; }
  #cc-buttons { flex-direction: column; }
  .cc-btn { width: 100%; text-align: center; }
}

/* ---------- Form States ---------- */
.form-success { text-align: center; padding: 28px 16px; }
.form-success h3 { color: var(--navy); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }
.form-error {
  background: #fef2f2; border: 1px solid #d44; color: #a11;
  padding: 10px 14px; border-radius: 2px; font-size: 0.85rem; margin-bottom: 16px;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.footer-newsletter { margin-top: 16px; }
.footer-newsletter p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.nl-form { display: flex; gap: 6px; }
.nl-form input[type="email"] {
  flex: 1; padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; background: rgba(255,255,255,0.04);
  color: var(--white); font-family: var(--font-body); font-size: 0.82rem;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.nl-form input:focus { outline: none; border-color: rgba(255,255,255,0.3); }
.nl-form button {
  padding: 8px 16px; background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 2px;
  cursor: pointer; font-weight: 600; font-size: 0.78rem;
}
.nl-form button:hover { border-color: var(--white); }
.dsgvo-check { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; }
.dsgvo-check input { margin-top: 3px; accent-color: var(--navy); }
.dsgvo-check label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.dsgvo-check a { color: var(--navy); }
.qc-nav { display: flex; gap: 10px; margin-top: 20px; justify-content: space-between; }
.qc-nav .btn { min-width: 110px; text-align: center; }
