:root {
  --bg: #ffffff;
  --surface: #f0f4f8;
  --accent: #0f4c81;
  --accent-dark: #0a3560;
  --accent-light: #e8f0f8;
  --text: #2c3e50;
  --muted: #7f8c8d;
  --border: #d5dde5;
  --green: #2E6B4F;
  --red: #c0392b;
  --gold: #B8860B;
  --white: #ffffff;
  --dark: #1a2332;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,76,129,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.top-bar-link {
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.top-bar-link:hover {
  color: var(--white);
}

.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
}

.logo-svg {
  width: 180px;
  height: 36px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-cta {
  padding: 10px 24px;
  font-size: 14px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  text-align: center;
  width: 100%;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-cta {
  margin-top: 16px;
  width: calc(100% - 48px);
  max-width: 300px;
}

.hero-section {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f0f8 50%, #f0f4f8 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
}

.hero-label {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.hero-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 6/5;
}

.trust-strip {
  background: var(--accent);
  color: var(--white);
  padding: 48px 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 8px;
  font-weight: 400;
}

.section-label {
  display: block;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.3;
}

.section-vorteile {
  padding: 100px 0;
  background: var(--bg);
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.vorteile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}

.vorteile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.vorteile-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.vorteile-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.vorteile-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-ablauf {
  padding: 100px 0;
  background: var(--surface);
}

.ablauf-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.ablauf-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.ablauf-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.ablauf-step:last-child {
  margin-bottom: 0;
}

.ablauf-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ablauf-content {
  flex: 1;
  padding-top: 8px;
}

.ablauf-icon {
  color: var(--accent);
  margin-bottom: 8px;
}

.ablauf-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.ablauf-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ablauf-cta {
  text-align: center;
  margin-top: 48px;
}

.section-zahlen {
  padding: 80px 0;
  background: var(--bg);
}

.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.zahlen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.zahlen-icon {
  margin-bottom: 4px;
}

.zahlen-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.zahlen-label {
  font-size: 16px;
  color: var(--muted);
  max-width: 200px;
}

.section-zielgruppe {
  padding: 100px 0;
  background: var(--surface);
}

.zielgruppe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.zielgruppe-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.zielgruppe-col h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.zielgruppe-col ul {
  list-style: none;
}

.zielgruppe-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.zielgruppe-col li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.zielgruppe-yes {
  border-left: 4px solid var(--green);
}

.zielgruppe-no {
  border-left: 4px solid var(--red);
}

.section-mentor {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.mentor-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mentor-photo-wrap {
  margin-bottom: 24px;
}

.mentor-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 0 8px rgba(15,76,129,0.3);
  margin: 0 auto;
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mentor-title {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.mentor-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  padding: 0 20px;
}

.mentor-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mentor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
}

.section-erfahrungen {
  padding: 100px 0;
  background: var(--bg);
}

.carousel-wrap {
  position: relative;
  margin-top: 16px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 16px 4px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial-quote-icon {
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
  z-index: 5;
  box-shadow: var(--shadow);
}

.carousel-arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.section-faq {
  padding: 100px 0;
  background: var(--surface);
}

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

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.faq-icon {
  margin-bottom: 12px;
}

.faq-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.4;
}

.faq-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.section-kontakt {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.kontakt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kontakt-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) blur(2px);
}

.kontakt-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,35,50,0.7);
}

.section-kontakt .container {
  position: relative;
  z-index: 1;
}

.kontakt-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.kontakt-card h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}

.kontakt-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15,76,129,0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--red);
}

.form-error {
  font-size: 13px;
  color: var(--red);
  margin-top: 4px;
  min-height: 18px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-checkbox label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.form-checkbox label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  font-size: 15px;
}

.kontakt-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.kontakt-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-logo {
  color: var(--white);
  display: inline-flex;
}

.footer-logo .logo-svg {
  width: 180px;
  height: 36px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.footer-col ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 84px;
  z-index: 899;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  animation: pulse-glow 2s infinite;
}

.floating-cta-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(15,76,129,0.3); }
  50% { box-shadow: 0 4px 30px rgba(15,76,129,0.5); }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 24px 0;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-settings {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  min-height: 48px;
  min-width: 100px;
  transition: all var(--transition);
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-cookie-accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-cookie-reject {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-cookie-reject:hover {
  border-color: var(--text);
}

.btn-cookie-settings {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-cookie-settings:hover {
  border-color: var(--text);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.5);
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
}

.cookie-modal h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  padding-right: 40px;
}

.cookie-modal > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.cookie-option label {
  flex: 1;
}

.cookie-option label strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
}

.cookie-option label span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.cookie-modal .btn-full {
  margin-top: 8px;
}

.legal-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 12px;
  text-align: left;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
   font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  overflow-x: auto;
  display: block;
}

.legal-content thead th {
  background: var(--surface);
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 2px solid var(--border);
}

.legal-content tbody td {
  padding: 10px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.legal-content em {
  color: var(--muted);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .carousel-prev {
    left: -12px;
  }

  .carousel-next {
    right: -12px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-section {
    padding: 48px 0 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .trust-strip {
    padding: 36px 0;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number,
  .stat-plus {
    font-size: 32px;
  }

  .section-vorteile,
  .section-ablauf,
  .section-zielgruppe,
  .section-mentor,
  .section-erfahrungen,
  .section-faq,
  .section-kontakt {
    padding: 64px 0;
  }

  .section-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .vorteile-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vorteile-card {
    padding: 28px;
  }

  .ablauf-timeline::before {
    left: 22px;
  }

  .ablauf-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .ablauf-step {
    gap: 16px;
  }

  .zahlen-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .zahlen-number {
    font-size: 40px;
  }

  .zielgruppe-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .zielgruppe-col {
    padding: 28px;
  }

  .mentor-photo {
    width: 180px;
    height: 180px;
  }

  .mentor-name {
    font-size: 24px;
  }

  .mentor-quote {
    font-size: 18px;
  }

  .mentor-badges {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 320px;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kontakt-card {
    padding: 32px 20px;
  }

  .kontakt-card h2 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .floating-cta {
    right: 24px;
    bottom: 80px;
  }

  .floating-cta-btn span {
    display: none;
  }

  .floating-cta-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-settings {
    width: 100%;
  }

  .cookie-modal {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 85vh;
    padding: 24px 16px;
    border-radius: 12px;
  }

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

  .legal-content h1 {
    font-size: 28px;
  }

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

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .section-heading {
    font-size: 22px;
  }

  .stat-number,
  .stat-plus {
    font-size: 28px;
  }

  .kontakt-card {
    padding: 24px 16px;
  }

  .testimonial-card {
    min-width: 260px;
    padding: 24px;
  }
}