:root {
  --bg: #faf6f1;
  --surface: #f0e8dc;
  --accent: #8b6f47;
  --text: #2d2017;
  --muted: #7a6b5d;
  --border: #d4c4b0;
  --white: #ffffff;
  --green: #3a7d44;
  --red: #b5453a;
  --shadow-sm: 0 2px 8px rgba(45,32,23,0.06);
  --shadow-md: 0 4px 20px rgba(45,32,23,0.1);
  --shadow-lg: 0 8px 40px rgba(45,32,23,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.menu-open,
body.modal-open {
  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(--text);
}

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

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
  min-width: 100px;
  line-height: 1.2;
}

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

.btn-cta:hover {
  background: #745a3a;
  border-color: #745a3a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.95);
  box-shadow: 0 1px 12px rgba(45,32,23,0.08);
}

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

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

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

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

.nav-link {
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  white-space: nowrap;
}

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

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

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

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

.pulse-btn {
  animation: pulse-shadow 2.5s infinite;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,111,71,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(139,111,71,0); }
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  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;
}

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-nav-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  text-align: center;
}

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

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.mobile-nav-cta {
  width: 80%;
  max-width: 300px;
  margin-top: 12px;
}

.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}

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

.hero-label {
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-text h1 {
  margin-bottom: 20px;
}

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

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

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 6/5;
}

.trust-strip {
  background: var(--text);
  color: var(--bg);
  padding: 48px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-stat svg {
  opacity: 0.7;
}

.trust-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.trust-plus,
.trust-percent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.trust-label {
  font-size: 14px;
  opacity: 0.8;
}

.section-label {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

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

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.audience-col {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border);
}

.audience-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 20px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.audience-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.section-ablauf {
  padding: 100px 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

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

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
}

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

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

.mentor-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: center;
}

.mentor-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

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

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

.mentor-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.credentials-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.section-erfahrungen {
  padding: 100px 0;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

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

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

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

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

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

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

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

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

.kontakt-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: flex-start;
}

.kontakt-info h2 {
  color: var(--bg);
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 36px);
}

.kontakt-info p {
  color: rgba(250,246,241,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.kontakt-detail a,
.kontakt-detail span {
  color: rgba(250,246,241,0.85);
}

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

.kontakt-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontakt-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(250,246,241,0.7);
}

.kontakt-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap:16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.required {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,111,71,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237a6b5d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

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

.form-checkbox label {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox label a {
  text-decoration: underline;
}

.form-error {
  font-size: 13px;
  color: var(--red);
  min-height: 0;
  transition: min-height var(--transition);
}

.btn-submit {
  width: 100%;
  font-size: 17px;
  padding: 16px 28px;
  margin-top: 4px;
}

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

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

.form-success h3 {
  color: var(--green);
  margin-bottom: 10px;
}

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

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

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

.footer-brand .logo-svg {
  width: 160px;
  height: 36px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

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

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

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

.footer-legal nav a {
  font-size: 14px;
  color: var(--muted);
}

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

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

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

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: #745a3a;
  transform: translateY(-2px);
}

.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
}

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

.floating-cta:hover {
  background: #745a3a;
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.cookie-text h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

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

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

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

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

.btn-cookie-accept:hover {
  background: #745a3a;
  border-color: #745a3a;
}

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

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

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

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

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

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

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

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

.cookie-modal h3 {
  margin-bottom: 8px;
  padding-right: 40px;
}

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

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

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

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

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

.btn-cookie-save {
  width: 100%;
  margin-top: 20px;
}

.legal-page {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
}

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

.legal-container h1 {
  margin-bottom: 24px;
}

.legal-container h2 {
  font-size: clamp(20px, 3vw, 28px);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-container h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-container p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-container ul {
  margin-bottom: 14px;
  padding-left: 24px;
}

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

.legal-container a {
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.cookie-table th,
.cookie-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.cookie-table th {
  background: var(--surface);
  font-weight: 600;
}

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

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

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

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

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

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

  .desktop-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .phone-text {
    display: none;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 48px;
  }

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

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

  .hero-text p {
    max-width: 100%;
  }

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

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

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

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

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

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

  .section-heading {
    margin-bottom: 32px;
  }

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

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

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .step-card {
    max-width: 100%;
  }

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

  .mentor-image {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

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

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

  .credentials-grid {
    align-items: center;
  }

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

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

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

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

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

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .btn-cookie {
    width: 100%;
  }

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

  .floating-cta span {
    display: none;
  }

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

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

  .floating-cta {
    bottom: 68px;
    right: 16px;
  }
}

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

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .benefit-card {
    padding: 24px;
  }

  .audience-col {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}