:root {
  --bg: #faf8f5;
  --surface: #f0ebe3;
  --accent: #1b2838;
  --text: #1b2838;
  --muted: #5a6577;
  --border: #d4c9b8;
  --burgundy: #8b0000;
  --gold: #d4af37;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(27,40,56,0.06);
  --shadow-md: 0 4px 20px rgba(27,40,56,0.1);
  --shadow-lg: 0 8px 40px rgba(27,40,56,0.14);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'EB Garamond', serif;
  --font-body: 'Crimson Text', serif;
}

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

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

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

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 100px 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.ornamental-divider {
  margin-top: 16px;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  z-index: 100001;
  transition: width 0.1s linear;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

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

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

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

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

.btn-cta:hover {
  background: #a00000;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-full {
  width: 100%;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  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: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

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

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 0;
  text-align: center;
  text-decoration: none;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.mobile-nav-phone {
  font-size: 18px;
  color: var(--burgundy);
}

.mobile-nav-cta {
  margin-top: 12px;
  width: 240px;
}

.hero {
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  width: 55%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.hero-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 60px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
}

.scroll-arrow {
  animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

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

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

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(212,175,55,0.15);
}

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

.trust-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin: 12px 0 4px;
}

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

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

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

.mentor-image-wrap {
  position: relative;
}

.mentor-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.mentor-content {
  padding: 20px 0;
}

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

.mentor-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
  padding: 24px 0;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}

.mentor-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

.mentor-office-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  object-fit: cover;
}

.comparison-section {
  background: var(--bg);
}

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

.comparison-col {
  padding: 0;
}

.comparison-header {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  padding: 24px 28px;
  text-align: center;
}

.comparison-col--old .comparison-header {
  background: #e8e4de;
  color: var(--muted);
}

.comparison-col--new .comparison-header {
  background: var(--accent);
  color: var(--gold);
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.comparison-col--old .comparison-item {
  background: var(--white);
  color: var(--muted);
}

.comparison-col--new .comparison-item {
  background: #1e2d3f;
  color: var(--white);
  font-weight: 600;
  border-bottom-color: rgba(255,255,255,0.1);
}

.comparison-col--old .comparison-item:last-child,
.comparison-col--new .comparison-item:last-child {
  border-bottom: none;
}

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

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

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

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

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

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

.timeline-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

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

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

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

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

.vorteile-section {
  background: var(--bg);
}

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

.vorteil-card {
  text-align: center;
  padding: 28px 16px;
}

.vorteil-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.vorteil-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

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

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

.checklist {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.checklist-item:hover {
  transform: translateX(4px);
}

.checklist-indicator {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-indicator--yes {
  background: rgba(45,106,46,0.1);
}

.checklist-indicator--no {
  background: rgba(139,0,0,0.1);
}

.checklist-yes span {
  color: var(--accent);
}

.checklist-no span {
  color: var(--muted);
  text-decoration: line-through;
}

.checklist-verdict {
  text-align: center;
  margin-top: 40px;
}

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

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

.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  position: relative;
}

.quote-mark {
  margin-bottom: 16px;
}

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

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

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

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

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

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

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

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

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

.faq-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.faq-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.3;
}

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

.kontakt-section {
  background: var(--accent);
  color: var(--white);
}

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

.kontakt-title {
  color: var(--white);
  font-size: 36px;
}

.kontakt-text {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

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

.kontakt-detail a,
.kontakt-detail span {
  color: rgba(255,255,255,0.9);
}

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

.kontakt-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
}

.kontakt-office-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.kontakt-form-wrap {
  position: relative;
}

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

.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-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235a6577'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

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

.form-group--checkbox label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  cursor: pointer;
}

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

.form-error {
  display: block;
  font-size: 13px;
  color: var(--burgundy);
  margin-top: 4px;
  min-height: 18px;
}

.form-group--checkbox .form-error {
  width: 100%;
}

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

.form-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.site-footer {
  background: #111820;
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
}

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

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

.footer-logo {
  display: inline-flex;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}

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

.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--gold);
}

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

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

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

.footer-col li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

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

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

.footer-col a:hover {
  color: var(--gold);
}

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

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

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

.cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
  min-height: 44px;
  min-width: 44px;
}

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

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  padding: 20px;
}

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

.cookie-banner-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

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

.btn-cookie {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  min-height: 48px;
  min-width: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-cookie-accept:hover {
  background: #e0bf42;
}

.btn-cookie-settings {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

.btn-cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie-reject:hover {
  border-color: var(--burgundy);
  color: #ff6b6b;
}

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

.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;
  border-radius: 50%;
  transition: all var(--transition);
  min-width: 44px;
  min-height: 44px;
}

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

.cookie-modal h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

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

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border);
}

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

.cookie-option div {
  flex: 1;
}

.cookie-option strong {
  display: block;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 4px;
}

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

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

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

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

.legal-container h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.2;
}

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

.legal-container h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-container h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-container p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal-container li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--text);
}

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

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

@media (max-width: 1024px) {
  .vorteile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .header-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-image-wrap {
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }

  .hero-image {
    border-radius: 0;
  }

  .hero-content {
    width: 100%;
    padding: 40px 16px 60px;
  }

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

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

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

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

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

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

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

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

  .comparison-col--old {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .comparison-col--new {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .timeline {
    padding-left: 48px;
  }

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

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

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

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

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

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

  .kontakt-form {
    padding: 24px;
  }

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

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

  .btn-lg {
    width: 100%;
  }

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

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

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

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

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

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

  .cookie-banner {
    padding: 16px;
  }

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

  .testimonial-card {
    flex: 0 0 calc(85% - 12px);
    min-width: 260px;
  }

  .carousel-btn {
    display: none;
  }

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

  .legal-container h2 {
    font-size: 22px;
  }

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

  .kontakt-office-img {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

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

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

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

  .checklist-item {
    padding: 16px;
    font-size: 15px;
  }

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