:root {
  --bg: #ffffff;
  --surface: #f0f4f8;
  --accent: #0f4c81;
  --accent-light: rgba(15, 76, 129, 0.08);
  --accent-dark: #0a3560;
  --cta: #E07A4B;
  --cta-hover: #c96a3e;
  --text: #2c3e50;
  --muted: #7f8c8d;
  --border: #d5dde5;
  --success: #27ae60;
  --error: #e74c3c;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --header-h: 60px;
  --section-pad: 100px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 44px; }
h2 { font-size: 34px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

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

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

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

ul { list-style: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 48px;
}

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

.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(224, 122, 75, 0.35);
}

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

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

.btn-full {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--accent-dark);
  z-index: 9000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

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

.header-logo:hover {
  color: #fff;
  opacity: 0.9;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone:hover {
  color: #fff;
}

.header-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  transition: all 0.3s ease;
}

.header-cta-btn:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: scale(1.05);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--accent-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  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 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.mobile-nav-phone {
  color: var(--cta);
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  padding: 12px 24px;
}

.mobile-nav-phone:hover {
  color: var(--cta-hover);
}

.hero-section {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 var(--section-pad);
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 50%, #e8eef5 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.04;
  pointer-events: none;
}

.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  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-text h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.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 img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

.trust-strip {
  background: var(--accent-dark);
  padding: 48px 24px;
}

.trust-strip-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 900;
  display: inline;
}

.stat-plus {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--cta);
}

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

.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-heading {
  margin-bottom: 48px;
}

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

.mentor-section {
  position: relative;
  padding: var(--section-pad) 0;
  min-height: 500px;
  overflow: hidden;
}

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

.mentor-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,53,96,0.85) 0%, rgba(15,76,129,0.6) 100%);
}

.mentor-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.mentor-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}

.mentor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--accent);
}

.mentor-card h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.mentor-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}

.mentor-bio {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.mentor-creds li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
}

.ablauf-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

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

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

.timeline-step {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
}

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

.step-dot {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
}

.step-number {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.step-content {
  padding-top: 4px;
}

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

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

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

.promise-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

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

.promise-icon {
  margin-bottom: 24px;
}

.promise-container h2 {
  margin-bottom: 40px;
}

.promise-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.promise-item svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.promise-item p {
  font-size: 17px;
}

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

.featured-testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 48px;
  background: var(--surface);
  border-radius: var(--radius-lg);
}

.testimonial-avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid var(--accent);
}

.featured-testimonial blockquote p {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  margin-bottom: 12px;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
}

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

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
}

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

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testimonial-stars-sm {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  font-size: 15px;
}

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

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

.checklist {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.check-indicator.yes {
  background: var(--success);
}

.check-indicator.no {
  background: var(--error);
}

.check-item span {
  font-size: 16px;
  font-weight: 600;
}

.checklist-verdict {
  text-align: center;
  margin-top: 32px;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
}

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

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

.vorteil-card {
  text-align: center;
  padding: 32px 16px;
}

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

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

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

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

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  min-height: 400px;
}

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

.faq-question {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
  min-height: 48px;
}

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

.faq-question.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-answers {
  position: relative;
}

.faq-answer {
  display: none;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer h4 {
  margin-bottom: 16px;
  color: var(--accent);
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
}

.kontakt-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--accent-dark);
  overflow: hidden;
}

.kontakt-bg-shape {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.kontakt-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.kontakt-card-icon {
  margin-bottom: 20px;
}

.kontakt-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.kontakt-phone-number {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 24px;
}

.kontakt-phone-number:hover {
  color: var(--cta);
}

.kontakt-hours p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

.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="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text);
  transition: border-color 0.3s ease;
  background: var(--bg);
}

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

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

.form-error {
  display: none;
  font-size: 13px;
  color: var(--error);
  margin-top: 4px;
}

.form-group.error .form-error {
  display: block;
}

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

.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);
  flex: 1;
  cursor: pointer;
  margin-bottom: 0;
}

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

.form-checkbox .form-error {
  width: 100%;
}

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

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

.form-success h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

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

.kontakt-trust-text {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  color: #fff;
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo:hover {
  color: #fff;
  opacity: 0.9;
}

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

.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;
  line-height: 1.6;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 24px;
  text-align: center;
}

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

.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;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 8000;
}

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

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

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

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

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

.cookie-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-settings {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
  min-height: 48px;
  min-width: 100px;
  font-family: 'Source Sans Pro', sans-serif;
  transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

.btn-cookie-settings {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-cookie-settings:hover {
  background: rgba(255,255,255,0.1);
}

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

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

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

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

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

.cookie-modal-close:hover {
  background: var(--surface);
}

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

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

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

.cookie-option label {
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}

.legal-page {
  padding: calc(var(--header-h) + 60px) 0 var(--section-pad);
}

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

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

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

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

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

.legal-page p {
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  margin-bottom: 8px;
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .vorteile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  body { font-size: 16px; }

  .header-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .burger-btn {
    display: flex;
  }

  .hero-section {
    padding: calc(var(--header-h) + 48px) 0 64px;
  }

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

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

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

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

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

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

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

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

  .mentor-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .timeline-line {
    left: 20px;
  }

  .step-dot {
    width: 40px;
    height: 40px;
  }

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

  .timeline-step {
    gap: 20px;
  }

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

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

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

  .faq-answers {
    min-height: 0;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .kontakt-phone-number {
    font-size: 22px;
  }

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

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

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

  .cookie-buttons button {
    width: 100%;
  }

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

  .featured-testimonial {
    padding: 28px 20px;
  }

  .featured-testimonial blockquote p {
    font-size: 16px;
  }

  .legal-page {
    padding: calc(var(--header-h) + 32px) 0 64px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }

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

  .check-item {
    padding: 12px 16px;
  }

  .trust-strip {
    padding: 32px 16px;
  }
}