:root {
  --bg: #f5f0e8;
  --surface: #ede4d4;
  --accent: #2d5016;
  --text: #1a1a1a;
  --muted: #6b5e4c;
  --border: #c9bda8;
  --wood: #8b4513;
  --accent-light: rgba(45, 80, 22, 0.08);
  --accent-medium: rgba(45, 80, 22, 0.15);
  --cta-color: #C4841D;
  --cta-hover: #a86e15;
  --white: #ffffff;
  --dark: #1C1C1E;
  --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);
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

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

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

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

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

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

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

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

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

.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  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.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.top-bar-link:hover { color: #fff; }

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

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

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

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

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

.desktop-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  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,
.desktop-nav a.active {
  color: var(--accent);
}

.header-cta {
  background: var(--cta-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--cta-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.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 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  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: 1.25rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

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

.mobile-nav-cta {
  background: var(--cta-color);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 12px;
  transition: background var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 14px 32px;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

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

.btn-primary:hover {
  background: var(--cta-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,132,29,0.3);
}

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

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

.btn-full {
  width: 100%;
}

.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, rgba(45,80,22,0.04) 100%);
  overflow: hidden;
}

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

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

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

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

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

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

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

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

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
}

.trust-strip-inner strong {
  color: var(--accent);
  font-size: 1.2rem;
  font-family: 'Bitter', serif;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

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

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

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

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

.ablauf-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.ablauf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.ablauf-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cta-color));
}

.ablauf-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.ablauf-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Bitter', serif;
  margin-bottom: 12px;
}

.ablauf-card h3 {
  margin-bottom: 8px;
}

.ablauf-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.ablauf-footer p {
  color: var(--muted);
  margin-bottom: 20px;
}

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

.zielgruppe-list {
  max-width: 600px;
  margin: 0 auto 40px;
}

.zg-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-weight: 600;
  font-size: 1.02rem;
  transition: transform 0.3s ease;
}

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

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

.zg-check {
  background: var(--accent);
}

.zg-cross {
  background: #b94a48;
}

.zg-no span {
  color: var(--muted);
}

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

.zielgruppe-footer p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

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

.vorteile-rows {
  max-width: 800px;
  margin: 0 auto;
}

.vorteil-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
}

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

.vorteil-icon {
  flex-shrink: 0;
}

.vorteil-text h3 {
  margin-bottom: 8px;
}

.vorteil-text p {
  color: var(--muted);
}

.vorteil-divider {
  height: 1px;
  background: var(--border);
  margin: 0 auto;
}

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #1a3d0a 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

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

.cta-banner-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-banner {
  background: var(--cta-color);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-cta-banner:hover {
  background: var(--cta-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,132,29,0.4);
}

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

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

.erfahrung-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.erfahrung-card:hover {
  transform: translateY(-4px);
}

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

.erfahrung-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

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

.erfahrung-author strong {
  display: block;
  font-size: 0.95rem;
}

.erfahrung-author span {
  font-size: 0.82rem;
  color: var(--muted);
}

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

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

.mentor-photo-wrapper {
  width: 240px;
  height: 240px;
  margin: 0 auto 28px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent), var(--cta-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-photo-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--dark);
}

.mentor-content h2 {
  color: var(--white);
  margin-bottom: 4px;
}

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

.mentor-quote {
  font-family: 'Bitter', serif;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

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

.mentor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
}

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

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

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

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Bitter', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  min-height: 48px;
  transition: color var(--transition);
}

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

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

.faq-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

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

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

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

.faq-footer p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.section-kontakt {
  padding: 100px 0;
  background: linear-gradient(135deg, #2a2a2c 0%, #1C1C1E 100%);
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: flex-start;
}

.kontakt-info h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.kontakt-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.kontakt-details {
  margin-bottom: 28px;
}

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.kontakt-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.kontakt-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  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-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b5e4c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input.error,
.form-group select.error {
  border-color: #b94a48;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #b94a48;
  margin-top: 4px;
  min-height: 0;
}

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

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

.form-checkbox label {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
}

.form-checkbox label a {
  text-decoration: underline;
}

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

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

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

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

.site-footer {
  background: var(--white);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta-color), var(--accent));
}

.footer-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  color: var(--text);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-cookie-btn {
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition);
  padding: 0;
}

.footer-cookie-btn:hover {
  color: var(--accent);
}

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

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

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

.footer-sep {
  color: var(--border);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.7;
}

.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: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 900;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  display: flex;
}

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

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

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

.cookie-banner-inner p {
  flex: 1;
  font-size: 0.92rem;
  color: var(--text);
  min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-settings {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  border: 2px solid var(--accent);
  transition: all var(--transition);
}

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

.btn-cookie-accept:hover {
  background: #1a3d0a;
  border-color: #1a3d0a;
}

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

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

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

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

.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(--white);
  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-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;
  border-radius: 50%;
  transition: background var(--transition);
}

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

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

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

.cookie-option {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius);
}

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

.cookie-option label input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

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

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

.legal-page h1 {
  margin-bottom: 32px;
  font-size: 2.2rem;
}

.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

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

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

.legal-page ul li {
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

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

.legal-page th,
.legal-page td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.legal-page th {
  background: var(--surface);
  font-weight: 700;
  color: var(--text);
}

.legal-page td {
  color: var(--muted);
}

.legal-page a {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }

  .top-bar { display: none; }

  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

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

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

  .hero-text { order: 1; }
  .hero-image { order: 2; }

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

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

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

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

  .trust-divider {
    width: 40px;
    height: 1px;
  }

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

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

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

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

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

  .kontakt-form-wrapper {
    padding: 24px;
  }

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

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

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

  .cta-banner-content h2 {
    font-size: 1.6rem;
  }

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

  .footer-sep { display: none; }

  .cookie-banner-inner {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

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

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

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

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

  .legal-page h1 {
    font-size: 1.65rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }

  .ablauf-card {
    padding: 28px 20px 24px;
  }

  .erfahrung-card {
    padding: 24px;
  }

  .kontakt-form-wrapper {
    padding: 20px 16px;
  }
}