/* ═══════════════════════════════════════════════════
   PELVIPOINT TRIER — Premium CSS · Stahlblau Edition
   ═══════════════════════════════════════════════════ */

:root {
  --primary:       #2B5672;
  --primary-2:     #3a6d8c;
  --primary-light: #5a8aab;
  --primary-pale:  #c8dce8;
  --primary-ultra: #edf4f8;
  --primary-xtra:  #f5f9fb;
  --dark:          #0c1e2a;
  --dark-2:        #1a3040;
  --text:          #1a3040;
  --text-dim:      #4e6e80;
  --text-faint:    #8aaabb;
  --white:         #ffffff;
  --off-white:     #f8fbfc;
  --border:        rgba(43,86,114,0.15);
  --border-strong: rgba(43,86,114,0.35);
  --shadow-sm:     0 2px 12px rgba(43,86,114,0.08);
  --shadow-md:     0 8px 32px rgba(43,86,114,0.12);
  --shadow-lg:     0 20px 60px rgba(43,86,114,0.15);
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-mono:     'Montserrat', sans-serif;
  --radius:        6px;
  --radius-lg:     12px;
  --trans:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; font-family: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 2px; }

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(43,86,114,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--trans), width 0.3s, height 0.3s;
}
.cursor-hover .cursor { transform: translate(-50%,-50%) scale(2.2); background: var(--primary-2); }
.cursor-hover .cursor-follower { width: 56px; height: 56px; border-color: var(--primary); }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--white); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}
.loader.hide { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-img { height: 70px; margin: 0 auto 24px; object-fit: contain; }
.loader-line { width: 220px; height: 2px; background: var(--primary-pale); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.loader-progress { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transition: width 0.05s linear; border-radius: 2px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10000; padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-container {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 64px; object-fit: contain; transition: opacity 0.3s; }
.nav-logo:hover img { opacity: 0.75; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-mobile-only { display: none; }
.nav-link {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim); padding: 0.5rem 0.8rem;
  position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1.5px; background: var(--primary);
  transition: left 0.3s var(--trans), right 0.3s var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { left: 0.8rem; right: 0.8rem; }
.nav-cta {
  background: var(--primary); color: var(--white) !important;
  border-radius: var(--radius); padding: 0.55rem 1.3rem;
  margin-left: 0.5rem; font-weight: 500;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 70% 40%, rgba(43,86,114,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(90,138,171,0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,86,114,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,86,114,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}
.hero-shape {
  position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,86,114,0.08), rgba(90,138,171,0.04) 60%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto;
  padding: 140px 2rem 80px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border-strong);
  border-radius: 100px; padding: 6px 14px 6px 10px;
  font-size: 0.72rem; letter-spacing: 1px;
  color: var(--primary); margin-bottom: 1.5rem;
  background: var(--primary-ultra);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(43,86,114,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(43,86,114,0); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--dark); margin-bottom: 1.5rem;
}
.title-serif { font-style: italic; color: var(--primary); }
.title-normal { color: var(--dark); }
.hero-sub {
  font-size: 1rem; color: var(--text-dim);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif); font-size: 2.6rem;
  font-weight: 300; color: var(--primary); line-height: 1;
}
.stat-plus { font-size: 1.3rem; color: var(--primary-2); vertical-align: super; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.5px; color: var(--text-dim); text-transform: uppercase; line-height: 1.4; margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: linear-gradient(180deg, transparent, var(--primary-light), transparent); }
.hero-tagline { font-size: 0.62rem; color: var(--text-dim); margin-top: 24px; font-weight: 400; letter-spacing: 0.3px; }

.hero-right {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: center; justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%; max-width: 620px;
  border-radius: 24px;
  overflow: visible;
}
.hero-photo {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-ultra));
}
.hero-photo-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-ultra));
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--primary-light);
}
.hero-photo-placeholder svg { width: 64px; height: 64px; opacity: 0.5; }
.hero-photo-placeholder span { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-faint); }
.hero-photo-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2; min-width: 220px;
}
.hero-photo-badge .badge-icon { font-size: 1.4rem; }
.hero-photo-badge strong { display: block; font-size: 0.88rem; color: var(--dark); font-weight: 600; }
.hero-photo-badge small { font-size: 0.75rem; color: var(--text-dim); }
.hero-photo-tag {
  position: absolute; top: 20px; right: -16px;
  background: var(--primary); color: var(--white);
  border-radius: 50px; padding: 8px 18px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 20px rgba(43,86,114,0.4); z-index: 2;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
}
.scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-faint);
}
.scroll-line { width: 1px; height: 44px; background: var(--primary-pale); position: relative; overflow: hidden; }
.scroll-dot {
  position: absolute; width: 100%; height: 30%;
  background: linear-gradient(180deg, transparent, var(--primary));
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: -30%; } 100% { top: 130%; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 0.9rem 1.8rem; border-radius: var(--radius);
  transition: all 0.3s var(--trans); position: relative;
  border: none; outline: none;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(43,86,114,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); font-weight: 500; }
