/* ============================================================
   oose Soft Skills Landingpages – Master Stylesheet
   Farben kommen ausschließlich aus variables.css via --lp-* Tokens
   Font: Inter (lokal)
   ============================================================ */

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_slnt,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Statische Layout-Tokens – nicht LP-spezifisch */
  --black:    #0a0a0a;
  --white:    #fff;
  --gray-100: #f5f5f5;
  --gray-400: #a0a0a0;
  --gray-800: #2a2a2a;
  --teal:     #1a6e5e;
  --max-w:    1080px;
  --text-max: 640px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--lp-bg);
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--lp-primary); color: var(--white); }

/* ── NAVIGATION ───────────────────────────────────────────── */
nav { position: sticky; top: 0; z-index: 1001; background: var(--lp-surface); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
nav.scrolled { background: var(--lp-nav-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--lp-border); }
nav .inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 56px;
}
nav .logo { font-weight: 800; font-size: 1rem; letter-spacing: -.02em; }
nav .logo img { height: 22px; display: block; }
nav .links { display: flex; gap: 28px; font-size: .85rem; color: var(--lp-nav-text); font-weight: 700; align-items: center; margin-left: auto; margin-right: 28px; }
nav .links a { text-decoration: none; }
nav .links a:hover { color: var(--lp-primary); }
nav .links .btn-accent:hover { color: var(--white); }
nav .cta-link { font-size: .85rem; font-weight: 700; color: var(--lp-primary); text-decoration: none; }
nav .cta-link:hover { color: var(--lp-primary-hov); }

