:root {
  --bg: #fffdf0;
  --surface: #ffffff;
  --accent: #ff6b6b;
  --text: #000000;
  --muted: #555555;
  --border: #000000;
  --highlight: #fffb00;
  --cta-orange: #D4812A;
  --blue: #2C3E8C;
  --radius: 12px;
  --shadow: 4px 4px 0px var(--border);
  --shadow-hover: 6px 6px 0px var(--border);
  --transition: 0.15s ease;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  line-height: 1.2;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 100001;
  transition: width 0.1s linear;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 9999;
  background: rgba(255, 253, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 253, 240, 0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

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

.logo-svg {
  width: 180px;
  height: 40px;
}

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

.nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition);
}

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

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

.btn-cta-header {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--cta-orange);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta-header:hover {
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}

.pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}

@keyframes pulseSubtle {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 4px 4px 0px var(--border), 0 0 0 4px rgba(212,129,42,0.2); }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 3px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

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

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 3px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  z-index: 10001;
}

.mobile-nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 3px solid transparent;
}

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

.mobile-nav-phone {
  color: var(--accent);
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--highlight);
  background: rgba(255, 251, 0, 0.15);
  padding: 6px 16px;
  border: 2px solid var(--highlight);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--cta-orange);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta-hero:hover {
  color: #fff;
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
}

.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding: 0 20px 80px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
}

.trust-card svg {
  margin: 0 auto 12px;
}

.trust-number {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}

.trust-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.section-label {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  background: var(--highlight);
  padding: 4px 12px;
  border: 2px solid var(--border);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 48px;
  color: var(--text);
}

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

.carousel-wrapper {
  position: relative;
  padding: 0 48px;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 8px 0;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.carousel-slide:hover {
  transform: translate(-2px, -2px);
}

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

.carousel-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

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

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

.carousel-author strong {
  display: block;
  font-size: 14px;
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 2;
}

.carousel-arrow:hover {
  transform: translateY(-50%) translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

.section-ablauf {
  padding: 100px 0;
  background: var(--surface);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  margin-bottom: 48px;
}

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

.timeline-dot {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--highlight);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-number {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
}

.timeline-content {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.timeline-icon {
  margin-bottom: 12px;
  color: var(--accent);
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--cta-orange);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-cta:hover {
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}

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

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

.vorteile-card {
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.vorteile-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
}

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

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

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

.section-zielgruppe {
  padding: 100px 0;
  background: var(--surface);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

.zielgruppe-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.zg-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  font-size: 16px;
  font-weight: 500;
}

.zg-item:last-child {
  border-bottom: none;
}

.zg-indicator {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  border-radius: 8px;
}

.zg-yes .zg-indicator {
  background: #c8f7c5;
  color: #1a7a1a;
}

.zg-no .zg-indicator {
  background: #ffd4d4;
  color: #c0392b;
}

.zielgruppe-verdict {
  text-align: center;
  margin-top: 40px;
}

.zielgruppe-verdict p {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.blog-card {
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid var(--border);
}

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

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

.blog-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--highlight);
  padding: 2px 8px;
  border: 2px solid var(--border);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.section-mentor {
  overflow: hidden;
}

.mentor-split {
  display: flex;
  min-height: 600px;
}

.mentor-text {
  flex: 0 0 50%;
  background: var(--text);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-text .section-label {
  color: var(--highlight);
  background: rgba(255,251,0,0.15);
  border-color: var(--highlight);
}

.mentor-text h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 8px;
}

.mentor-title-role {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  font-style: italic;
}

.mentor-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mentor-credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mentor-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

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

.mentor-image {
  flex: 0 0 50%;
}

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

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

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

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

.faq-q {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.faq-q:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.faq-q.active {
  background: var(--highlight);
  box-shadow: var(--shadow);
  transform: translate(-2px, -2px);
}

.faq-answers {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.faq-a {
  display: none;
}

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

.faq-a h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

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

.btn-link {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
}

.section-kontakt {
  padding: 100px 0;
  background: var(--text);
  color: #fff;
}

.kontakt-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}

.kontakt-info h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

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

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

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}

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

.kontakt-gdpr {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.kontakt-form-wrap {
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  border: 3px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.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(255,107,107,0.2);
}

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

.form-error {
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
  min-height: 18px;
}

.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;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-checkbox label {
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}

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

.btn-cta-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--cta-orange);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}

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

.form-success h3 {
  font-size: 24px;
  margin: 16px 0 8px;
  color: var(--text);
}

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

.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  border-top: 3px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

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

.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}

.footer-address p {
  margin-bottom: 12px;
}

.footer-address a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

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

.footer-cookie-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 3px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  color: var(--text);
  z-index: 9998;
  transition: transform var(--transition);
}

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

.back-to-top:hover {
  transform: translate(-2px, -2px);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text);
  min-width: 200px;
}

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

.cookie-btn {
  padding: 12px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  min-height: 48px;
  min-width: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cookie-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

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

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

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

.cookie-btn-save {
  background: var(--cta-orange);
  color: #fff;
  width: 100%;
  margin-top: 12px;
}

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

.cookie-modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  z-index: 1;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

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

.cookie-option-label strong {
  display: block;
  font-size: 14px;
}

.cookie-option-label small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

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

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--border);
}

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .vorteile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .kontakt-split {
    grid-template-columns: 1fr;
  }
  .mentor-split {
    flex-direction: column;
  }
  .mentor-text {
    flex: none;
    padding: 60px 40px;
  }
  .mentor-image {
    flex: none;
    height: 400px;
  }
}

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

  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-phone span {
    display: none;
  }

  .btn-cta-header {
    display: none;
  }

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

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

  .hero-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-content {
    padding: 60px 16px;
  }

  .btn-cta-hero {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 24px;
  }

  .hero-pills {
    flex-direction: column;
    gap: 8px;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    margin-top: -40px;
    padding-bottom: 60px;
  }

  .trust-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .carousel-wrapper {
    padding: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 85%;
    min-width: 260px;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-dot {
    left: -48px;
    width: 36px;
    height: 36px;
  }

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

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

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

  .mentor-text {
    padding: 48px 20px;
  }

  .mentor-text h2 {
    font-size: 28px;
  }

  .mentor-image {
    height: 300px;
  }

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

  .faq-q {
    font-size: 13px;
    padding: 12px 16px;
  }

  .faq-answers {
    padding: 24px 20px;
  }

  .faq-a h3 {
    font-size: 18px;
  }

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

  .kontakt-info h2 {
    font-size: 28px;
  }

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

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

  .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .btn-cta-submit {
    font-size: 14px;
  }

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

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

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

  .cookie-btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    font-size: 14px;
  }

  .cookie-text {
    font-size: 13px;
  }

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

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

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

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

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

  .trust-cards {
    grid-template-columns: 1fr;
  }

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

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

  .vorteile-num {
    font-size: 36px;
  }

  .logo-svg {
    width: 140px;
    height: 32px;
  }
}