:root {
  --bg: #0c0c0c;
  --surface: #1a1a1a;
  --accent: #c8a855;
  --text: #f0f0f0;
  --muted: #8a8a8a;
  --border: #2a2a2a;
  --secondary: #1e3a5f;
  --highlight: #e8d5a0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --transition: 0.3s ease;
}

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

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

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

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 168, 85, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(12, 12, 12, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

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

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

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

.nav-link {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

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

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}

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

.pulse-cta {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 85, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(200, 168, 85, 0); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  

  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.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;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

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

.mobile-nav-phone {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
  padding: 12px 0;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  font-size: 0.9375rem;
}

.btn-primary:hover {
  background: var(--highlight);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 85, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 30px;
  font-size: 0.9375rem;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-dark {
  background: var(--bg);
  color: var(--accent);
  padding: 14px 32px;
  font-size: 0.9375rem;
  border: 2px solid var(--bg);
}

.btn-dark:hover {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 48px;
}

.hero-section {
  padding: 140px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,85,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-card-left {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

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

.hero-card-left h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card-right {
  position: relative;
  z-index: 1;
  margin-left: -60px;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

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

.mentor-section {
  position: relative;
  overflow: hidden;
}

.mentor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.mentor-text {
  background: var(--surface);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.mentor-role {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mentor-bio {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
}

.mentor-image-wrap {
  position: relative;
  overflow: hidden;
}

.mentor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.cta-banner {
  padding: 80px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(0,0,0,0.03) 40px,
    rgba(0,0,0,0.03) 80px
  );
  pointer-events: none;
}

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

.cta-banner-icon {
  margin: 0 auto 24px;
  display: block;
  opacity: 0.3;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

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

.vorteile-section .section-label,
.vorteile-section .section-title {
  text-align: center;
}

.vorteile-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.vorteil-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.vorteil-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.vorteil-separator {
  height: 1px;
  background: var(--border);
}

.ablauf-section {
  padding: 120px 0;
  background: var(--surface);
}

.ablauf-section .section-label,
.ablauf-section .section-title {
  text-align: center;
}

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

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

.ablauf-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}

.ablauf-step-number {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.ablauf-step-number span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.ablauf-step-content {
  flex: 1;
  padding-top: 8px;
}

.ablauf-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ablauf-step-content p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.ablauf-step-icon {
  flex-shrink: 0;
  opacity: 0.4;
  padding-top: 8px;
}

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

.zahlen-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

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

.zahlen-icon {
  margin-bottom: 20px;
  opacity: 0.5;
}

.zahlen-value {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.zahlen-unit {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

.zahlen-desc {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
}

.zielgruppe-section {
  padding: 120px 0;
}

.zielgruppe-section .section-label,
.zielgruppe-section .section-title {
  text-align: center;
}

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

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

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

.persona-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.persona-info {
  padding: 28px;
}

.persona-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.persona-role {
  font-size: 0.8125rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.persona-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(200,168,85,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

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

.zielgruppe-cta p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 24px;
}

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

.erfahrungen-section .section-label,
.erfahrungen-section .section-title {
  text-align: center;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px;
}

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

.testimonial-slide {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  min-width: 0;
}

.testimonial-quote-icon {
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.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(--accent);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.carousel-arrow:hover {
  background: var(--highlight);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.faq-section {
  padding: 120px 0;
}

.faq-section .section-label,
.faq-section .section-title {
  text-align: center;
}

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

.faq-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

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

.faq-icon {
  margin-bottom: 16px;
}

.faq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.kontakt-section {
  padding: 120px 0;
  background: var(--surface);
}

.kontakt-section .section-label,
.kontakt-section .section-title {
  text-align: center;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

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

.kontakt-card-icon {
  margin-bottom: 24px;
}

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

.kontakt-phone-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.kontakt-phone-number:hover {
  color: var(--highlight);
}

.kontakt-hours p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.kontakt-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

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

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

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

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
  margin-bottom: 0;
}

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

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

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

.form-success svg {
  margin: 0 auto 16px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}

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

.kontakt-trust {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

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

.footer-logo {
  width: 160px;
  height: 36px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

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

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

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col li {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col li a {
  color: var(--muted);
  transition: color var(--transition);
}

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

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

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

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(200,168,85,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--highlight);
  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);
  box-shadow: 0 -4px 24px 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-banner-inner p {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  min-width: 200px;
  line-height: 1.6;
}

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

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

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

.btn-cookie-accept:hover {
  background: var(--highlight);
  border-color: var(--highlight);
}

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

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

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

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

.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: 40px 32px 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.cookie-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

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

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

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 8px;
}

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

.cookie-option p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin-left: 28px;
}

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

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

.legal-container h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.2;
}

.legal-container h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-container h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-container ul {
  color: var(--muted);
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-container li {
  margin-bottom: 8px;
  line-height: 1.7;
}

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

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

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

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

  .hero-card-right {
    margin-left: 0;
  }

  .hero-image {
    height: 400px;
  }

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

  .mentor-image {
    min-height: 400px;
  }

  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

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

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-section {
    padding: 120px 0 48px;
  }

  .hero-card-left {
    padding: 32px 24px;
  }

  .hero-card-left h1 {
    font-size: 2rem;
  }

  .hero-card-left p {
    font-size: 1rem;
  }

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

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

  .hero-image {
    height: 300px;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

  .mentor-role {
    font-size: 0.875rem;
  }

  .cta-banner {
    padding: 56px 0;
  }

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

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

  .ablauf-timeline::before {
    display: none;
  }

  .ablauf-step {
    flex-wrap: wrap;
  }

  .ablauf-step-icon {
    display: none;
  }

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

  .zahlen-value {
    font-size: 3rem;
  }

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

  .testimonial-slide {
    flex: 0 0 calc(100% - 8px);
  }

  .carousel-arrow {
    display: none;
  }

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

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

  .kontakt-card {
    padding: 32px 24px;
  }

  .kontakt-phone-number {
    font-size: 1.5rem;
  }

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

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

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

  .cookie-banner-inner p {
    font-size: 0.8125rem;
    min-width: auto;
  }

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

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

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

  .legal-container h1 {
    font-size: 1.75rem;
  }

  .legal-container h2 {
    font-size: 1.25rem;
  }

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

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

  .hero-card-left {
    padding: 24px 16px;
  }

  .hero-card-left h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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