:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --accent: #c0392b;
  --accent-hover: #a93226;
  --accent-light: rgba(192, 57, 43, 0.08);
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Serif Pro', Georgia, serif;
  --container: 1200px;
  --header-h: 72px;
}

*,
*::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: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: clamp(16px, 2vw, 20px); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  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: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
  line-height: 1.2;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-full {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

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

.header-logo svg {
  display: block;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

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

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

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

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

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

.mobile-nav-phone {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 18px;
  margin-top: 8px;
}

.mobile-nav-cta {
  margin-top: 16px;
  width: 80%;
  max-width: 300px;
}

.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #fafafa 0%, #f0e8e4 50%, #fafafa 100%);
}

.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero h1 {
  margin-bottom: 20px;
}

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

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

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

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

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

.stat-item {
  color: #fff;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  display: inline;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

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

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

.section-tag-light {
  color: rgba(255,255,255,0.8);
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 16px auto 0;
}

.text-light {
  color: #fff;
}

.text-light-muted {
  color: rgba(255,255,255,0.7);
}

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

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

.vorteil-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vorteil-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.vorteil-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

.section-mentor {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.section-mentor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.04) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.mentor-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: center;
}

.mentor-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.mentor-text .section-tag {
  text-align: left;
}

.mentor-text h2 {
  margin-bottom: 8px;
}

.mentor-role {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

.mentor-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 32px;
}

.mentor-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mentor-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

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

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

.review-card {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

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

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

.review-author strong {
  display: block;
  font-size: 14px;
}

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

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

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.video-placeholder img {
  width: 100%;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

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

.checklist-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.checklist-item:hover {
  transform: translateX(4px);
}

.checklist-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-indicator.yes {
  background: #27ae60;
}

.checklist-indicator.no {
  background: var(--accent);
}

.checklist-verdict {
  text-align: center;
  margin-top: 36px;
  padding: 32px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
}

.checklist-verdict p {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-partners {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 120px;
  height: 50px;
  color: var(--text);
  transition: opacity 0.3s ease;
  opacity: 0.6;
}

.partner-logo:hover {
  opacity: 1;
}

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

.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

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

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

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

.timeline-dot {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

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

.timeline-icon img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

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

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  min-height: 48px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

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

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

.faq-cta p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-kontakt {
  padding: 100px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.kontakt-bg-shape {
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 20px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease;
  min-height: 48px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

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

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

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

.pill-group input[type="radio"] {
  display: none;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.pill-label:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pill-group input[type="radio"]:checked + .pill-label {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

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

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

.form-checkbox label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

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

.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success h3 {
  margin: 16px 0 8px;
  color: var(--accent);
}

.form-success p {
  color: var(--muted);
}

.kontakt-phone {
  text-align: center;
  margin-top: 32px;
}

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

.kontakt-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.kontakt-phone-link:hover {
  color: var(--accent);
}

.site-footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-logo {
  color: #fff;
  display: inline-block;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-links li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.4);
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

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

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

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

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

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

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

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

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

.cookie-buttons {
  display: flex;
  gap: 8px;
  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 20px;
  border-radius: var(--radius-sm);
  cursor:pointer;
  min-height: 44px;
  min-width: 100px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: all 0.3s ease;
}

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

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

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

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

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

.cookie-modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
  padding-right: 40px;
}

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

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

.cookie-option {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-left: 28px;
}

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

.legal-container {
  max-width: 780px;
}

.legal-container h1 {
  margin-bottom: 8px;
}

.legal-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-container h3 {
  font-size: clamp(17px, 2.5vw, 22px);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-container p {
  margin-bottom: 16px;
  color: var(--muted);
}

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

.legal-container ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}

.legal-container a {
  color: var(--accent);
  text-decoration: underline;
}

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

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

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

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .mentor-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentor-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .vorteile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

  .mentor-text {
    text-align: center;
  }

  .mentor-quote {
    text-align: left;
  }

  .mentor-badges {
    align-items: center;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline-dot {
    left: -48px;
    width: 36px;
    height: 36px;
  }

  .timeline-number {
    font-size: 16px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-icon {
    display: none;
  }

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

  .contact-form {
    padding: 32px 20px;
  }

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

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

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

  .cookie-buttons .btn-cookie-accept,
  .cookie-buttons .btn-cookie-reject,
  .cookie-buttons .btn-cookie-settings {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-text p {
    font-size: 14px;
  }

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

  .btn-lg {
    width: 100%;
  }

  .btn-outline.btn-lg {
    width: 100%;
  }

  .partners-row {
    gap: 24px;
  }

  .partner-logo {
    width: 100px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .vorteile-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .pill-group {
    flex-direction: column;
  }

  .pill-label {
    width: 100%;
  }
}