: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-neon: 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;
}

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

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

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

body.menu-open,
body.modal-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 20px;
}

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

.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: color var(--transition);
}

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

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: box-shadow var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.desktop-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

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

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

.header-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
  transition: all var(--transition);
  box-shadow: var(--glow);
  white-space: nowrap;
}

.header-cta:hover {
  background: #33ffaa;
  color: var(--bg);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform: translateY(-1px);
}

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

.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;
  z-index: 10001;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-heading);
  box-shadow: var(--glow);
  margin-top: 12px;
}

.hero-section {
  display: flex;

  min-height: 100vh;
  overflow: hidden;
}

.hero-image-col {
  width: 55%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  min-height: 100vh;
}

.hero-text-col {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 48px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: var(--glow);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
}

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

.btn-primary:hover {
  background: #33ffaa;
  color: var(--bg);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  padding: 16px 36px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-heading);
}

.bounce-arrow {
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.trust-strip {
  background: linear-gradient(135deg, var(--surface), rgba(123, 47, 247, 0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: var(--glow);
  line-height: 1;
}

.trust-plus {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: var(--glow);
}

.trust-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--font-heading);
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

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

.vorteile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.vorteile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  opacity: 0;
  transition: opacity var(--transition);
}

.vorteile-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.vorteile-card:hover::before {
  opacity: 1;
}

.vorteile-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

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

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

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

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--neon);
  box-shadow: var(--glow-neon);
  transform: translateY(-4px);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--neon);
  background: rgba(123, 47, 247, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
}

.blog-link:hover {
  gap: 10px;
}

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

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.persona-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.persona-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.persona-body {
  padding: 24px;
}

.persona-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.persona-role {
  font-size: 13px;
  color: var(--accent);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 16px;
}

.persona-quote {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.persona-helped {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
}

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

.persona-cta p {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text);
}

.reviews-masonry {
  columns: 3;
  column-gap: 24px;
}

.review-card {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.review-card-accent {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(0, 255, 136, 0.05));
  border-color: rgba(123, 47, 247, 0.3);
}

.review-card-accent:hover {
  border-color: var(--neon);
  box-shadow: var(--glow-neon);
}

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

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

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

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

.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--accent);
  font-family: var(--font-heading);
}

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

.ablauf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.ablauf-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

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

.ablauf-icon {
  margin-bottom: 20px;
}

.ablauf-step {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

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

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

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

.ablauf-bottom p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.section-mentor {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
}

.mentor-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.mentor-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.85), rgba(13, 17, 23, 0.6));
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
}

.mentor-card {
  background: rgba(22, 27, 34, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.mentor-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 14px;
  color: var(--accent);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 16px;
}

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

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

.mentor-credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

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

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

.faq-question {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
}

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

.faq-question.active {
  border-color: var(--accent);
  background: rgba(0, 255, 136, 0.05);
  box-shadow: var(--glow);
  color: var(--accent);
}

.faq-answers {
  position: relative;
}

.faq-answer {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.faq-answer.active {
  display: block;
}

.faq-answer h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

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

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

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

.text-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  transition: gap var(--transition);
}

.text-link:hover {
  gap: 12px;
}

.section-contact {
  background: linear-gradient(135deg, var(--surface), rgba(123, 47, 247, 0.08));
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

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

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

.contact-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-heading);
  padding: 12px 16px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--radius);
}

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

.contact-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-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  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);
}

.form-group select {
  cursor: pointer;
  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-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.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: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

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

.form-error {
  font-size: 12px;
  color: #ff4757;
  font-family: var(--font-heading);
  display: none;
}

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

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

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

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

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

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

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

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}

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

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

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--muted);
  transition: color var(--transition), transform var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

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

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

.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 8px;
}

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

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-settings-link {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

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

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.back-to-top:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--glow);
  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.5);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-settings,
.btn-cookie-reject {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  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;
  box-shadow: var(--glow);
}

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

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

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

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

.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;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.cookie-modal h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  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;
  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: all var(--transition);
  min-width: 44px;
  min-height: 44px;
}

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

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

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

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
}

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

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

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

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 40px;
  text-shadow: var(--glow);
}

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

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

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

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

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

.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: var(--glow);
}

.legal-page em {
  color: var(--muted);
  font-size: 13px;
}

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

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

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

@keyframes neonPulse {
  0%, 100% { text-shadow: var(--glow); }
  50% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.2); }
}

.glitch-text {
  animation: neonPulse 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
  }

  .hero-image-col {
    width: 45%;
  }

  .hero-text-col {
    width: 55%;
    padding: 40px 32px;
  }

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

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

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-section {
    flex-direction: column-reverse;
  }

  .hero-image-col {
    width: 100%;
  }

  .hero-image {
    min-height: 300px;
    max-height: 400px;
    border-radius: 0;
  }

  .hero-text-col {
    width: 100%;
    padding: 48px 16px;
  }

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

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

  .btn-lg {
    width: 100%;
    padding: 16px 32px;
  }

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

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

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
    padding: 0 16px;
  }

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

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

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

  .reviews-masonry {
    columns: 1;
  }

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

  .mentor-overlay {
    min-height: auto;
    padding: 60px 0;
    align-items: center;
  }

  .mentor-card {
    max-width: 100%;
    margin: 0 16px;
  }

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

  .faq-questions {
    gap: 6px;
  }

  .section-contact {
    padding: 64px 0;
  }

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

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-form-wrap {
    padding: 24px 16px;
  }

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

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

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

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

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

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

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

  .legal-page h1 {
    font-size: 26px;
  }

  .legal-page h2 {
    font-size: 18px;
  }

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

  .persona-cta p {
    font-size: 17px;
  }

  .btn-primary {
    width: 100%;
  }
}

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

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

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-number {
    font-size: 28px;
  }

  .contact-form-wrap {
    padding: 20px 12px;
  }

  .cookie-modal {
    padding: 20px 12px;
  }
}