:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --accent: #c9a84c;
  --text: #f5f5f5;
  --muted: #888888;
  --border: #2a2a2a;
  --accent-hover: #dbbf6a;
  --cta-orange: #D4812A;
  --cta-orange-hover: #e69535;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --transition-slow: 0.8s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  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(--cta-orange));
  z-index: 100001;
  transition: width 0.1s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

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

.header-top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}

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

.header-main {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

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

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

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
  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-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  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;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.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: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

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

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: var(--accent);
  color: var(--bg);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 16px;
  transition: all var(--transition);
}

.mobile-menu-cta:hover {
  background: var(--accent-hover);
  color: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--cta-orange-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 129, 42, 0.3);
}

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

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

.btn-full {
  width: 100%;
}

.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-section h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

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

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

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

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

.hero-image {
  position: relative;
}

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

.trust-strip {
  padding: 40px 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: 32px;
  flex-wrap: wrap;
}

.trust-stat {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}

.trust-stat strong {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

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

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

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

.section-header h2 {
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-question {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 16px;
}

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

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.timeline-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 8px;
}

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

.timeline-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

.timeline-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 48px;
  flex-shrink: 0;
  position: relative;
}

.timeline-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

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

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

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

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

.persona-content {
  padding: 28px;
}

.persona-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

.persona-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

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

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

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

.mentor-text .section-label {
  text-align: left;
}

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

.mentor-title {
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

.review-card:hover {
  transform: translateY(-4px);
}

.review-card-accent {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
}

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

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

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

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

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

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

.section-comparison {
  padding: 100px 0;
  background: var(--surface);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-col {
  padding: 40px;
}

.comparison-col h3 {
  font-size: 22px;
  margin-bottom: 28px;
  text-align: center;
}

.comparison-col ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
}

.comparison-col ul li:last-child {
  border-bottom: none;
}

.comparison-traditional {
  background: rgba(40, 40, 40, 0.5);
  color: var(--muted);
}

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

.comparison-ours {
  background: rgba(201, 168, 76, 0.08);
  border-left: 1px solid var(--border);
}

.comparison-ours h3 {
  color: var(--accent);
}

.comparison-ours ul li {
  color: var(--text);
  font-weight: 500;
}

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

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

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

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

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

.vorteil-text h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

.vorteil-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

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

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

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

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

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

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

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

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

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

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

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

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

.kontakt-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10,10,10,0.8) 50%, var(--bg) 100%);
}

.section-kontakt .container {
  position: relative;
  z-index: 1;
}

.kontakt-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.kontakt-header {
  text-align: center;
  margin-bottom: 32px;
}

.kontakt-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

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

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

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

.form-row .form-group {
  margin-bottom: 0;
}

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

.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: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color var(--transition);
  min-height: 48px;
}

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

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

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

.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.6;
  cursor: pointer;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

.kontakt-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

.site-footer {
  background: var(--surface);
  position: relative;
}

.footer-accent-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-inner {
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.footer-logo .logo-svg {
  height: 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-cookie-btn {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
  padding: 0;
}

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

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}

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

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

.footer-sep {
  color: var(--border);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
}

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

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

.back-to-top:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.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 40px rgba(0, 0, 0, 0.5);
}

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

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

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

.btn-cookie-accept,
.btn-cookie-settings,
.btn-cookie-reject {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

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

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

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

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

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

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

.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;
  width: calc(100% - 32px);
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

.cookie-modal-close:hover {
  color: var(--accent);
}

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

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

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

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

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

.cookie-option label input {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-option p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  padding-left: 28px;
}

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

.legal-page h1 {
  margin-bottom: 32px;
  font-size: 40px;
}

.legal-page h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  color: var(--accent);
}

.legal-page h3 {
  font-size: 20px;
  margin: 28px 0 12px;
}

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

.legal-page ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.legal-page ul li {
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .header-top-bar {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-section {
    padding: 60px 0;
  }

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

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

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

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

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

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

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

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

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .timeline-line {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .timeline-line::after {
    right: auto;
    bottom: -4px;
    top: auto;
    left: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--accent);
    border-bottom: none;
  }

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

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

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

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

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

  .comparison-ours {
    border-left: none;
    border-top: 1px solid var(--border);
  }

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

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

  .kontakt-header h2 {
    font-size: 26px;
  }

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

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

  .cookie-buttons {
    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-banner {
    padding: 16px;
  }

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

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

  .footer-contact {
    flex-direction: column;
    gap: 4px;
  }

  .footer-sep {
    display: none;
  }

  .footer-links {
    gap: 12px;
  }

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

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

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

  .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container {
    padding: 0 16px;
  }

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

  .persona-card img {
    height: 200px;
  }

  .comparison-col {
    padding: 28px 20px;
  }
}