.btn-white:hover { background: var(--primary-ultra); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--primary); padding: 13px 0; overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap; animation: marquee 28s linear infinite; width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track span { font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.sep { color: rgba(255,255,255,0.4) !important; font-size: 0.5rem !important; }

/* ── SECTION COMMON ── */
.section { padding: 110px 0; }
.section-alt { background: var(--primary-xtra); }
.section-primary { background: var(--primary); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: block; font-size: 0.68rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.8rem; font-weight: 500;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--dark); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--primary); }
.section-title-white { color: var(--white) !important; }
.section-title-white em { color: rgba(255,255,255,0.75) !important; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 5rem; }
.section-desc { font-size: 0.92rem; color: var(--text-dim); max-width: 520px; margin: 0 auto; }

/* ── PROBE / PELVISTUHL SECTION ── */
.probe-section {
  padding: 110px 2rem;
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.probe-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-ultra));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.probe-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.probe-image-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--primary-light);
}
.probe-image-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }
.probe-image-placeholder span { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-faint); }
.probe-section-label {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.8rem; font-weight: 500;
}
.probe-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; color: var(--dark); margin-bottom: 1.5rem;
}
.probe-content h2 em { font-style: italic; color: var(--primary); }
.probe-text { font-size: 0.95rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 1.2rem; }
.probe-tagline { font-size: 0.88rem; color: var(--primary); font-weight: 500; margin: 1.5rem 0; font-style: italic; }
.probe-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.probe-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-dim); line-height: 1.6;
}
.probe-list li::before {
  content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.btn-probe {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 1rem 2rem; border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-probe:hover { background: var(--primary-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(43,86,114,0.3); }

/* ── BENEFITS GRID ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.benefit-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0; transition: opacity 0.3s;
}
.benefit-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.benefit-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--dark); margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

/* ── VORHER/NACHHER ── */
.vn-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.vn-card { text-align: center; }
.vn-img-box {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-ultra));
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; overflow: hidden;
}
.vn-img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.vn-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--primary-light); }
.vn-img-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.vn-label-big { font-family: var(--font-serif); font-size: 1.6rem; color: var(--primary); font-weight: 400; margin-bottom: 0.4rem; }
.vn-desc { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

/* ── PRICING ── */
.pricing-container { max-width: 900px; margin: 0 auto; }
.pricing-header-note {
  text-align: center; margin-bottom: 3rem;
  background: var(--primary-ultra); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.2rem 2rem;
}
.pricing-header-note p { font-size: 0.88rem; color: var(--primary); font-weight: 500; }
.pricing-table {
  width: 100%; border-collapse: collapse;
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.pricing-table thead { background: var(--primary); color: var(--white); }
.pricing-table thead th {
  padding: 1rem 1.2rem; font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; text-align: center;
}
.pricing-table thead th:first-child { text-align: left; }
.pricing-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--primary-ultra); }
.pricing-table tbody tr.highlight { background: var(--primary-ultra); }
.pricing-table tbody td {
  padding: 1rem 1.2rem; font-size: 0.92rem; color: var(--text); text-align: center;
}
.pricing-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.pricing-table .price-main {
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary); font-weight: 400;
}
.pricing-badge {
  display: inline-block; font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--primary); color: var(--white);
  padding: 2px 8px; border-radius: 100px; margin-left: 8px; vertical-align: middle;
}
.pricing-cta { text-align: center; margin-top: 3rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--border); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--dark);
  text-align: left; cursor: pointer; transition: color 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--trans), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.4rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; }

