:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --accent: #667eea;
  --accent-light: #8b9cf7;
  --text: #ffffff;
  --muted: #a0a0b0;
  --border: #2a2a3e;
  --gradient1: linear-gradient(135deg, #667eea, #764ba2);
  --gradient2: linear-gradient(135deg, #f093fb, #f5576c);
  --gradient3: linear-gradient(135deg, #667eea, #43e97b);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.2);
  --transition: 0.3s ease;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

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

body.menu-open,
body.modal-open {
  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-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 5vw, 52px);
}

h2 {
  font-size: clamp(22px, 4vw, 40px);
}

h3 {
  font-size: clamp(18px, 3vw, 24px);
}

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

.section-title {
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light {
  color: var(--text);
  background: none;
  -webkit-text-fill-color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.site-header.scrolled {
  background: rgba(15, 15, 26, 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: 20px;
}

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

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

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

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
  white-space: nowrap;
}

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

.header-right {
  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-weight: 500;
  transition: color var(--transition);
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
  color: #fff;
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn-full {
  width: 100%;
}

.header-cta {
  font-size: 12px;
  padding: 10px 20px;
}

.pulse-subtle {
  animation: pulse-glow 3s infinite;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  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 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  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-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

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

.mobile-phone {
  color: var(--accent-light);
}

.mobile-cta {
  margin-top: 16px;
}

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

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  z-index: 0;
}

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

.hero-text {
  padding-right: 20px;
}

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

.hero-text h1 {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-desc {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 520px;
}

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

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

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

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
}

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

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

.trust-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

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

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

.mentor-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mentor-photo-wrap {
  width: 240px;
  height: 240px;
  margin: 0 auto 32px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gradient1);
}

.mentor-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface);
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-top: 16px;
  color: var(--text);
}

.mentor-title {
  color: var(--accent-light);
  font-size: 16px;
  margin-bottom: 32px;
}

.mentor-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  padding: 0 20px;
}

.mentor-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.mentor-badge svg {
  color: var(--accent);
}

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

.testimonials-masonry {
  columns: 3;
  column-gap: 24px;
  margin-top: 20px;
}

.testimonial-card {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-card.accent-bg {
  background: var(--gradient1);
  border: none;
}

.testimonial-card.accent-bg .testimonial-text {
  color: #fff;
}

.testimonial-card.accent-bg .author-name {
  color: #fff;
}

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

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

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

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

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

.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  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: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

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

.timeline-content h3 {
  color: var(--text);
  margin-bottom: 8px;
}

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

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

.checklist {
  max-width: 600px;
  margin: 0 auto 40px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.checklist-item:hover {
  background: rgba(102, 126, 234, 0.05);
}

.check-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-yes {
  background: rgba(34, 197, 94, 0.1);
}

.check-no {
  background: rgba(239, 68, 68, 0.1);
}

.check-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.checklist-verdict {
  text-align: center;
}

.checklist-verdict p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.comparison-section {
  padding: 120px 0;
  background: var(--bg);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-col {
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-col.traditional {
  background: var(--surface);
  border: 1px solid var(--border);
}

.comparison-col.ours {
  background: var(--gradient1);
  border: none;
}

.comparison-header {
  padding: 24px;
  text-align: center;
}

.comparison-col.traditional .comparison-header h3 {
  color: var(--muted);
}

.comparison-col.ours .comparison-header h3 {
  color: #fff;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.comparison-col.traditional .comparison-item {
  border-top-color: var(--border);
  color: var(--muted);
}

.comparison-col.ours .comparison-item {
  color: #fff;
  font-weight: 500;
}

.comparison-col.ours .comparison-item svg {
  flex-shrink: 0;
}

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

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

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

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

.vorteil-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.vorteil-card h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 18px;
}

.vorteil-card p {
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  padding: 120px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

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

.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.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

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

.faq-cta {
  margin-top: 60px;
}

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

.kontakt-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

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

.kontakt-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) blur(4px);
}

.kontakt-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.85);
}

.kontakt-card {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.kontakt-card h2 {
  text-align: center;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 28px;
}

.kontakt-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 36px;
}

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

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

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  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), box-shadow var(--transition);
}

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

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-checkbox {
  display: flex;
  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: 13px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

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

.form-error {
  display: block;
  font-size: 12px;
  color: #f5576c;
  margin-top: 4px;
  min-height: 16px;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #f5576c;
}

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

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

.form-success h3 {
  color: var(--text);
  font-size: 24px;
  margin-bottom: 12px;
}

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

.kontakt-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

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

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

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

.footer-brand {
  max-width: 300px;
}

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

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

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--text);
  background: var(--accent);
}

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

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

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

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

.footer-col ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

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

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

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

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

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

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  transition: color var(--transition);
}

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

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  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);
  border-color: var(--accent);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient1);
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  animation: float-pulse 3s infinite;
}

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

.floating-cta:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5); }
  50% { box-shadow: 0 8px 40px rgba(102, 126, 234, 0.8); }
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

.btn-cookie {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  transition: all var(--transition);
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
}

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

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

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

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

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

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

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

.cookie-modal h3 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 8px;
  padding-right: 36px;
}

.cookie-modal > p {
  color: var(--muted);
  font-size: 14px;
  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;
  border-radius: 50%;
  transition: background var(--transition);
}

.cookie-modal-close:hover {
  background: rgba(255,255,255,0.1);
}

.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: 12px;
  cursor: pointer;
}

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

.cookie-option-title {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

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

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

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

.legal-container h1 {
  margin-bottom: 12px;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-container h2 {
  color: var(--text);
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-container h3 {
  color: var(--text);
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

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

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

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

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

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

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

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-bar {
    justify-content: center;
  }

  .hero-image img {
    max-height: 400px;
    margin: 0 auto;
  }

  .testimonials-masonry {
    columns: 2;
  }

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

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

  .footer-brand {
    max-width: 100%;
  }
}

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

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero-grid {
    gap: 32px;
  }

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

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

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

  .testimonials-masonry {
    columns: 1;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

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

  .timeline {
    padding-left: 50px;
  }

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

  .timeline-dot {
    left: -50px;
    width: 40px;
    height: 40px;
  }

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

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

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

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

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

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .cookie-content {
    flex-direction: column;
  }

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

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

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

  .mentor-photo-wrap {
    width: 180px;
    height: 180px;
   }

  .mentor-section {
    padding: 80px 0;
  }

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

  .section-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .back-to-top {
    bottom: 90px;
  }
}

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

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

  h1 {
    font-size: 26px;
  }

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

  .timeline {
    padding-left: 44px;
  }

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

  .timeline-dot {
    left: -44px;
    width: 34px;
    height: 34px;
  }

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

  .timeline-content {
    padding: 20px 16px;
  }
}