:root {
  --bg: #ffffff;
  --surface: #f8f9fa;
  --accent: #1a1a1a;
  --accent-warm: #1A6B5C;
  --cta: #C4841D;
  --cta-hover: #a86f18;
  --text: #1a1a1a;
  --text-light: #ffffff;
  --muted: #6c757d;
  --border: #e9ecef;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s ease;
  --header-h: 72px;
}

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

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

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

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

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

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

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

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

.btn-cta {
  background-color: var(--cta);
  color: var(--text-light);
}

.btn-cta:hover {
  background-color: var(--cta-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

.btn-white {
  background-color: var(--bg);
  color: var(--cta);
}

.btn-white:hover {
  background-color: var(--surface);
  color: var(--cta-hover);
}

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

@keyframes pulse-subtle {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,132,29,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(196,132,29,0); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 9000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.header-logo {
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
}

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

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  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: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

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

.header-cta {
  font-size: 14px;
  padding: 10px 22px;
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: 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;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 24px;
}

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

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

.mobile-nav-phone {
  color: var(--accent-warm);
  font-weight: 600;
}

.mobile-nav-cta {
  margin-top: 8px;
  width: 100%;
  max-width: 320px;
}

.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,107,92,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,132,29,0.03) 0%, transparent 50%),
    linear-gradient(135deg, transparent 40%, rgba(26,107,92,0.02) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

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

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sep {
  width: 40px;
  height: 3px;
  background-color: var(--cta);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

.hero-more:hover {
  color: var(--accent-warm);
}

.trust-ticker {
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.trust-ticker-item {
  flex-shrink: 0;
}

.partner-logo {
  height: 40px;
  width: auto;
  color: var(--text);
  transition: opacity var(--transition);
}

.partner-logo:hover {
  opacity: 1 !important;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-strip {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: 60px;
}

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

.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

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

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

.trust-card-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

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

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

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

.cta-question {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

.timeline-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

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

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

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}

.timeline-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

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

.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

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

.persona-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.persona-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}

.persona-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.persona-card:hover .persona-img-wrap img {
  transform: scale(1.05);
}

.persona-body {
  padding: 24px;
}

.persona-body h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.persona-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.persona-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-warm);
  padding: 4px 12px;
  background: rgba(26,107,92,0.08);
  border-radius: 20px;
}

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

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

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-warm);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--cta);
  margin-bottom: 16px;
}

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

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

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

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

.review-meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

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

.vorteil-col {
  padding: 20px 12px;
}

.vorteil-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26,107,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent-warm);
  transition: all var(--transition);
}

.vorteil-col:hover .vorteil-icon {
  background: var(--accent-warm);
  color: var(--text-light);
}

.vorteil-col h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.vorteil-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.section-cta-banner {
  padding: 80px 0;
  background: var(--surface);
}

.cta-banner {
  position: relative;
  background: var(--accent-warm);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-content h2 {
  color: var(--text-light);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.mentor-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: center;
}

.mentor-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mentor-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mentor-name {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 8px;
}

.mentor-role {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

.mentor-quote {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  padding-left: 20px;
  border-left: 3px solid var(--accent-warm);
  margin-bottom: 32px;
}

.mentor-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

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

.faq-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
}

.faq-icon {
  color: var(--accent-warm);
  margin-bottom: 16px;
}

.faq-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

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

.section-kontakt {
  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.3) blur(4px);
}

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

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

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

.kontakt-header h2 {
  margin-bottom: 12px;
}

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

.kontakt-form .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;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(26,107,92,0.1);
}

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

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

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

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

.form-checkbox label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}

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

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

.form-success-icon {
  color: var(--accent-warm);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-warm);
}

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

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

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

.kontakt-trust-item svg {
  color: var(--accent-warm);
  flex-shrink: 0;
}

.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

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

.footer-brand {
  color: rgba(255,255,255,0.7);
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

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

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

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.5);
}

.footer-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-list a:hover {
  color: var(--text-light);
}

.footer-legal li {
  display: block;
}

.footer-legal a {
  display: inline-block;
  padding: 2px 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 8000;
}

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

.back-to-top:hover {
  background: var(--accent-warm);
  color: var(--text-light);
  border-color: var(--accent-warm);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
}

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

.floating-cta .btn {
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  padding: 12px 20px;
}

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

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

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

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

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

.cookie-btn {
  min-height: 44px;
  min-width: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid var(--accent);
  transition: all var(--transition);
}

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

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

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

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

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

.cookie-btn-settings:hover {
  background: var(--surface);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  z-index: 100000;
}

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

.cookie-modal-close:hover {
  background: var(--surface);
  color: var(--text);
}

.cookie-modal h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  padding-right: 36px;
}

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

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

.cookie-option-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

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

.cookie-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.cookie-option-text small {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.cookie-save-btn {
  margin-top: 24px;
}

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

.legal-page h1 {
  margin-bottom: 12px;
}

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

.legal-page h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.legal-page ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin: 32px 0;
}

.legal-cta-box p {
  margin-bottom: 16px;
}

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

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

@media (max-width: 1024px) {
  .header-nav {
    gap: 16px;
  }

  .header-phone span {
    display: none;
  }

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

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

  .persona-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .mentor-layout {
    gap: 40px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

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

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 120px 0 72px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

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

  .trust-strip {
    margin-top: -20px;
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-card {
    padding: 20px 16px;
  }

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

  .timeline {
    padding-left: 40px;
  }

  .timeline-line {
    left: 18px;
  }

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

  .timeline-num {
    font-size: 15px;
  }

  .timeline-content {
    padding: 20px;
  }

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

  .persona-card:last-child {
    grid-column: auto;
    max-width: none;
  }

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

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

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

  .mentor-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .mentor-image {
    max-width: 360px;
    margin: 0 auto;
  }

  .mentor-quote {
    text-align: left;
  }

  .mentor-badges {
    align-items: center;
  }

  .cta-banner {
    padding: 48px 24px;
  }

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

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

  .kontakt-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .cookie-banner {
    padding: 16px;
  }

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

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

  .floating-cta .btn span {
    display: none;
  }

  .floating-cta .btn {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
  }

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

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

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

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

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

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

  .trust-card {
    padding: 16px 12px;
  }

  .trust-card-number {
    font-size: 22px;
  }

  .trust-card-label {
    font-size: 11px;
  }

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

  .vorteil-col {
    padding: 16px 8px;
  }

  .vorteil-icon {
    width: 52px;
    height: 52px;
  }

  .vorteil-col h3 {
    font-size: 14px;
  }

  .vorteil-col p {
    font-size: 12px;
  }
}