/* ── BURGER / MOBILE MENU ─────────────────────────────────── */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--lp-nav-text); border-radius: 2px;
  transition: transform .2s ease-out, opacity .15s ease-out;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: #f7f5f0; z-index: 1000; overflow-y: auto;
}
.mob-menu.open { display: block; animation: mob-slide-in .25s ease-out; }
.mob-links { display: flex; flex-direction: column; }
.mob-links a {
  color: var(--lp-text); font-size: 1.5rem; font-weight: 700;
  text-decoration: none; letter-spacing: -.03em;
  padding: 20px 28px; border-bottom: 1px solid var(--lp-border);
  transition: color .15s;
}
.mob-links a:last-child { border-bottom: none; }
.mob-links a:hover { color: var(--lp-primary); }
.mob-links a.btn { background: none; border: none; border-radius: 0; padding: 20px 28px; color: var(--lp-primary); }
@keyframes mob-slide-in {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* ── DARK MODE TOGGLE & LOGO SWAP ────────────────────────── */
.logo .logo-light { display: none; }
[data-theme="dark"] .logo .logo-dark  { display: none; }
[data-theme="dark"] .logo .logo-light { display: block; }

.theme-toggle {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--lp-nav-text); display: flex; align-items: center;
  opacity: .6; transition: opacity .15s; flex-shrink: 0;
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle .material-icons-outlined { font-size: 20px; }
.theme-toggle .theme-icon-light { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon-dark  { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon-light { display: flex; }

/* Dark mode element overrides */
[data-theme="dark"] .mob-menu        { background: #1c1c1c; }
[data-theme="dark"] .nav { background: transparent }
/* Keep audience dark in dark mode (background: var(--lp-text) would invert to light) */
[data-theme="dark"] .audience        { background: #1a1a1a; color: var(--white); }
[data-theme="dark"] .audience-item   { color: rgba(255,255,255,.7); }
/* Newsletter button hover: dark bg needs white text */
[data-theme="dark"] .newsletter-banner a:hover { color: #fff; }
/* Step dot: s1 uses --lp-text as bg → becomes light in dark mode; flip text colour */
[data-theme="dark"] .step-dot.s1     { color: var(--lp-bg); }
/* btn-primary hover: --gray-800 (#2a2a2a) disappears on dark hero overlay */
[data-theme="dark"] .btn-primary:hover { background: #d0d0d0; }
/* Meer banner: color inherits --lp-bg which is near-black in dark mode */
[data-theme="dark"] .meer-banner      { color: #ffffff; }

/* Smooth colour transitions on theme switch */
body, nav, footer, .card, .booking-card, .step, .faq-q, .faq-a,
.mob-menu, .mob-links a, section {
  transition: background-color .25s, color .25s, border-color .25s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 120px 32px 80px;
}
.hero-label {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; color: var(--lp-text-muted); margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.04em; max-width: 720px;
}
.hero h1 em { font-style: normal; color: var(--lp-primary); }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--lp-text-muted); max-width: 480px; line-height: 1.5; font-weight: 400;
}
.hero-cta { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── HERO WITH BACKGROUND IMAGE ───────────────────────────── */
.hero-img {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-img::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 0;
}
.hero-img > * { position: relative; z-index: 1; }
.hero-img .hero-label               { color: rgba(255,255,255,.65); }
.hero-img h1                        { color: #fff; }
.hero-img h1 em                     { color: var(--lp-primary); }
.hero-img .hero-sub                 { color: rgba(255,255,255,.75); }
.hero-img .btn-ghost                { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-img .btn-ghost:hover          { border-color: #fff; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 99px;
  font-size: .9rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all .2s; border: none; text-decoration: none;
}
.btn-primary { background: var(--lp-text); color: var(--lp-bg); }
.btn-primary:hover { background: var(--gray-800); }
.btn-ghost { background: transparent; color: var(--lp-text); border: 1.5px solid var(--lp-border); }
.btn-ghost:hover { border-color: var(--lp-text); }
.btn-accent { background: var(--lp-primary); color: var(--white); }
.btn-accent:hover { background: var(--lp-primary-hov); }
.btn-sm { padding: 10px 24px; font-size: .85rem; }
.btn-xs { padding: 5px 15px; font-size: .85rem; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider { width: 48px; height: 1px; background: var(--lp-border); margin: 0 auto; }

/* ── SECTION BASE ─────────────────────────────────────────── */
.section { padding: 100px 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-narrow { max-width: var(--text-max); margin: 0 auto; }

/* ── TAGS ─────────────────────────────────────────────────── */
.tag {
  font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; color: var(--lp-text-muted);
  border: 1px solid var(--lp-border); border-radius: 99px; padding: 3px 10px;
}
.tag-accent { color: var(--lp-primary-text); border-color: color-mix(in srgb, var(--lp-primary) 30%, transparent); }
.tag-accent-2 { color: var(--lp-secondary); border-color: color-mix(in srgb, var(--lp-secondary) 30%, transparent); }

/* ── INTRO BLOCK ──────────────────────────────────────────── */
.intro { text-align: center; padding: 80px 32px; }
.intro p {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--lp-text-muted); max-width: 540px; margin: 0 auto; line-height: 1.65;
}
.intro p strong { color: var(--lp-text); font-weight: 600; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how { padding: 60px 32px 80px; border-top: 1px solid var(--lp-border); }
.how-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; text-align: center;
}
.how-num { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--lp-text-muted); margin-bottom: 8px; }
.how h3  { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.how p   { font-size: .85rem; color: var(--lp-text-muted); line-height: 1.5; }

/* ── FILTER ───────────────────────────────────────────────── */
.filter-section { padding: 80px 32px 24px; }
.filter-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.filter-inner h2 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.f-btn {
  padding: 6px 16px; border-radius: 99px; border: 1.5px solid var(--lp-border);
  background: var(--lp-bg); font-size: .78rem; font-weight: 600;
  color: var(--lp-text-muted); cursor: pointer; font-family: inherit; transition: all .15s;
}
.f-btn:hover, .f-btn.active { background: var(--lp-text); color: var(--lp-bg); border-color: var(--lp-text); }

/* ── CARDS ────────────────────────────────────────────────── */
.pfade { padding: 24px 32px 100px; }
.pfade-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.card {
  border: 1.5px solid var(--lp-border); border-radius: 16px; padding: 36px;
  display: flex; flex-direction: column; transition: all .25s;
  cursor: pointer; text-decoration: none; color: inherit;
  background: var(--lp-surface);
}
.card:hover { border-color: var(--lp-text); transform: translateY(-2px); }
.card-tags { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.card h3, .card h4 { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.25; overflow-wrap: break-word; hyphens: auto; }
.card .hope { font-size: .9rem; color: var(--lp-text-muted); line-height: 1.5; margin-bottom: 20px; flex: 1; }
.card-outcomes { list-style: none; padding: 0; margin-bottom: 24px; }
.card-outcomes li {
  font-size: .82rem; color: var(--lp-text-muted);
  padding: 4px 0 4px 18px; position: relative; line-height: 1.45;
}
.card-outcomes li::before { content: '→'; position: absolute; left: 0; color: var(--lp-primary-text); font-weight: 700; font-size: .8rem; }
.card-cta { font-size: .85rem; font-weight: 600; color: var(--lp-primary-text); display: inline-flex; align-items: center; gap: 4px; }
.card-cta:hover { color: var(--lp-primary-hov); }

/* ── SEMINAR GROUPS ───────────────────────────────────────── */
.seminar-group { margin-bottom: 52px; }
.seminar-group:last-child { margin-bottom: 0; }
.seminar-group h3 {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--lp-text-muted);
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--lp-border);
}

/* ── PFAD STEPS ───────────────────────────────────────────── */
.pfad { background: var(--lp-bg-subtle); padding: 100px 32px; }
.pfad-inner { padding: 0 6rem; margin: 0 auto; }
.pfad-header { text-align: center; margin-bottom: 72px; }
.pfad-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; letter-spacing: -.03em; }
.pfad-header p  { margin-top: 12px; color: var(--lp-text-muted); font-size: .95rem; }

.pfad-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; position: relative; }
.pfad-steps::before {
  content: ''; position: absolute; top: 40px; left: 16.66%; right: 16.66%;
  height: 2px; background: var(--lp-border); z-index: 0;
}
/* 4-step variant */
.pfad-steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pfad-steps.cols-4::before { left: 12.5%; right: 12.5%; }
.step { text-align: center; position: relative; z-index: 1; padding: 0 20px; }
.step-dot {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--white);
}
.step-dot.s1 { background: var(--lp-text); }
.step-dot.s2 { background: var(--gray-800); }
.step-dot.sf { background: var(--lp-primary); }
.step-num { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--lp-text-muted); margin-bottom: 8px; }
.step h3  { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.step h3 a { color: inherit; text-decoration: none; }
.step h3 a:hover { color: var(--lp-primary); }
.step p   { font-size: .88rem; color: var(--lp-text-muted); line-height: 1.55; }
.step .tag { display: inline-block; margin-top: 14px; }

/* ── OUTCOMES ─────────────────────────────────────────────── */
.outcomes { padding: 100px 32px; }
.outcomes-inner { max-width: var(--text-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; align-items: start; }
.outcomes-left h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px; }
.outcomes-left p  { color: var(--lp-text-muted); font-size: .95rem; line-height: 1.6; }
.outcomes-list { list-style: none; padding: 1em 0; }
.outcomes-list li {
  padding: 16px 0; border-bottom: 1px solid var(--lp-border);
  font-size: .92rem; display: flex; align-items: baseline; gap: 12px; line-height: 1.5;
}
.outcomes-list li::before { content: '→'; color: var(--lp-primary-text); font-weight: 700; flex-shrink: 0; }
.outcomes-list li:last-child { border-bottom: none; }

/* ── AUDIENCE ─────────────────────────────────────────────── */
.audience { background: var(--lp-text); color: var(--lp-bg); padding: 80px 32px; text-align: center; }
.audience h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 40px; letter-spacing: -.02em; }
.audience-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px 48px; max-width: 640px; margin: 0 auto; text-align: left; }
.audience-item { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.5; padding-left: 24px; position: relative; }
.audience-item::before { content: '–'; position: absolute; left: 0; color: var(--lp-primary); font-weight: 700; }

/* ── MEER BANNER (Hub) ────────────────────────────────────── */
.meer-banner {
  background: var(--lp-meer-bg); color: var(--lp-bg); border-radius: 16px;
  padding: 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; max-width: var(--max-w); margin: 0 auto;
  position: relative; overflow: hidden;
}
/* keep text/button above the wave layer */
.meer-banner > * { position: relative; z-index: 1; }
.meer-banner h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.meer-banner p  { font-size: .88rem; color: rgb(255, 255, 255); max-width: 420px; line-height: 1.5; }
.meer-banner a  {
  background: var(--lp-primary); color: var(--white);
  padding: 12px 28px; border-radius: 99px; font-size: .85rem; font-weight: 600;
  white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.meer-banner a:hover { background: var(--lp-primary-hov); }

/* Wave animation */
.meer-waves { position: absolute; bottom: 0; left: 0; right: 0; height: 64px; pointer-events: none; z-index: 0; }
.wave-layer { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; display: flex; }
.wave-layer svg { width: 50%; height: 100%; flex-shrink: 0; display: block; }
.wave-layer-1 { animation: wave-scroll 14s linear infinite; }
.wave-layer-2 { animation: wave-scroll 9s linear infinite; }
@keyframes wave-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MEER SECTION (Lernpfad) ──────────────────────────────── */
.meer { padding: 100px 32px; text-align: center; }
.meer-inner { max-width: 560px; margin: 0 auto; }
.meer-icon  { color: var(--lp-sk-meer-bg); margin-bottom: 20px; }
.meer h2    { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.meer p     { color: var(--lp-text-muted); font-size: .95rem; line-height: 1.6; margin-bottom: 16px; }
.meer .tag-row  { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.meer .tag-item { font-size: .75rem; font-weight: 600; color: var(--lp-text-muted); border: 1px solid var(--lp-border); border-radius: 99px; padding: 5px 14px; }

/* ── NEWSLETTER BANNER ────────────────────────────────────── */
.newsletter-banner {
  background: var(--lp-banner-bg); color: var(--lp-banner-text);
  border-radius: 16px; padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; max-width: var(--max-w); margin: 0 auto;
}
.newsletter-banner h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.newsletter-banner p  { font-size: .88rem; color: rgba(255,255,255,0.9); max-width: 420px; line-height: 1.5; }
.newsletter-banner a  {
  background: var(--lp-text); color: var(--lp-bg);
  padding: 12px 28px; border-radius: 99px; font-size: .85rem; font-weight: 600;
  white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.newsletter-banner a:hover { background: var(--gray-800); }

/* ── BOOKING ──────────────────────────────────────────────── */
.booking { background: var(--lp-bg-subtle); padding: 100px 32px; }
.booking-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.booking h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 8px; }
.booking-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; padding-top: 2em;}
.booking-card {
  background: var(--lp-surface); border-radius: 16px; padding: 32px;
  border: 1.5px solid var(--lp-border); transition: all .2s;
}
.booking-card:hover { border-color: var(--gray-400); }
.booking-card.featured { border-color: var(--lp-primary); position: relative; }
.booking-card.featured::before {
  content: 'Unsere Empfehlung'; position: absolute; top: -12px; left: 24px;
  background: var(--lp-primary); color: var(--white);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 99px;
}
.booking-card h3    { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.booking-card .price { font-size: .88rem; color: var(--lp-text-muted); margin-bottom: 16px; }
.booking-card .price span { color: var(--lp-primary-text); }
.booking-card .includes { list-style: none; padding: 0; margin-bottom: 20px; }
.booking-card .includes li {
  font-size: .84rem;
  color: var(--lp-text-muted);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.45;
}

.booking-card .includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lp-primary-text);
  font-weight: 700;
  flex-shrink: 0;
}
.booking-card .includes a { color: inherit; text-decoration: underline; text-decoration-color: var(--lp-border); text-underline-offset: 2px; }
.booking-card .includes a:hover { color: var(--lp-primary); text-decoration-color: var(--lp-primary); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: 100px 32px; }
.faq-inner { max-width: 1080px; margin: 0 auto; }
.faq h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 40px; letter-spacing: -.02em; }
.faq-item { border-bottom: 1px solid var(--lp-border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-size: .92rem; font-weight: 600; color: var(--lp-text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; line-height: 1.4; gap: 16px;
}
.faq-q .material-icons-outlined { font-size: 18px; color: var(--gray-400); transition: transform .3s; flex-shrink: 0; }
.faq-q.open .material-icons-outlined { transform: rotate(180deg); color: var(--lp-text); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: .88rem; color: var(--lp-text-muted); line-height: 1.6; }
.faq-a.open { max-height: 400px; padding-bottom: 20px; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section { padding: 100px 32px; text-align: center; }
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: 8px; }
.cta-section p  { color: var(--lp-text-muted); font-size: .92rem; margin-bottom: 28px; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { padding: 80px 32px; text-align: center; border-top: 1px solid var(--lp-border); }
.contact-avatar { width: 300px; height: 300px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 32px; }
.contact h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.contact p  { color: var(--lp-text-muted); font-size: .92rem; margin-bottom: 20px; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--lp-footer-bg); color: var(--lp-footer-text); padding: 24px 32px; font-size: .82rem; }
footer .footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
footer .footer-brand { font-weight: 700; white-space: nowrap; }
footer .footer-links { display: flex; gap: 20px; }
footer .footer-links a { color: var(--lp-footer-text); text-decoration: none; font-weight: 600; }
footer .footer-links a:hover { color: var(--lp-primary); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav .inner        { position: relative; }
  nav .logo         { position: absolute; left: 50%; transform: translateX(-50%); }
  nav .links        { display: none; }
  nav .cta-link     { display: none; }
  .burger           { display: flex; }
  .pfade-inner      { grid-template-columns: 1fr; }
  .hero             { min-height: 70vh; padding: 100px 24px 60px; }
  .how-inner        { grid-template-columns: 1fr; gap: 32px; }
  .pfad-inner      { grid-template-columns: 1fr; padding: 0}
  .pfad-steps, .pfad-steps.cols-4 { grid-template-columns: 1fr; gap: 48px; }
  .pfad-steps::before { display: none; }
  .outcomes-inner   { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid    { grid-template-columns: 1fr; }
  .booking-options  { grid-template-columns: 1fr; }
  .meer-banner, .newsletter-banner { flex-direction: column; text-align: center; }
  .section          { padding: 72px 24px; }
}

/* ── FOCUS VISIBLE ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--lp-primary-text);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--lp-primary-text);
  outline-offset: 4px;
}
.theme-toggle:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--lp-primary-text);
  outline-offset: 4px;
  border-radius: 4px;
}
[data-theme="dark"] :focus-visible { outline-color: var(--lp-primary); }

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wave-layer-1, .wave-layer-2 { animation: none; }
  .mob-menu.open { animation: none; }
}

/* ── COOKIE BANNER ────────────────────────────────────────── */
#cookie-banner.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--lp-surface);
  color: var(--lp-text);
  display: none;
  padding: 1rem 1.25rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--lp-border);
}
#cookie-banner.open { display: block; }
.cookie-bar__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--lp-text-muted);
}
.cookie-bar__text a { color: var(--lp-primary-text); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-bar__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--lp-primary);
  transition: background 0.2s, color 0.2s;
}
.cookie-bar__btn-accept {
  background: var(--lp-primary);
  color: #fff;
}
.cookie-bar__btn-accept:hover { background: var(--lp-primary-hov); border-color: var(--lp-primary-hov); }
.cookie-bar__btn-decline {
  background: transparent;
  color: var(--lp-text);
  border-color: var(--lp-border);
}
.cookie-bar__btn-decline:hover { border-color: var(--lp-text-muted); }