:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --accent: #667eea;
  --accent2: #764ba2;
  --text: #ffffff;
  --muted: #a0a0b0;
  --border: #2a2a3e;
  --gradient1: linear-gradient(135deg, #667eea, #764ba2);
  --gradient2: linear-gradient(135deg, #f093fb, #f5576c);
  --green: #4ade80;
  --red: #f87171;
  --amber: #f59e0b;
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 72px;
  --container: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a:hover { color: #8b9cf7; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }

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

.btn-primary {
  background: var(--gradient1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5);
  color: #fff;
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(102, 126, 234, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 42, 62, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  height: var(--header-h);
}

.site-header.scrolled {
  background: rgba(15, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.header-logo { display: flex; align-items: center; flex-shrink: 0; color: var(--text); }
.logo-svg { width: 160px; height: 40px; }

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

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

.nav-link:hover, .nav-link.active { color: var(--text); }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-cta-header {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--gradient1);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta-header:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  color: #fff;
}

.pulse-btn {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(102, 126, 234, 0); }
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  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;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  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: 600;
  color: var(--text);
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.3s ease;
}

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

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--accent);
  margin-top: 16px;
}

.hero-section {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg-decor {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-text h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

.trust-strip {
  background: var(--surface);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.trust-stat svg { color: var(--accent); }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
}

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

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

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

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

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

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

.audience-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 24px;
}

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

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

.audience-list li svg { flex-shrink: 0; margin-top: 3px; }

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

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  border: 2px solid var(--border);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

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

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--muted);
  flex-shrink: 0;
}

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

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

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

.mentor-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  object-fit: cover;
}

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

.mentor-text h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.mentor-role {
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 28px;
}

.mentor-quote {
  font-size: clamp(17px, 2.2vw, 20px);
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.mentor-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.credential svg { color: var(--accent); flex-shrink: 0; }

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

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 3px solid var(--accent);
  transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-2px); }

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

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

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

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

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

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

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

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

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

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

.faq-cta p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.section-kontakt {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d18 100%);
  position: relative;
}

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

.kontakt-info h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3.5vw, 36px);
}

.kontakt-info > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.kontakt-detail svg { color: var(--accent); flex-shrink: 0; }
.kontakt-detail a { color: var(--muted); }
.kontakt-detail a:hover { color: var(--accent); }

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

.kontakt-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.kontakt-trust-item svg { color: var(--green); }

.kontakt-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.kontakt-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: 14px;
  font-weight: 500;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

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

.form-group select {
  appearance: none;
  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='%23a0a0b0' 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-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

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

.form-checkbox label {
  font-size: 13px;
  line-height: 1.6;
  cursor: pointer;
}

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

.form-error {
  font-size: 12px;
  color: var(--red);
  min-height: 0;
  transition: all 0.3s ease;
}

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

.form-group.has-error .form-error { min-height: 16px; }

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 17px;
}

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

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

.form-success h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.form-success p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand { color: var(--text); }
.footer-logo { display: inline-block; margin-bottom: 16px; color: var(--text); }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.footer-list li svg { flex-shrink: 0; color: var(--accent); }
.footer-list a { color: var(--muted); }
.footer-list a:hover { color: var(--text); }

.footer-legal { gap: 8px; }
.footer-legal li { font-size: 13px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient1);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  text-decoration: none;
}

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

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
  color: #fff;
}

.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 -8px 40px rgba(0, 0, 0, 0.4);
}

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

.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  border: 1px solid var(--border);
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover { box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4); }

.cookie-btn-settings {
  background: var(--bg);
  color: var(--text);
}

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

.cookie-btn-reject {
  background: var(--bg);
  color: var(--text);
}

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

.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: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-close:hover { color: var(--text); background: rgba(255,255,255,0.05); }

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

.cookie-modal > p {
  color: var(--muted);
  font-size: 14px;
  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;
  cursor: pointer;
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

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

.cookie-option div { flex: 1; }
.cookie-option strong { display: block; font-size: 14px; margin-bottom: 2px; }
.cookie-option span { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }

.cookie-save-btn { width: 100%; }

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.legal-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.legal-page h1 {
  margin-bottom: 32px;
  font-size: clamp(28px, 5vw, 42px);
}

.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: clamp(18px, 3vw, 24px);
}

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

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

.legal-page ul {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

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

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

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 360px; }
  .mentor-grid { grid-template-columns: 1fr; gap: 40px; }
  .mentor-image { order: -1; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .btn-cta-header { display: none; }
  .phone-text { display: none; }

  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-text h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }

  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number, .stat-suffix { font-size: 32px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { display: none; }

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

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

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

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

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

  .floating-cta span { display: none; }
  .floating-cta { padding: 14px; border-radius: 50%; }

  .cookie-banner-inner { flex-direction: column; padding: 16px; }
  .cookie-buttons { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; min-height: 48px; font-size: 16px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { flex-direction: column; gap: 12px; }
  .benefit-card { padding: 24px; }
  .audience-card { padding{ padding: 24px; }
  .step-card { padding: 24px 16px; }
  .mentor-quote { padding-left: 16px; }
  .kontakt-form-wrap { padding: 20px; }
  .faq-question { padding: 16px 20px; font-size: 15px; }
}