@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-Italic-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url(../fonts/Sora-VariableFont_wght.ttf);
  font-display: swap;
}


:root {
  --bg: #050810;
  --surface: #0c1220;
  --surface-2: #141c2e;
  --text: #e8eef7;
  --text-muted: #7a8ba5;
  --accent: #00d4d4;
  --accent-2: #a090d0;
  --border: #2a3547;
  --font-display: 'Fraunces', serif;
  --font-body: 'Sora', sans-serif;
  --fs-display: clamp(3.5rem, 6vw, 6rem);
  --fs-h1: clamp(2.5rem, 4vw, 4rem);
  --fs-h2: clamp(2rem, 3vw, 3rem);
  --fs-h3: clamp(1.3rem, 1.8vw, 1.6rem);
  --fs-body: 1rem;
  --fs-small: 0.9rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 12px;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover { opacity: 0.8; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.overline::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 212, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.logo-line2 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.header-nav {
  display: flex;
  gap: var(--space-md);
}

.header-nav a {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.ad-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hero {
  padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 212, 212, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(160, 144, 208, 0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: var(--space-md);
  max-width: 500px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
}

.badge i { color: var(--accent); }

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual { position: relative; }

.image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--surface);
}

.image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-md);
  z-index: 1;
  pointer-events: none;
}

.image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.floating-spec {
  position: absolute;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
}

.spec-1 { top: 8%; left: -8%; }
.spec-2 { bottom: 20%; right: -5%; }
.spec-3 { top: 45%; left: -15%; }

.reflex-line {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.3;
  filter: blur(1px);
  z-index: 0;
}

.stats {
  padding: var(--space-lg) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-plus {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.philosophie {
  padding: var(--space-xl) 0;
  background: var(--bg);
  position: relative;
}

.philo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.philo-content h2 {
  margin-bottom: var(--space-md);
}

.philo-content p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.philo-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.philo-feat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.philo-feat i {
  font-size: 1.8rem;
  color: var(--accent);
}

.philo-feat strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

.philo-feat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.philo-visual { position: relative; }

.philo-visual .image-wrapper img { height: 500px; }

.philo-quote {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.philo-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.philo-quote span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prozess {
  padding: var(--space-xl) 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.prozess::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
  z-index: 0;
}

.prozess .container { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.prozess-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--surface-2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-marker span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

.timeline-marker::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-item:last-child .timeline-marker::after { display: none; }

.timeline-content {
  background: var(--surface-2);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.timeline-content h3 {
  margin-bottom: var(--space-sm);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  padding: 6px 14px;
  background: rgba(0, 212, 212, 0.1);
  border: 1px solid rgba(0, 212, 212, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent);
}

.technologie {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.tech-card {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.tech-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 212, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.tech-icon i {
  font-size: 1.5rem;
  color: var(--accent);
}

.tech-card h3 {
  margin-bottom: var(--space-sm);
}

.tech-spec {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.spec-key { color: var(--text-muted); }
.spec-val { color: var(--accent); font-weight: 500; }

.transformation {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.transform-showcase {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.transform-main { position: relative; }

.transform-main .image-wrapper img {
  transition: opacity 0.5s ease;
}

.transform-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bg);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  z-index: 2;
}

.transform-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.transform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.transform-btn:hover {
  border-color: var(--accent);
}

.transform-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.transform-info {
  background: var(--surface-2);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.transform-info h3 {
  margin-bottom: var(--space-sm);
}

.transform-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.transform-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vergleich {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.vergleich-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.vergleich-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface-2);
  padding: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.vergleich-header .vergleich-col:first-child { visibility: hidden; }

.vergleich-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.vergleich-col i {
  font-size: 1.5rem;
  color: var(--accent);
}

.vergleich-col h3 {
  font-size: 1rem;
}

.vergleich-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.vergleich-row:last-child { border-bottom: none; }

.vergleich-row .vergleich-col {
  flex-direction: row;
  justify-content: center;
}

.check {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.cross {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.packages {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.packages-col h2 { margin-bottom: var(--space-md); }

.package-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover { border-color: var(--accent); }

.package-card.featured {
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-sm);
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
}

.pkg-list {
  list-style: none;
  margin-top: var(--space-md);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

.pkg-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.pkg-list i { color: var(--accent); }

.faq-col h3 { margin-bottom: var(--space-md); }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-q i {
  transition: transform 0.3s ease;
  font-size: 1.3rem;
  color: var(--accent);
}

.faq-item.active .faq-q i { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-a {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.nachsorge {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.nachsorge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.nachsorge-card {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.nachsorge-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.nachsorge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  position: absolute;
  top: 10px;
  right: 15px;
  line-height: 1;
  z-index: 0;
}

.nachsorge-card h3 {
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.booking {
  padding: var(--space-xl) 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.booking-info h2 { margin-bottom: var(--space-md); }

.info-card {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.info-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.info-card p { margin: 0; color: var(--text); }

.booking-form {
  background: var(--bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: var(--space-md); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: #030508;
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.footer-legal p { margin-bottom: 4px; font-size: 0.9rem; color: var(--text); }
.footer-legal strong { font-weight: 500; }

.update-date {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-disclaimer {
  margin-top: var(--space-md);
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-page {
  padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
  min-height: 80vh;
  background: var(--bg);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  margin-bottom: var(--space-sm);
  color: var(--accent);
  font-size: 56px;
}

.legal-content .update-date {
  margin-bottom: var(--space-lg);
  display: block;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-sm);
}

.legal-content p, .legal-content li {
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.thanks-page {
  padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  background: var(--surface-2);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.thanks-logo {
  margin-bottom: var(--space-md);
}

.thanks-content h1 {
  margin-bottom: var(--space-sm);
}

.thanks-content > p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.next-steps {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.next-steps h2 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.step-card {
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 60px;
}

.step-card .step-num {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--border);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step-card p { margin: 0; font-size: 0.9rem; }

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .booking-grid,
  .philo-grid,
  .transform-showcase {
    grid-template-columns: 1fr;
  }
  
  .hero-visual { order: -1; }
  .image-wrapper img { height: 400px; }
  
  .tech-grid,
  .nachsorge-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vergleich-header,
  .vergleich-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .spec-1 { left: 5%; }
  .spec-2 { right: 5%; }
  .spec-3 { left: 5%; }
  
  .footer-top { flex-direction: column; gap: var(--space-md); }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body {
    word-break: break-word;
  }
  header .logo-text {
    display: none;
  }
  .legal-content, .thanks-content {
    padding: var(--space-sm);
  }
    .legal-content h1 {
      font-size: 36px;
    }
    .timeline-item {
      grid-template-columns: 1fr;
    }
        .booking-form {
          padding: var(--space-md);
        }
  .header-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  
  .header-nav.active { transform: translateY(0); }
  
  .burger { display: flex; }
  
  .hero { padding-top: 120px; }
  .hero-badges { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .tech-grid,
  .nachsorge-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .vergleich-header,
  .vergleich-row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  
  .vergleich-header .vergleich-col:first-child {
    visibility: visible;
    font-weight: 500;
  }
  
  .vergleich-row .vergleich-col:first-child {
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
  }
  
  .floating-spec { display: none; }
}