:root {
  --bg: #ffffff;
  --surface: #f8f9fa;
  --accent: #1a1a1a;
  --text: #1a1a1a;
  --muted: #6c757d;
  --border: #e9ecef;
  --cta: #1a1a1a;
  --cta-text: #ffffff;
  --green: #1a8a6e;
  --red: #d64545;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a:hover {
  opacity: 0.7;
}

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

.container-narrow {
  max-width: 760px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  color: var(--accent);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--accent);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta {
  background: var(--cta);
  color: var(--cta-text);
  padding: 12px 28px;
  border-radius: 100px;
}

.btn-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

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

.btn-full {
  width: 100%;
}

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

.btn-white:hover {
  background: var(--surface);
}

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

.pulse-cta {
  animation: pulse-shadow 2.5s ease-in-out infinite;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,26,26,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(26,26,26,0); }
}

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

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

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

.mobile-nav-phone {
  color: var(--muted);
  font-size: 16px;
  margin-top: 16px;
}

.mobile-nav-cta {
  margin-top: 16px;
  padding: 16px 48px;
  font-size: 16px;
}

.hero-section {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero-inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image-col {
  width: 55%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

.hero-text-col {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 440px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}

.bounce-arrow {
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

.trust-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  

  flex-wrap: wrap;
}

.trust-item {
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
}

.trust-item strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

.zielgruppe-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.zielgruppe-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.zielgruppe-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zielgruppe-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.zielgruppe-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.vorteile-section {
  padding: 100px 0;
}

.vorteile-list {
  max-width: 860px;
  margin: 0 auto;
}

.vorteil-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.vorteil-row-reverse {
  flex-direction: row-reverse;
}

.vorteil-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.vorteil-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.vorteil-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

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

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

.mentor-photo-wrap {
  display: inline-block;
  border-radius: 50%;
  padding: 6px;
  border: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
}

.mentor-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
}

.mentor-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--bg);
}

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

.mentor-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  padding: 0 16px;
}

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

.mentor-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

.mentor-badge svg {
  color: rgba(255,255,255,0.5);
}

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

.carousel-wrapper {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

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

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

.carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

.quote-mark {
  color: var(--accent);
  margin-bottom: 12px;
}

.carousel-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  margin-bottom: 20px;
}

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

.carousel-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-author strong {
  font-size: 14px;
  display: block;
  line-height: 1.3;
}

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

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

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

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

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

.cta-banner {
  padding: 80px 0;
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cta-banner-bg svg {
  color: var(--bg);
  width: 100%;
  max-width: 600px;
}

.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner-inner h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--bg);
}

.cta-banner-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.ablauf-section {
  padding: 100px 0;
}

.ablauf-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 48px;
}

.ablauf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.ablauf-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.ablauf-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  background: var(--bg);
}

.ablauf-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ablauf-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 220px;
}

.ablauf-connector {
  display: flex;
  align-items: center;
  padding-top: 56px;
  color: var(--border);
  flex-shrink: 0;
}

.ablauf-cta {
  text-align: center;
}

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

.faq-interactive {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-q {
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-height: 48px;
}

.faq-q:hover {
  background: var(--bg);
  color: var(--accent);
}

.faq-q.active {
  background: var(--bg);
  color: var(--accent);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.faq-answers {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.faq-a {
  display: none;
}

.faq-a.active {
  display: block;
}

.faq-a h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

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

.faq-bottom-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--muted);
}

.faq-bottom-cta a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.kontakt-inner {
  max-width: 560px;
  margin: 0 auto;
}

.kontakt-section .section-header {
  margin-bottom: 40px;
}

.kontakt-section .eyebrow {
  color: rgba(255,255,255,0.5);
}

.kontakt-section h2 {
  color: var(--bg);
}

.kontakt-section .section-desc {
  color: rgba(255,255,255,0.6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}

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

.form-error {
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
}

.pill-radios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-radios input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.pill-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.pill-radios input[type="radio"]:checked + .pill-radio {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}

.pill-radio:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}

.form-checkbox {
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--bg);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.form-checkbox label a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kontakt-section .btn-cta {
  background: var(--bg);
  color: var(--accent);
  margin-top: 8px;
}

.kontakt-section .btn-cta:hover {
  background: var(--surface);
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success svg {
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.kontakt-phone {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.kontakt-phone p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.kontakt-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--bg);
}

.kontakt-phone-link:hover {
  opacity: 0.8;
}

.site-footer {
  padding: 48px 0 32px;
  background: var(--surface);
  position: relative;
}

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .brand-logo {
  margin: 0 auto;
  height: 32px;
  color: var(--accent);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a,
.footer-links button {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-cookie-btn {
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  padding: 0;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-contact a {
  color: var(--muted);
}

.footer-contact a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 24px;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: 48px;
  min-width: 100px;
  border: 1.5px solid var(--accent);
  transition: all var(--transition);
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--bg);
}

.btn-cookie-accept:hover {
  opacity: 0.85;
}

.btn-cookie-settings {
  background: transparent;
  color: var(--accent);
}

.btn-cookie-settings:hover {
  background: var(--surface);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--accent);
}

.btn-cookie-reject:hover {
  background: var(--surface);
}

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

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--bg);
  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;
  color: var(--accent);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
}

.cookie-modal h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.cookie-option input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.cookie-option-desc {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-page li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 12px);
  }

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

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

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

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column-reverse;
  }

  .hero-image-col {
    width: 100%;
    max-height: 300px;
  }

  .hero-image {
    border-radius: 0 0 16px 16px;
    max-height: 300px;
  }

  .hero-text-col {
    width: 100%;
    padding: 32px 24px 40px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .btn-lg {
    width: 100%;
    padding: 16px 24px;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 12px;
  }

  .trust-divider {
    display: none;
  }

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

  .section-header h2 {
    font-size: 26px;
  }

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

  .zielgruppe-card {
    padding: 28px 24px;
  }

  .vorteil-row,
  .vorteil-row-reverse {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .mentor-badges {
    gap: 24px;
  }

  .carousel-slide {
    flex: 0 0 calc(85%);
    min-width: 260px;
  }

  .carousel-prev,
  .carousel-next {
    display: none;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner-inner h2 {
    font-size: 26px;
  }

  .ablauf-timeline {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .ablauf-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .faq-interactive {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie {
    width: 100%;
  }

  .cookie-modal {
    width: calc(100vw - 32px);
    max-height: 85vh;
    padding: 24px 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }

  .footer-links {
    gap: 12px;
  }

  .kontakt-section .btn-cta {
    width: 100%;
  }
}

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

  .section-header h2 {
    font-size: 24px;
  }

  .container {
    padding: 0 16px;
  }

  .legal-page {
    padding: 96px 0 56px;
  }

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