/* ── STUDIEN ── */
.studien-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.studie-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.studie-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.studie-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); border: 1px solid var(--border-strong);
  padding: 3px 10px; border-radius: 100px; background: var(--primary-ultra); margin-bottom: 1rem;
}
.studie-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.4; }
.studie-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; }
.studie-link {
  display: inline-block; margin-top: 0.9rem; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-decoration: underline; text-underline-offset: 3px;
}
.studie-link:hover { color: var(--primary-2); }
.studie-links { display: flex; flex-direction: column; gap: 0.5rem; }
.studie-links .studie-link { margin-top: 0; }
.studie-links { margin-top: 0.9rem; }

/* ── BOOKING CTA ── */
.booking-section {
  background: var(--primary); padding: 80px 2rem; text-align: center; position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.booking-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.booking-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: var(--white); margin: 0.8rem 0; line-height: 1.2; }
.booking-title em { font-style: italic; color: rgba(255,255,255,0.75); }
.booking-sub { font-size: 0.85rem; color: rgba(255,255,255,0.75); letter-spacing: 0.5px; margin-bottom: 2.5rem; }
.booking-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-details { margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-item strong { display: block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; font-weight: 600; }
.contact-item span, .contact-item a { font-size: 0.92rem; color: var(--text-dim); line-height: 1.6; }
.contact-item a:hover { color: var(--primary); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-link {
  width: 42px; height: 42px; border: 1.5px solid var(--border-strong);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all 0.3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-ultra); }
.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--dark); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.3s, background 0.3s; resize: vertical;
}
.form-group select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b8296' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 18px;
}
.form-group select:invalid { color: var(--text-faint); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background-color: var(--primary-ultra); }

/* ── HOURS TABLE ── */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.6rem 0; font-size: 0.88rem; color: var(--text-dim); }
.hours-table td:first-child { color: var(--dark); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--primary); }

/* ── FOOTER ── */
.footer {
  background: var(--dark); padding: 60px 2rem 30px;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem;
}
.footer-logo img { height: 50px; object-fit: contain; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--primary-light); }

/* ── REVEAL ANIMATIONS ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}
.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 120px 2rem 60px; }
  .hero-right { order: -1; }
  .probe-section { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .vn-grid { grid-template-columns: repeat(2,1fr); }
  .studien-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; inset: 0; top: 76px; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 2rem; z-index: 9999; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 1rem 0; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
  .nav-link::after { display: none; }
  .nav-mobile-only { display: block; }
  .nav-cta { margin: 1rem 0 0; width: 100%; text-align: center; justify-content: center; }
  .nav-burger { display: flex; }
  .benefits-grid, .vn-grid, .studien-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.8rem; }
  .pricing-table thead th, .pricing-table tbody td { padding: 0.75rem 0.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

/* ── RECHTSSEITEN (Impressum/Datenschutz/AGB) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 60%, var(--primary-light) 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.8); }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 1px; color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--dark); margin: 2.5rem 0 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin: 1.5rem 0 0.7rem; }
.legal-content p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.legal-content a { color: var(--primary); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.legal-content a:hover { border-color: var(--primary); }
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
}
