:root {
  --bg: #0d1117;
  --surface: #161b22;
  --accent: #00ff88;
  --text: #e6edf3;
  --muted: #7d8590;
  --border: #30363d;
  --neon: #7b2ff7;
  --glow: 0 0 20px rgba(0, 255, 136, 0.3);
  --glow-strong: 0 0 40px rgba(0, 255, 136, 0.4);
  --neon-glow: 0 0 20px rgba(123, 47, 247, 0.3);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: #33ffaa;
}

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

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

.text-glow {
  color: var(--accent);
  text-shadow: var(--glow);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(13, 17, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: var(--header-h);
}

.site-header.scrolled {
  background: rgba(13, 17, 23, 0.92);
  border-bottom-color: var(--border);
  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: 24px;
}

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

.logo-svg {
  height: 36px;
  width: auto;
}

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

.nav-link {
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition), text-shadow var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--glow);
  transition: width var(--transition);
}

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-family: var(--font-heading);
  transition: color var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: #33ffaa;
  color: var(--bg);
  box-shadow: var(--glow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: inset 0 0 0 0 var(--accent);
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.1);
  color: #33ffaa;
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

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

.btn-cta {
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
}

.btn-cta:hover {
  background: #33ffaa;
  color: var(--bg);
  box-shadow: var(--glow-strong);
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.3); }
  50% { box-shadow: 0 0 24px rgba(0, 255, 136, 0.5); }
}

.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: 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;
  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: 24px;
}

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

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

.mobile-nav-phone {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

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

.hero-text {
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50px;
  background: rgba(0, 255, 136, 0.05);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

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

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

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

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

.hero-image {
  position: relative;
}

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

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

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

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

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

.stat-icon {
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: var(--glow);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

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

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

.section-erfahrungen {
  background: var(--surface);
}

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

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

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.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 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
  border-color: rgba(0, 255, 136, 0.3);
}

.benefit-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 12px;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

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

.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 32px;
  transition: border-color var(--transition);
}

.audience-yes {
  border-color: rgba(0, 255, 136, 0.3);
}

.audience-no {
  border-color: rgba(255, 68, 102, 0.3);
}

.audience-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.audience-header-bar h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

.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;
}

.steps-timeline {
  display: flex;
  gap: 32px;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: var(--glow);
  margin-bottom: 16px;
  line-height: 1;
}

.step-connector {
  display: none;
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  flex: 1;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step-content:hover {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: var(--glow);
}

.step-icon {
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

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

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

.section-mentor {
  background: var(--surface);
}

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

.mentor-image {
  position: relative;
}

.mentor-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  width: 100%;
}

.mentor-image-border {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  margin-top: 8px;
}

.mentor-role {
  font-size: 15px;
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.mentor-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  opacity: 0.9;
}

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

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

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text);
}

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

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

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

.faq-item.open {
  border-color: rgba(0, 255, 136, 0.3);
}

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

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.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: 500px;
}

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

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

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

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

.section-kontakt {
  background: var(--surface);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.kontakt-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.kontakt-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

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

.kontakt-detail-item a {
  color: var(--muted);
}

.kontakt-detail-item a:hover {
  color: var(--accent);
}

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

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

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

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

.form-row {
  display: flex;
  gap: 16px;
}

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  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(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.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='%237d8590' 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,
.form-group textarea.error {
  border-color: #ff4466;
  box-shadow: 0 0 0 3px rgba(255, 68, 102, 0.1);
}

.form-error {
  font-size: 12px;
  color: #ff4466;
  min-height: 16px;
  font-family: var(--font-heading);
}

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

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

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

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

.btn-submit {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

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

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

.success-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

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

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

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

.footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-contact ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

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

.footer-legal ul li a {
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-legal ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-heading);
}

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

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

.back-to-top:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--glow);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 84px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--glow-strong);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 8000;
  text-decoration: none;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta:hover {
  background: #33ffaa;
  color: var(--bg);
  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);
  padding: 20px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.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-banner-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

.btn-cookie {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.btn-cookie-accept:hover {
  background: #33ffaa;
}

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

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

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

.btn-cookie-reject:hover {
  border-color: #ff4466;
  color: #ff4466;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  position: relative;
  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;
  z-index: 100000;
}

.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 var(--transition), background var(--transition);
}

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

.cookie-modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.cookie-modal-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-option-info strong {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text);
}

.cookie-option-info span {
  font-size: 13px;
  color: var(--muted);
}

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

.cookie-save {
  width: 100%;
}

.cookie-reopen-wrap {
  margin: 32px 0;
}

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

.legal-section h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

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

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

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

.legal-section a {
  color: var(--accent);
}

.legal-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 16px 0;
}

.legal-highlight p {
  margin-bottom: 8px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

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

  .hero-text {
    max-width: 100%;
  }

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

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

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

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

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

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

  .desktop-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .phone-text {
    display: none;
  }

  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

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

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

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

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

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

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

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

  .section-title {
    font-size: 26px;
  }

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

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

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

  .steps-timeline {
    flex-direction: column;
    gap: 24px;
  }

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

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

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

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

  .kontakt-title {
    font-size: 26px;
  }

  .mentor-name {
    font-size: 26px;
  }

  .mentor-quote {
    font-size: 16px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 80px;
    font-size: 12px;
    padding: 10px 16px;
  }

  .sticky-cta span {
    display: none;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .sticky-cta {
    bottom: 24px;
    right: 68px;
  }

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

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

  .cookie-banner-actions .btn-cookie {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .cookie-banner {
    padding: 16px;
  }

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

  .legal-section {
    padding: 100px 0 60px;
  }

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

  .legal-section h2 {
    font-size: 20px;
  }
}

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

  .section-title {
    font-size: 22px;
  }

  .container {
    padding: 0 16px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

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

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