:root {
  --bg: #f5f0e8;
  --surface: #ede4d4;
  --accent: #2d5016;
  --text: #1a1a1a;
  --muted: #6b5e4c;
  --border: #c9bda8;
  --wood: #8b4513;
  --white: #ffffff;
  --error: #b34040;
  --success: #2d5016;
  --header-height: 72px;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Nunito', sans-serif;
  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.menu-open,
body.modal-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

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

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

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

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

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

.btn-primary:hover {
  background-color: #1e3a0f;
  border-color: #1e3a0f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.pulse-subtle {
  animation: pulse-subtle 2.5s infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(245,240,232,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(245,240,232,0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

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

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}

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

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

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

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.burger {
  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 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.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: 8px;
  width: 100%;
  padding: 0 24px;
}

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

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,80,22,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.hero h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.15;
}

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

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

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

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

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

.trust-strip {
  background: var(--accent);
  color: var(--white);
  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: 'Bitter', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.trust-plus,
.trust-percent {
  font-family: 'Bitter', serif;
  font-size: 28px;
  font-weight: 700;
}

.trust-label {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
}

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

.section-heading {
  margin-bottom: 48px;
  max-width: 600px;
}

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

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

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

.benefit-icon {
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  background: rgba(45,80,22,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

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

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

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

.fit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.fit-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.fit-yes {
  border-left: 4px solid var(--accent);
}

.fit-no {
  border-left: 4px solid var(--error);
}

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

.section-ablauf .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-ablauf .section-label {
  text-align: center;
  display: block;
}

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

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  max-width: 320px;
  transition: all var(--transition);
}

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

.step-number {
  font-family: 'Bitter', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 8px;
  line-height: 1;
}

.step-icon {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  background: rgba(45,80,22,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.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;
}

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

.mentor-text h2 {
  margin-bottom: 4px;
  font-size: 2.4rem;
}

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

.mentor-text blockquote {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.credentials-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.mentor-office-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}

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

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

.section-erfahrungen .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.section-erfahrungen .section-label {
  display: block;
}

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

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

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

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

.testimonial-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  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;
}

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

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

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

.section-faq .section-label {
  display: block;
  text-align: center;
}

.section-faq .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

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

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

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

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

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

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

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

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

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

.kontakt-info h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 2rem;
}

.kontakt-info > p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}

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

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

.kontakt-detail a,
.kontakt-detail span {
  color: var(--white);
  opacity: 0.9;
}

.kontakt-detail a:hover {
  opacity: 1;
  color: var(--white);
}

.kontakt-detail svg {
  opacity: 0.7;
  flex-shrink: 0;
}

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

.kontakt-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.kontakt-trust-item svg {
  stroke: var(--white);
}

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

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

.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;
  flex: 1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.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(45,80,22,0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error);
}

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

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

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

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

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

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

.form-success {
  text-align: center;
  padding: 48px 24px;
}

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

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

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

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

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

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-logo .logo-svg {
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-col address p,
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col address a,
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col address a:hover,
.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 13px;
  text-align: center;
  opacity: 0.5;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  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;
  transition: all var(--transition);
  z-index: 8000;
  box-shadow: var(--shadow-md);
}

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

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

.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8000;
}

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

.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(0,0,0,0.1);
  padding: 20px;
}

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

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

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

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

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

.btn-cookie-accept:hover {
  background: #1e3a0f;
  border-color: #1e3a0f;
}

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

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

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

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

.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(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  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);
  z-index: 1;
  border-radius: 50%;
  transition: all var(--transition);
}

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

.cookie-modal h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

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

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

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 4px;
}

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

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

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

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

.legal-page h1 {
  margin-bottom: 24px;
  font-size: 2.4rem;
}

.legal-page h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

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

.legal-page ul {
  margin-bottom: 12px;
  padding-left: 24px;
  list-style: disc;
}

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.anim-fade-up.animated {
  animation: fadeUp 0.7s ease forwards;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero h1 {
    font-size: 2.4rem;
  }

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

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

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

  .steps-grid {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

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

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .desktop-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

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

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

  .hero h1 {
    font-size: 1.9rem;
  }

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

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

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

  .trust-bar {
    gap: 16px;
  }

  .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;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .mentor-image {
    order: -1;
  }

  .mentor-text h2 {
    font-size: 1.8rem;
  }

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

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

  .kontakt-info h2 {
    font-size: 1.6rem;
  }

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

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

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

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

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

  .btn-cookie {
    width: 100%;
  }

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

  .floating-cta {
    left: 16px;
    bottom: 16px;
  }

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

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

  .legal-page {
    padding: calc(var(--header-height) + 24px) 0 48px;
  }

  .legal-page h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }

  .hero h1 {
    font-size: 1.6rem;
  }

  .benefit-card,
  .step-card,
  .fit-card,
  .testimonial-card {
    padding: 20px;
  }

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

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr;

    gap: 16px;
  }

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

  .trust-plus,
  .trust-percent {
    font-size: 22px;
  }
}