/*
Theme Name: Hairsystems Theme
Theme URI: https://syshair.at
Author: syshair Hairsystems Vienna
Author URI: https://syshair.at
Description: Premium WordPress-Theme fuer syshair - moderne, responsive Multi-Page Website fuer Wiener Haarsystem-Studio. Editorial-Design mit Schwarz/Orange-Brand, 5 vorbereitete Page-Templates (Home, Haarsysteme, Ergebnisse, Preise, Kontakt).
Version: 3.0.150
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: syshair
Tags: custom-logo, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* Schriften werden performant per <link> im <head> geladen — siehe functions.php (syshair_scripts) */

:root {
  --black: #0D0C0A;        /* Atelier Ink — W41 Brand */
  --ink: #0D0C0A;
  --bone: #FAF6EF;         /* Bone Cream — Brand Hintergrund */
  --sand: #F5EFE1;         /* Warm Sand — Sektion subtil */
  --grey-900: #262626;
  --grey-700: #404040;
  --grey-500: #737373;
  --grey-400: #a3a3a3;
  --grey-200: #e7e7e7;
  --grey-100: #f4f4f4;
  --grey-50: #fafafa;
  --white: #ffffff;
  --orange: #EF7D00;       /* Vienna Orange — Pantone 158C */
  --orange-dark: #d56e00;
  --orange-light: #fef0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.875rem); }
h4 { font-size: 1.25rem; }
p { color: var(--grey-700); font-size: 1.0625rem; }

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 1rem;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }

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

/* ==================== NAVIGATION ==================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(6px);
  -webkit-backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--grey-200);
  z-index: 100;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.nav-logo .dot {
  width: 0.16em;
  height: 0.16em;
  background: var(--orange);
  display: inline-block;
  margin-bottom: 0.04em;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--grey-700);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a {
  color: var(--black);
}
.nav-links li.current-menu-item > a::after,
.nav-links li.current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
}
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: 0.3s;
}
@media (max-width: 880px) {
  .nav-links,
  .nav-inner > .nav-cta { display: none; }
  .nav-toggle { display: block; }
}
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 16px 32px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul {
  list-style: none;
  padding: 0;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}
.nav-mobile .nav-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--white) !important;
  border: none;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--grey-900); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 88vh;
  background: #fff;
  color: var(--black);
  overflow: hidden;
  padding: 60px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(88vh - 120px);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; padding: 60px 0 40px; }
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-image-col {
  position: relative;
  z-index: 2;
}
.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #f5e8df;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.15) 100%);
}
.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
  z-index: 3;
}
.hero-image-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.hero-image-badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--grey-700);
  line-height: 1.3;
}
.hero-image-badge-text strong {
  display: block;
  color: var(--black);
  font-size: 0.9375rem;
}
.hero h1 {
  color: var(--black);
  font-size: clamp(2.25rem, 5.2vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero h1 .accent { color: var(--orange); }
.hero-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--orange);
  margin: 12px 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--grey-700);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 540px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .eyebrow { color: var(--orange); }

/* Decorative dots im Hero */
.hero-decoration {
  position: absolute;
  top: 80px;
  right: 40%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--orange) 1px, transparent 1px) 0 0 / 12px 12px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 980px) { .hero-decoration { display: none; } }

.hero-page {
  min-height: 65vh;
  padding: 60px 0 60px;
}
.hero-page .hero-grid {
  min-height: calc(65vh - 120px);
}
@media (max-width: 980px) {
  .hero-page { min-height: auto; }
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left, rgba(239,125,0,0.15) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stats-grid.stats-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat-number .accent { color: var(--orange); }
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==================== FEATURE GRID ==================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
}
.feature {
  padding: 36px 32px;
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  background: var(--white);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--grey-700);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}
.feature h3 { margin-bottom: 12px; font-size: 1.375rem; }
.feature p { color: var(--grey-700); font-size: 0.9375rem; line-height: 1.6; }

/* ==================== IMAGE WITH TEXT ==================== */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-text.reverse { direction: rtl; }
.image-text.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .image-text { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .image-text.reverse { direction: ltr; }
}
.image-text-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.image-text h2 { margin-bottom: 24px; }
.image-text p { margin-bottom: 18px; }

/* ==================== GALLERY ==================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-card:hover { transform: scale(1.02); }
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}
.gallery-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--white);
}
.gallery-card-info .label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-card-info h4 { color: var(--white); font-size: 1.125rem; margin-bottom: 4px; }
.gallery-card-info p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin: 0; }
/* Vorher / Nachher Galerie (Querformat-Bilder) */
.vn-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 700px) { .vn-gallery { grid-template-columns: 1fr; gap: 16px; } }
.vn-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--grey-100, #f5f5f5);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.vn-card img {
  width: 100%;
  height: auto;
  display: block;
}
.vn-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 0.875rem;
}
.vn-cap-situation { color: var(--grey-800, #2a2a2a); font-weight: 500; }
.vn-cap-system {
  color: var(--accent, #EF7D00);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials { background: var(--grey-50); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--grey-200);
}
.testi-stars { color: var(--orange); margin-bottom: 16px; font-size: 1.125rem; }
.testi-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-200);
  background-size: cover;
  background-position: center;
}
.testi-avatar-initial {
  background: linear-gradient(135deg, var(--orange, #EF7D00) 0%, var(--orange-dark, #D56E00) 100%);
  background-image: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1;
}
.testi-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
}
.testi-role { color: var(--grey-500); font-size: 0.8125rem; }

/* ==================== FAQ ==================== */
.faq { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--black);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 24px; color: var(--grey-700); line-height: 1.7; }
.faq-answer-inner a { color: var(--orange); font-weight: 600; }

/* ==================== PRICING ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.price-card.featured { border: 2px solid var(--orange); }
.price-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.375rem; margin-bottom: 8px; }
.price-card .price-tagline { color: var(--grey-500); font-size: 0.9375rem; margin-bottom: 24px; }
.price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 4px;
}
.price-amount .currency { font-size: 1.25rem; vertical-align: top; margin-right: 4px; color: var(--grey-500); }
.price-period { color: var(--grey-500); font-size: 0.875rem; margin-bottom: 32px; }
.price-features { list-style: none; padding: 0; margin: 0 0 32px; }
.price-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}
.price-features li:last-child { border: none; }
.price-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; }

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239,125,0,0.15) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 36px; font-size: 1.0625rem; }
.cta-banner .btn-group {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==================== STEPS ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 28px 24px; }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step h4 { font-size: 1.125rem; margin-bottom: 8px; }
.step p { font-size: 0.9375rem; color: var(--grey-700); margin: 0; }

/* ==================== TIMELINE (für Preise-Seite) ==================== */
.timeline {
  max-width: 880px;
  margin: 60px auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grey-200);
}
@media (max-width: 600px) { .timeline::before { left: 23px; } }
.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 48px 1fr; gap: 18px; }
}
.timeline-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  z-index: 1;
}
@media (max-width: 600px) {
  .timeline-num { width: 48px; height: 48px; font-size: 1rem; }
}
.timeline-content { padding-top: 12px; }
.timeline-content .duration {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.timeline-content p { font-size: 1rem; line-height: 1.65; }
.timeline-content ul { padding-left: 20px; margin-top: 12px; color: var(--grey-700); font-size: 1rem; line-height: 1.7; }
.timeline-content ul li { margin-bottom: 6px; }

/* ==================== STORY (Vorher/Nachher) ==================== */
.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--grey-200);
}
.story:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.story.reverse { grid-template-columns: 1fr 1.2fr; }
@media (max-width: 880px) {
  .story, .story.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 64px;
    margin-bottom: 64px;
  }
}
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.story-image {
  aspect-ratio: 3/4;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.story-image-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-image-label.after { background: var(--orange); color: var(--white); }
.story-content .meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.story-content .meta-item {
  font-size: 0.8125rem;
  color: var(--grey-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.story-content .meta-item strong {
  color: var(--black);
  margin-left: 6px;
  font-weight: 600;
}
.story-content h3 { font-size: 2rem; margin-bottom: 18px; }
.story-content .quote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--grey-900);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.6;
}
.story-content p { margin-bottom: 14px; }

/* ==================== FORMS ==================== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 560px) { .contact-form { padding: 28px 20px; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--grey-900);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ==================== CONTACT CARDS ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-card p { color: var(--grey-700); margin-bottom: 20px; font-size: 0.9375rem; }
.contact-card a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--black);
  display: inline-block;
}
.contact-card a:hover { color: var(--orange); }

/* ==================== INFO BLOCKS (Kontakt-Seite) ==================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 60px;
}
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
.info-block {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.info-block h3 { font-size: 1.25rem; margin-bottom: 16px; }
.info-list { list-style: none; padding: 0; }
.info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.9375rem;
  color: var(--grey-700);
}
.info-list li:last-child { border: none; }
.info-list li strong { color: var(--black); font-weight: 500; }
.map-block {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
}
.map-iframe {
  width: 100%;
  height: 320px;
  border: none;
  background: var(--grey-100);
}
.map-info { padding: 24px 28px; }
.map-info h3 { font-size: 1.125rem; margin-bottom: 8px; }
.map-info p { color: var(--grey-700); font-size: 0.9375rem; margin: 0; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--black);
  color: var(--grey-400);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { max-width: 360px; }
.footer-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.footer-logo .dot {
  width: 0.16em;
  height: 0.16em;
  background: var(--orange);
  display: inline-block;
  margin-bottom: 0.04em;
}
.footer-brand p { color: var(--grey-400); font-size: 0.9375rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--grey-400);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--grey-500);
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ==================== FILTERS ==================== */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 0;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ==================== UTILS ==================== */
.text-center { text-align: center; }
.section-header {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
}
.section-header.left { margin: 0 0 16px; text-align: left; max-width: 720px; }
.divider {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 24px;
}
.divider.left { margin: 0 0 24px; }

/* WordPress-spezifisch */
.alignwide { width: 100%; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute !important;
}

/* ==================== KONTAKT-PAGE ==================== */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .contact-options { grid-template-columns: 1fr; }
}
.contact-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
  border-color: var(--orange);
}
.contact-card-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.contact-card-primary:hover {
  background: var(--black);
  border-color: var(--black);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.contact-card-primary .contact-card-icon {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.contact-card-primary:hover .contact-card-icon {
  background: rgba(255,255,255,0.15);
}
.contact-card h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.contact-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--grey-700);
}
.contact-card-primary p { color: rgba(255,255,255,0.75); }
.contact-card-cta {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--orange);
}
.contact-card-primary .contact-card-cta { color: var(--white); }
.contact-card-primary:hover .contact-card-cta { color: var(--white); }

/* ==================== KONTAKT-INFO ==================== */
.contact-info-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-200);
}
.contact-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-info-block h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.contact-info-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--grey-200); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 10px 0;
  font-size: 0.9375rem;
}
.hours-table td:first-child {
  color: var(--grey-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--black);
  font-weight: 500;
}

/* ==================== FOOTER HOURS ==================== */
.footer-hours {
  list-style: none;
  padding: 0;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px !important;
  font-size: 0.875rem;
  color: var(--grey-400);
}
.footer-hours li span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-right: 16px;
}

/* ==================== FOOTER LEGAL ==================== */
.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--grey-500);
  font-size: 0.875rem;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--orange); }

/* ==================== ENTRY-CONTENT (Block-Editor) ==================== */
.entry-content {
  max-width: 760px;
  margin: 0 auto;
}
.entry-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 1.5em 0 0.6em;
}
.entry-content h3 {
  font-size: 1.5rem;
  margin: 1.2em 0 0.5em;
}
.entry-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1em;
  color: var(--grey-800);
}
.entry-content ul, .entry-content ol {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 1em 1.5em;
  color: var(--grey-800);
}
.entry-content li { margin-bottom: 0.5em; }
.entry-content a { color: var(--orange); }
.entry-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--grey-700);
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5em 0;
}

/* ==================== STORIES (Ergebnisse-Page) ==================== */
.story h3 {
  letter-spacing: -0.02em;
}

/* ==================== IMAGE-TEXT REVERSE ==================== */
.image-text-reverse {
  direction: rtl;
}
.image-text-reverse > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .image-text-reverse {
    direction: ltr;
  }
}

/* ==================== TRUST BAR (oberhalb Header) ==================== */
.trust-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.trust-item:not(:last-child)::after {
  content: '·';
  margin-left: 32px;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 760px) {
  .trust-bar { padding: 8px 0; font-size: 0.75rem; }
  .trust-bar-inner { gap: 14px; }
  .trust-item:not(:last-child)::after { margin-left: 14px; }
}

/* ==================== HERO FINANCE ==================== */
.hero-finance {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--grey-700);
  letter-spacing: 0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-finance::before {
  content: '✓ ';
  color: var(--orange);
  font-weight: 700;
}

/* ==================== TRUST PILLARS ==================== */
.trust-pillars {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--grey-200);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar {
  text-align: center;
  padding: 20px 16px;
}
.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.pillar h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pillar p {
  font-size: 0.9375rem;
  color: var(--grey-700);
  line-height: 1.55;
  margin: 0;
}

/* ==================== SECTION DARK ==================== */
.section-dark {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(239,125,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.section-header-light h2 {
  color: var(--white);
}
.section-header-light .eyebrow {
  color: var(--orange);
}

/* ==================== PROMISE GRID ==================== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; }
}
.promise {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.3s;
}
.promise:hover {
  background: rgba(239,125,0,0.06);
  border-color: var(--orange);
}
.promise-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.promise h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.promise p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ==================== MATERIAL GRID ==================== */
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .material-grid { grid-template-columns: 1fr; }
}
.material-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
  border-color: var(--orange);
}
.material-featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.material-featured h3 { color: var(--white); }
.material-featured .material-spec { color: var(--orange); }
.material-featured ul li { color: rgba(255,255,255,0.85); }
.material-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.material-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.material-spec {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--grey-700);
  margin-bottom: 24px;
  font-weight: 500;
}
.material-card ul {
  list-style: none;
  padding: 0;
}
.material-card ul li {
  padding: 10px 0 10px 28px;
  font-size: 0.9375rem;
  color: var(--grey-800);
  line-height: 1.5;
  position: relative;
  border-top: 1px solid var(--grey-200);
}
.material-featured ul li {
  border-top-color: rgba(255,255,255,0.1);
}
.material-card ul li:first-child { border-top: none; }
.material-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--orange);
  font-weight: 700;
}
.material-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ==================== GUARANTEE SECTION ==================== */
.section-guarantee {
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff 100%);
  text-align: center;
}
.guarantee-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  margin-bottom: 24px;
  box-shadow: 0 10px 30px -10px rgba(239,125,0,0.3);
}
.guarantee-inner .eyebrow { color: var(--orange); }
.guarantee-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}
.guarantee-inner p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--grey-800);
}

/* ==================== FAQ ==================== */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 10px 30px -15px rgba(239,125,0,0.2);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item summary > span:first-child { flex: 1; }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 24px 24px;
  border-top: 1px solid var(--grey-200);
  padding-top: 20px;
}
.faq-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--grey-800);
  margin-bottom: 12px;
}
.faq-content p:last-child { margin-bottom: 0; }
.faq-content ul {
  margin: 12px 0;
  padding-left: 20px;
}
.faq-content ul li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--grey-800);
  margin-bottom: 6px;
}
.faq-content strong { color: var(--black); }

/* ==================== LOGO IMAGE ==================== */
.nav-logo-img {
  display: flex;
  align-items: center;
  height: 38px;
  flex-shrink: 0;
}
.nav-logo-img img {
  height: 100%;
  width: auto;
  display: block;
}
.footer-logo-img {
  display: inline-flex;
  align-items: center;
  height: 56px;
  margin-bottom: 20px;
}
.footer-logo-img img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 760px) {
  .nav-logo-img { height: 32px; }
}

/* ==================== LEGAL PAGES (Impressum / Datenschutz) ==================== */
.hero-grid-single {
  grid-template-columns: 1fr !important;
  max-width: 820px;
}
.hero-legal { min-height: 40vh; }
.hero-legal .hero-grid { min-height: calc(40vh - 120px); }
@media (max-width: 980px) {
  .hero-legal { min-height: auto; }
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey-200);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--black);
}
.legal-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--black);
}
.legal-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-800);
  margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  margin: 12px 0 12px 0;
  padding-left: 20px;
}
.legal-block ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-800);
  margin-bottom: 6px;
}
.legal-block strong { color: var(--black); }
.legal-block a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-block a:hover { color: var(--orange-dark); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.legal-table tr {
  border-bottom: 1px solid var(--grey-200);
}
.legal-table tr:last-child { border-bottom: none; }
.legal-table td {
  padding: 12px 0;
  font-size: 0.9375rem;
  vertical-align: top;
}
.legal-table td:first-child {
  width: 220px;
  color: var(--grey-700);
  font-weight: 500;
}
.legal-table td:last-child {
  color: var(--black);
}
@media (max-width: 600px) {
  .legal-table td:first-child { width: 160px; }
}
.legal-meta {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--grey-50);
  border-radius: 8px;
  border-bottom: none !important;
}
.legal-meta p {
  font-size: 0.875rem;
  color: var(--grey-700);
  margin: 0;
}

/* ==================== HAARVERLUST-TEST (Norwood) ==================== */
.section-test {
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .test-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .test-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.test-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 14px;
  padding: 16px 12px 14px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.test-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(239,125,0,0.25);
}
.test-card.active {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--orange-light), 0 14px 30px -10px rgba(239,125,0,0.3);
}
.test-card-visual {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grey-100);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
/* Simpler "Kopf" mit Haar-Indicator */
.test-card-visual::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #f5d4b3;
}
/* Haar-Indikator je Stufe */
.test-card-visual[data-stage-visual="1"]::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 12px;
  right: 12px;
  height: 18px;
  background: #2b1d11;
  border-radius: 50% 50% 30% 30%;
}
.test-card-visual[data-stage-visual="2"]::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 18px;
  right: 18px;
  height: 12px;
  background: #2b1d11;
  border-radius: 50% 50% 30% 30%;
}
.test-card-visual[data-stage-visual="3"]::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  height: 8px;
  background: #2b1d11;
  border-radius: 30%;
  opacity: 0.6;
}
.test-card-visual[data-stage-visual="4"]::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 30px;
  background: #2b1d11;
  border-radius: 50% 50% 0 0;
  opacity: 0.4;
}
.test-card-visual[data-stage-visual="5"]::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  right: 8px;
  height: 6px;
  background: #2b1d11;
  border-radius: 50%;
  opacity: 0.5;
}
.test-card-visual[data-stage-visual="6"]::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #2b1d11;
  border-radius: 50%;
  opacity: 0.3;
}
.test-card.active .test-card-visual {
  background: var(--orange-light);
}
.test-card-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.test-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Result Box */
.test-result {
  margin-top: 32px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid var(--orange);
  box-shadow: 0 30px 60px -20px rgba(239,125,0,0.2);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.4s ease, padding 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.test-result.visible {
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 760px) {
  .test-result.visible { padding: 24px; }
}
.test-result-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.test-result-header h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 8px 0 8px;
}
.test-result-header p {
  color: var(--grey-700);
  font-size: 1.0625rem;
}
.test-result-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .test-result-body { grid-template-columns: 1fr; gap: 20px; }
}
.test-result-detail h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.test-result-detail ul {
  list-style: none;
  padding: 0;
}
.test-result-detail ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--grey-800);
  line-height: 1.6;
}
.test-result-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.test-result-detail p {
  color: var(--grey-800);
  line-height: 1.7;
}
.test-result-footer {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== MATERIAL TABS ==================== */
.material-tabs {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 0 var(--grey-200);
  border: 1px solid var(--grey-200);
}
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--grey-200);
}
.tab-btn {
  background: var(--grey-50);
  border: none;
  padding: 24px 28px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  position: relative;
  transition: background 0.2s ease;
  border-right: 1px solid var(--grey-200);
}
.tab-btn:last-child { border-right: none; }
.tab-btn:hover { background: var(--white); }
.tab-btn.active {
  background: var(--white);
  box-shadow: 0 -3px 0 var(--orange) inset;
}
@media (max-width: 760px) {
  .tab-buttons { grid-template-columns: 1fr; }
  .tab-btn { border-right: none; border-bottom: 1px solid var(--grey-200); padding: 18px 24px; }
  .tab-btn:last-child { border-bottom: none; }
}
.tab-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.tab-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.tab-sublabel {
  font-size: 0.875rem;
  color: var(--grey-700);
  margin-left: auto;
}
@media (max-width: 760px) {
  .tab-sublabel { display: none; }
}
.tab-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.tab-content {
  display: none;
  padding: 40px 48px;
}
.tab-content.active { display: block; }
@media (max-width: 760px) {
  .tab-content.active { padding: 28px 24px; }
}
.tab-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.tab-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .tab-image { height: 200px; margin-bottom: 24px; }
}

@media (max-width: 900px) {
  .tab-content-grid { grid-template-columns: 1fr; gap: 28px; }
}
.tab-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.tab-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tab-spec {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--grey-700);
  margin-bottom: 16px;
  font-weight: 500;
}
.tab-content p { color: var(--grey-800); line-height: 1.7; margin-bottom: 16px; }
.tab-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}
.tab-stat {
  text-align: center;
}
.tab-stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--orange);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.tab-stat span {
  font-size: 0.75rem;
  color: var(--grey-700);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tab-list {
  list-style: none;
  padding: 0;
}
.tab-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--grey-800);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.tab-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.tab-list-con li::before {
  content: '–';
  color: var(--grey-500);
}
.tab-recommendation {
  margin-top: 20px !important;
  padding: 16px 20px;
  background: var(--orange-light);
  border-radius: 10px;
  font-size: 0.9375rem !important;
}

/* ==================== VERGLEICHSTABELLE ==================== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--grey-200);
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-700);
  background: var(--grey-50);
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--grey-200);
  text-align: center;
}
.compare-table thead th:first-child { background: var(--white); border-bottom: none; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-label {
  font-weight: 600;
  color: var(--black);
  background: var(--grey-50);
  width: 180px;
  font-size: 0.9375rem;
}
.compare-table td {
  font-size: 0.875rem;
  color: var(--grey-800);
  text-align: center;
  line-height: 1.4;
}
.compare-table td small {
  color: var(--grey-700);
  font-size: 0.75rem;
  display: block;
  margin-top: 2px;
}
.compare-featured {
  background: var(--orange-light) !important;
  color: var(--black) !important;
  font-weight: 500;
}
.compare-table thead .compare-featured {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.compare-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
.compare-icon.yes { background: #d4f4dd; color: #15803d; }
.compare-icon.partial { background: #fff4d4; color: #a16207; }
.compare-icon.no { background: #fee2e2; color: #b91c1c; }
.compare-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--grey-700);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== VORHER/NACHHER SLIDER ==================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
}
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--grey-200);
  -webkit-user-select: none;
  touch-action: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 3;
}
.ba-tag-before { left: 16px; background: rgba(10,10,10,0.85); color: var(--white); }
.ba-tag-after { right: 16px; background: var(--orange); color: var(--white); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.ba-handle-line {
  width: 100%;
  height: 100%;
  background: var(--white);
}
.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.ba-handle-circle svg { width: 24px; height: 24px; }
.ba-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.6) 50%);
  padding: 28px 16px 16px;
  margin: -28px -16px -16px;
  border-radius: 0 0 16px 16px;
}
.ba-info .label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}
.ba-info strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ==================== STICKY MOBILE CTA ==================== */
.sticky-mobile-cta {
  display: none;
}
@media (max-width: 760px) {
  .sticky-mobile-cta {
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .sticky-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
    color: var(--black);
    border-right: 1px solid var(--grey-200);
    transition: background 0.2s;
  }
  .sticky-cta-btn:last-child { border-right: none; }
  .sticky-cta-btn:hover, .sticky-cta-btn:active { background: var(--orange-light); }
  .sticky-cta-btn svg { width: 22px; height: 22px; color: var(--orange); }
  .sticky-cta-btn span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
  }
  .sticky-cta-book { background: var(--orange); }
  .sticky-cta-book svg, .sticky-cta-book span { color: var(--white); }
  .sticky-cta-book:hover, .sticky-cta-book:active { background: var(--orange-dark); }
  .sticky-cta-book:hover svg, .sticky-cta-book:hover span,
  .sticky-cta-book:active svg, .sticky-cta-book:active span { color: var(--white); }
  /* Padding für Body, damit nichts verdeckt wird */
  body { padding-bottom: 64px; }
}

/* ==================== SCROLL-FADE-IN ==================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-section, .fade-in-section.is-visible {
    opacity: 1; transform: none; transition: none;
  }
}

/* ==================== INTERAKTIVE TIMELINE ==================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 16px; }
}
.timeline-line {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--grey-200);
  z-index: 0;
}
@media (max-width: 760px) { .timeline-line { display: none; } }
.timeline-step {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 12px;
  font-family: inherit;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease;
}
@media (max-width: 760px) {
  .timeline-step { flex-direction: row; gap: 16px; text-align: left; padding: 12px 16px; background: var(--white); border-radius: 12px; }
}
.timeline-step:hover { transform: translateY(-3px); }
@media (max-width: 760px) { .timeline-step:hover { transform: none; } }
.timeline-step-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--grey-700);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media (max-width: 760px) { .timeline-step-dot { width: 48px; height: 48px; font-size: 0.9375rem; } }
.timeline-step.active .timeline-step-dot,
.timeline-step:hover .timeline-step-dot {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(239,125,0,0.5);
  transform: scale(1.05);
}
.timeline-step-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.timeline-step-time {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline-step strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.timeline-detail {
  position: relative;
  margin-top: 24px;
}
.timeline-detail-card {
  display: none;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 40px;
  animation: tl-fade-in 0.4s ease;
}
.timeline-detail-card.active { display: block; }
@keyframes tl-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) { .timeline-detail-card { padding: 24px; } }
.timeline-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .timeline-detail-grid { grid-template-columns: 1fr; gap: 24px; } }
.timeline-detail-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
  line-height: 1.15;
}
.timeline-detail-card p {
  color: var(--grey-800);
  line-height: 1.7;
  margin-bottom: 16px;
}
.timeline-detail-meta {
  background: var(--orange-light);
  border-radius: 14px;
  padding: 24px;
  align-self: start;
}
.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(239,125,0,0.15);
}
.meta-item:first-child { padding-top: 0; }
.meta-item:last-child { border-bottom: none; padding-bottom: 0; }
.meta-item span {
  font-size: 0.875rem;
  color: var(--grey-700);
}
.meta-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
  letter-spacing: -0.01em;
  text-align: right;
}

/* ==================== INVESTITIONS-RECHNER ==================== */
.section-calculator { background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%); }
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--grey-200);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.1);
}
@media (max-width: 900px) { .calc-wrap { grid-template-columns: 1fr; gap: 24px; padding: 28px; } }
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-label > span {
  font-size: 0.875rem;
  color: var(--grey-700);
  letter-spacing: 0.02em;
}
.calc-label strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.calc-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-opt {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 0;
  text-align: center;
}
.calc-opt:hover { border-color: var(--orange); color: var(--orange); }
.calc-opt.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: var(--grey-200);
  outline: none;
  margin: 4px 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(239,125,0,0.5);
  border: 4px solid var(--white);
}
.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(239,125,0,0.5);
  border: 4px solid var(--white);
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--grey-700);
  margin-top: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.calc-toggle-label { cursor: pointer; align-items: center !important; }
.calc-toggle { display: none; }
.calc-toggle-visual {
  width: 50px;
  height: 28px;
  background: var(--grey-200);
  border-radius: 100px;
  position: relative;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.calc-toggle-visual::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.calc-toggle:checked + .calc-toggle-visual { background: var(--orange); }
.calc-toggle:checked + .calc-toggle-visual::after { transform: translateX(22px); }
.calc-help {
  font-size: 0.8125rem;
  color: var(--grey-700);
  line-height: 1.5;
  margin-top: 4px;
}

.calc-result {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(239,125,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.calc-result-main {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.calc-result-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.calc-result-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.calc-result-sublabel {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.calc-result-breakdown { position: relative; }
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9375rem;
}
.calc-row span { color: rgba(255,255,255,0.7); }
.calc-row strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--white);
}
.calc-row-total {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 10px;
  padding-top: 16px;
}
.calc-row-total span { color: var(--white); font-weight: 600; }
.calc-row-total strong { color: var(--orange); font-size: 1.125rem; }
.calc-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  position: relative;
}
.calc-cta { width: 100%; justify-content: center; position: relative; }

/* ==================== MINI-QUIZ ==================== */
.section-quiz { background: var(--grey-50); }
.quiz {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--grey-200);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.15);
}
@media (max-width: 760px) { .quiz { padding: 28px 20px; } }
.quiz-progress {
  height: 6px;
  background: var(--grey-200);
  border-radius: 100px;
  overflow: visible;
  position: relative;
  margin-bottom: 32px;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 33%;
}
.quiz-step-indicator {
  position: absolute;
  top: 14px;
  right: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey-700);
  text-transform: uppercase;
}
.quiz-question {
  display: none;
  animation: quiz-fade 0.4s ease;
}
.quiz-question.active { display: block; }
@keyframes quiz-fade {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-question h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.3;
}
.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-answer {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--grey-800);
}
.quiz-answer:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  transform: translateX(4px);
}
.quiz-answer strong {
  display: inline;
  color: var(--black);
  font-weight: 700;
  margin-right: 6px;
}
.quiz-result {
  display: none;
  text-align: center;
  animation: quiz-fade 0.5s ease;
}
.quiz-result.visible { display: block; }
.quiz-result-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.quiz-result-icon.warning { background: var(--grey-700); }
.quiz-result-icon svg { width: 40px; height: 40px; }
.quiz-result h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.quiz-result p {
  color: var(--grey-800);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 28px;
}
.quiz-result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== 3D HOVER EFFECTS ==================== */
.feature, .testi-card, .pillar, .gallery-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.feature:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.12);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.1);
}
.pillar:hover .pillar-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--orange);
  color: var(--white);
}
.pillar-icon { transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* ==================== MEGA-MENU im Header ==================== */
.has-submenu {
  position: relative;
}
.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-arrow {
  transition: transform 0.2s ease;
}
.has-submenu:hover .nav-arrow {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.2), 0 0 0 1px var(--grey-200);
  padding: 12px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 100;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
.submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 16px;
}
.submenu li {
  list-style: none;
  margin: 0;
}
.submenu li a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s ease;
}
.submenu li a:hover {
  background: var(--orange-light);
}
.submenu li a strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.submenu li a span {
  display: block;
  font-size: 0.8125rem;
  color: var(--grey-700);
  margin-top: 2px;
  font-weight: 400;
}
.submenu li a:hover strong {
  color: var(--orange);
}
@media (max-width: 980px) {
  .submenu { display: none; }
}

/* ==================== STICKY SUB-NAV (auf Startseite) ==================== */
.sub-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  z-index: 90;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
}
.sub-nav.visible {
  transform: translateY(0);
  opacity: 1;
}
.sub-nav-inner {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--grey-700);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--grey-200);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.sub-nav-link:hover, .sub-nav-link.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
@media (max-width: 760px) {
  .sub-nav { top: 60px; }
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s, background 0.2s ease;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
  z-index: 95;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s, background 0.2s ease;
}
.back-to-top:hover {
  background: var(--orange);
}
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ==================== PFLEGEPRODUKTE-SEITE ==================== */
/* Featured Bundle */
.section-bundle {
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%);
}
.bundle-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(239,125,0,0.25);
  border: 1px solid rgba(239,125,0,0.2);
}
@media (max-width: 900px) {
  .bundle-card { grid-template-columns: 1fr; }
}
.bundle-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 2;
}
.bundle-content {
  padding: 48px;
}
@media (max-width: 760px) {
  .bundle-content { padding: 32px 24px; }
}
.bundle-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
  line-height: 1.15;
}
.bundle-content p {
  color: var(--grey-800);
  line-height: 1.7;
  margin-bottom: 20px;
}
.bundle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.bundle-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.9375rem;
  color: var(--grey-800);
}
.bundle-list li:last-child { border-bottom: none; }
.bundle-list li strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--orange);
  font-weight: 700;
  min-width: 30px;
}
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bundle-price-old {
  font-size: 0.9375rem;
  color: var(--grey-700);
  text-decoration: line-through;
}
.bundle-price-now {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bundle-price-save {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 4px 10px;
  border-radius: 100px;
}
.bundle-visual {
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}
.bundle-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.bundle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Produkt Filter & Grid */
.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.product-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-800);
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.product-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.12);
}
.product-card[data-hidden] { display: none; }
.product-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--grey-100);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--grey-800);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-badge-popular {
  background: var(--orange);
  color: var(--white);
}
.product-badge-new {
  background: var(--black);
  color: var(--white);
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--grey-700);
  line-height: 1.5;
  flex: 1;
  margin: 0;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--grey-200);
}
.product-vol {
  font-size: 0.8125rem;
  color: var(--grey-700);
}
.product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.product-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--grey-700);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Tutorial-Liste */
.tutorial-list {
  list-style: none;
  counter-reset: tut;
  padding: 0;
  margin: 24px 0;
}
.tutorial-list li {
  counter-increment: tut;
  position: relative;
  padding: 14px 0 14px 56px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-800);
  line-height: 1.6;
}
.tutorial-list li:last-child { border-bottom: none; }
.tutorial-list li::before {
  content: counter(tut, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  background: var(--orange-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tutorial-list li strong {
  display: block;
  color: var(--black);
  margin-bottom: 2px;
}

/* ==================== ÜBER UNS – TEAM & ZERTIFIZIERUNGEN ==================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Wenn letzte Karte allein in der Reihe steht (bei 7 Karten = 3+3+1), zentrieren */
.team-grid > .team-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } .team-grid > .team-card:last-child:nth-child(3n+1) { grid-column: auto; } }
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.15);
}
.team-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  background-color: var(--grey-100);
}
.team-body { padding: 24px; }
.team-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.team-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 0.9375rem;
  color: var(--grey-800);
  line-height: 1.6;
  margin: 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--grey-200);
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.cert-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 16px 40px -15px rgba(239,125,0,0.2);
}
.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.cert-item:hover .cert-icon {
  background: var(--orange);
  color: var(--white);
}
.cert-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cert-item p {
  font-size: 0.8125rem;
  color: var(--grey-700);
  margin: 0;
  line-height: 1.4;
}

/* ==================== MEGA MENU (Header Submenu) ==================== */
.has-submenu { position: relative; }
.has-submenu > a { display: flex; align-items: center; gap: 6px; }
.nav-arrow {
  transition: transform 0.25s ease;
  margin-bottom: 1px;
  flex-shrink: 0;
}
.has-submenu:hover .nav-arrow,
.has-submenu:focus-within .nav-arrow {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: 100%;
  left: -20px;
  margin: 0;
  padding: 12px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15), 0 0 0 1px var(--grey-200);
  min-width: 320px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li { margin: 0; }
.submenu li a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.submenu li a:hover { background: var(--orange-light); }
.submenu li a strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.submenu li a span {
  display: block;
  font-size: 0.8125rem;
  color: var(--grey-700);
  line-height: 1.4;
}
@media (max-width: 980px) {
  .submenu { display: none !important; }
}

/* ==================== STICKY SUB-NAVIGATION ==================== */
.sub-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  border-top: 1px solid var(--grey-200);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0;
}
.sub-nav.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sub-nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  overflow-x: auto;
}
.sub-nav-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey-700);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.sub-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.sub-nav-links li { margin: 0; flex-shrink: 0; }
.sub-nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-800);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.sub-nav-links a:hover {
  background: var(--orange-light);
  color: var(--orange);
}
.sub-nav-links a.active {
  background: var(--orange);
  color: var(--white);
}
@media (max-width: 760px) {
  .sub-nav { top: 60px; }
  .sub-nav-label { display: none; }
  .sub-nav-inner { padding: 10px 0; }
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(239,125,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 95;
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-4px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg { width: 24px; height: 24px; }
@media (max-width: 760px) {
  .back-to-top { bottom: 80px; right: 16px; width: 44px; height: 44px; }
  .back-to-top svg { width: 20px; height: 20px; }
}

/* ==================== PFLEGEPRODUKTE PAGE ==================== */
/* Featured Bundle Card */
.section-bundle {
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%);
}
.bundle-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow: 0 30px 80px -20px rgba(239,125,0,0.25);
  position: relative;
}
@media (max-width: 900px) { .bundle-card { grid-template-columns: 1fr; } }
.bundle-content { padding: 48px; }
@media (max-width: 760px) { .bundle-content { padding: 32px 24px; } }
.bundle-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.bundle-content p { font-size: 1.0625rem; line-height: 1.7; color: var(--grey-800); margin-bottom: 24px; }
.bundle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
@media (max-width: 540px) { .bundle-list { grid-template-columns: 1fr; } }
.bundle-list li {
  font-size: 0.9375rem;
  color: var(--grey-800);
  padding: 4px 0 4px 24px;
  position: relative;
}
.bundle-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.bundle-list li strong { color: var(--orange); margin-right: 4px; }
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bundle-price-old {
  text-decoration: line-through;
  color: var(--grey-700);
  font-size: 1rem;
}
.bundle-price-now {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bundle-price-save {
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
}
.bundle-visual {
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}
.bundle-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.bundle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bundle-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 5;
}

/* Product Filter */
.product-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.product-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-800);
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.product-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
  border-color: var(--orange);
}
.product-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--grey-100);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.product-badge-popular { background: var(--orange); }
.product-badge-new { background: #15803d; }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-body h3 {
  font-size: 1.0625rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-body p {
  font-size: 0.875rem;
  color: var(--grey-700);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--grey-200);
  padding-top: 14px;
}
.product-vol {
  font-size: 0.8125rem;
  color: var(--grey-700);
}
.product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.product-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--grey-700);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.product-card[data-category].hidden { display: none; }

/* Tutorial List */
.tutorial-list {
  list-style: none;
  counter-reset: tutorial;
  padding: 0;
  margin: 16px 0;
}
.tutorial-list li {
  counter-increment: tutorial;
  padding: 12px 0 12px 48px;
  position: relative;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.9375rem;
  color: var(--grey-800);
  line-height: 1.6;
}
.tutorial-list li:last-child { border-bottom: none; }
.tutorial-list li::before {
  content: counter(tutorial, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}
.tutorial-list li strong { color: var(--black); display: block; margin-bottom: 2px; }

/* ==================== ÜBER UNS PAGE ==================== */
/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
  border-color: var(--orange);
}
.team-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--grey-100);
}
.team-body { padding: 24px; }
.team-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.team-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.team-card p {
  font-size: 0.9375rem;
  color: var(--grey-800);
  line-height: 1.6;
}

/* Cert Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.cert-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.08);
}
.cert-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cert-item strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cert-item p {
  font-size: 0.8125rem;
  color: var(--grey-700);
  margin: 0;
}

/* ==================== CALCULATOR – Monats-Fokus ==================== */
.calc-benefits {
  margin-top: 8px;
  padding: 20px 22px;
  background: var(--orange-light);
  border-radius: 12px;
  border-left: 3px solid var(--orange);
}
.calc-benefits h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.calc-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-benefits li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--grey-800);
  padding-left: 22px;
  position: relative;
}
.calc-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}
.calc-benefits li strong { color: var(--black); }

.calc-result-included {
  position: relative;
  padding: 4px 0 0;
}
.calc-result-included h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.calc-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.calc-included-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--orange);
}

/* ==================== PRICING SECTION (Test-System & Zahlung) ==================== */
.section-pricing {
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-light) 100%);
}
.pricing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) { .pricing-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-steps { grid-template-columns: 1fr; } }

.pricing-step {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pricing-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
  border-color: var(--orange);
}
.pricing-step-featured {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.pricing-step-featured:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 40px -15px rgba(239,125,0,0.3);
}
.pricing-step-featured h3, .pricing-step-featured strong { color: var(--white); }
.pricing-step-featured p { color: rgba(255,255,255,0.85); }
.pricing-step-featured .pricing-step-detail { color: rgba(255,255,255,0.65); }
.pricing-step-featured .pricing-step-num { color: var(--orange); }

.pricing-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 14px;
}
.pricing-step-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pricing-step-featured .pricing-step-icon {
  background: rgba(239,125,0,0.15);
}
.pricing-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.pricing-step p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--grey-800);
  margin-bottom: 12px;
}
.pricing-step strong { color: var(--black); }
.pricing-step-detail {
  font-size: 0.8125rem !important;
  line-height: 1.5 !important;
  color: var(--grey-700) !important;
  margin: 0 !important;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}
.pricing-step-featured .pricing-step-detail {
  border-top-color: rgba(255,255,255,0.1);
}

.pricing-included {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 32px 36px;
  margin-bottom: 32px;
}
@media (max-width: 600px) { .pricing-included { padding: 24px 20px; } }
.pricing-included h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.pricing-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}
@media (max-width: 760px) { .pricing-included-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pricing-included-list { grid-template-columns: 1fr; } }
.pricing-included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--grey-800);
}
.pricing-included-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
}
.pricing-included-list strong { color: var(--black); }

.pricing-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== HONEST SECTION (Ehrlich gesagt) ==================== */
.section-honest {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-honest::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(239,125,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.honest-card {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 20px 0;
}
.honest-quote-mark {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', serif;
  font-size: 14rem;
  font-weight: 800;
  line-height: 0.8;
  color: var(--orange);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 600px) {
  .honest-quote-mark { font-size: 8rem; top: -10px; }
}
.honest-card .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--orange);
}
.honest-card h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 12px auto 24px;
  line-height: 1.1;
  max-width: 720px;
}
.honest-lead {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--orange);
  letter-spacing: -0.01em;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 40px;
}
.honest-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 36px;
}
@media (max-width: 760px) {
  .honest-grid { grid-template-columns: 1fr; gap: 18px; }
}
.honest-grid p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.honest-grid p strong {
  color: var(--white);
  font-weight: 600;
}
.honest-signature {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 480px;
  margin: 0 auto;
}

/* ==================== TEXT-SCHRIFTZUG LOGO (bis finales Logo da ist) ==================== */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  padding: 4px 0;
}
.nav-logo-text:hover { text-decoration: none; }
.nav-logo-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  color: var(--orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .nav-logo-main { font-size: 1.125rem; }
  .nav-logo-sub { font-size: 0.5625rem; letter-spacing: 0.2em; }
}

/* Footer Schriftzug */
.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}
.footer-logo-text:hover { text-decoration: none; }
.footer-logo-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 6px;
}


.pricing-duration {
  font-size: 0.9rem;
  color: var(--grey-700);
  margin: 16px 0 20px;
  padding: 10px 14px;
  background: var(--grey-50);
  border-radius: 8px;
  text-align: center;
}
.pricing-featured .pricing-duration {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
}


/* ============== W41 BRAND IDENTITY ============== */

/* Logo-Container */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.brand-logo:hover { opacity: 0.85; }

/* Wave-Mark (3 Sinuswellen SVG) */
.brand-waves {
  display: block;
  flex-shrink: 0;
  height: 38px;
  width: auto;
}
.footer-logo .brand-waves { height: 34px; }

/* Wordmark "hairsystems." */
.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.brand-word {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.brand-word .dot-mark {
  display: inline-block;
  width: 0.093em;
  height: 0.093em;
  background: var(--orange);
  vertical-align: baseline;
  margin-left: 0.04em;
  margin-bottom: 0.02em;
}
.brand-word .ix {
  position: relative;
  display: inline-block;
}
.brand-word .ix::before {
  content: '';
  position: absolute;
  top: -0.46em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.093em;
  height: 0.093em;
  background: var(--orange);
}
.brand-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
  margin-top: 2px;
}

/* Dark variant (für Footer auf schwarzem Grund) */
.brand-logo.brand-dark .brand-word { color: var(--bone); }

/* Markensignatur — zwei orange Quadrate als wiederverwendbares Element */
.brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.brand-signature::before,
.brand-signature::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange);
}

/* Tagline — Fraunces kursiv */
.brand-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* VIENNA-Subtitle als wiederverwendbare Klasse */
.vienna-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Bone-Cream Hintergrund Body-Override falls gewünscht */
body.brand-bone { background: var(--bone); }

/* Sand-Sektionen (subtil) */
.sand-section { background: var(--sand); }

/* ============== ENDE W41 BRAND ============== */

/* ============================================================
   PAKET-WAHL (OC-Style: Toggle + Anzahl-Pakete)
   ============================================================ */

/* Toggle Switch (Monatlich / Einmalig) */
.price-toggle {
  display: inline-flex;
  background: #fff;
  border: 1.5px solid var(--ink, #0D0C0A);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
  gap: 2px;
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.price-toggle-btn {
  background: transparent;
  border: none;
  color: var(--ink, #0D0C0A);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.price-toggle-btn:hover {
  background: rgba(239, 125, 0, 0.08);
}

.price-toggle-btn.active {
  background: var(--orange, #EF7D00);
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 125, 0, 0.25);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Package Card */
.package-card {
  background: #fff;
  border: 1.5px solid var(--grey-200, #e5e5e5);
  border-radius: 18px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 12, 10, 0.08);
}

.package-card-featured {
  border-color: var(--orange, #EF7D00);
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(239, 125, 0, 0.12);
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .package-card-featured {
    transform: none;
  }
}

.package-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange, #EF7D00);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Card Header */
.package-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.package-card-header h3 {
  font-size: 1.6rem;
  margin: 0 0 6px;
  font-weight: 700;
}

.package-card-tagline {
  color: var(--grey-600, #6b6b6b);
  font-size: 0.92rem;
  margin: 0;
}

/* Card Price */
.package-card-price {
  text-align: center;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--grey-100, #f0f0f0);
  border-bottom: 1px solid var(--grey-100, #f0f0f0);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-monthly,
.price-onetime {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-monthly.visible,
.price-onetime.visible {
  display: flex;
}

/* Default state: monthly is visible */
.price-monthly[data-price-display="monthly"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-onetime[data-price-display="onetime"] {
  display: none;
}

/* When body has class for onetime mode */
.pricing-mode-onetime .price-monthly[data-price-display="monthly"] {
  display: none;
}

.pricing-mode-onetime .price-onetime[data-price-display="onetime"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink, #0D0C0A);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-suffix {
  color: var(--grey-600, #6b6b6b);
  font-size: 0.88rem;
  font-weight: 500;
}

/* List */
.package-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.package-card-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink, #0D0C0A);
}

.package-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF7D00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.package-card-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Guarantee Block */
.package-guarantee {
  background: #fff;
  border: 1.5px solid var(--orange, #EF7D00);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 24px;
  max-width: 720px;
}

.package-guarantee-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 125, 0, 0.1);
  color: var(--orange, #EF7D00);
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-guarantee h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
}

.package-guarantee p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--grey-600, #6b6b6b);
}

@media (max-width: 600px) {
  .package-guarantee {
    flex-direction: column;
    text-align: center;
  }
}

/* Disclaimer */
.package-disclaimer {
  font-size: 0.82rem;
  color: var(--grey-600, #6b6b6b);
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.package-disclaimer strong {
  color: var(--orange, #EF7D00);
  font-style: normal;
}


/* ============================================================
   HYBRID-KONFIGURATOR (Anzahl × Modell × Zahlung)
   ============================================================ */

/* Toggle-Gruppe (2 Toggles nebeneinander) */
.config-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto 48px;
  max-width: 720px;
}

.config-toggle-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.config-toggle-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600, #6b6b6b);
}

/* Price-Variant Sichtbarkeit (alle versteckt by default außer 1-monthly) */
.price-variant {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Default: 1 System + monthly */
.section-packages .price-variant[data-variant="1-monthly"] {
  display: flex;
}

/* Toggle-States via Body-Klassen auf .section-packages */
.section-packages.config-count-1.config-pay-monthly .price-variant[data-variant="1-monthly"] { display: flex; }
.section-packages.config-count-1.config-pay-monthly .price-variant:not([data-variant="1-monthly"]) { display: none; }

.section-packages.config-count-1.config-pay-onetime .price-variant[data-variant="1-onetime"] { display: flex; }
.section-packages.config-count-1.config-pay-onetime .price-variant:not([data-variant="1-onetime"]) { display: none; }

.section-packages.config-count-2.config-pay-monthly .price-variant[data-variant="2-monthly"] { display: flex; }
.section-packages.config-count-2.config-pay-monthly .price-variant:not([data-variant="2-monthly"]) { display: none; }

.section-packages.config-count-2.config-pay-onetime .price-variant[data-variant="2-onetime"] { display: flex; }
.section-packages.config-count-2.config-pay-onetime .price-variant:not([data-variant="2-onetime"]) { display: none; }

.section-packages.config-count-3.config-pay-monthly .price-variant[data-variant="3-monthly"] { display: flex; }
.section-packages.config-count-3.config-pay-monthly .price-variant:not([data-variant="3-monthly"]) { display: none; }

.section-packages.config-count-3.config-pay-onetime .price-variant[data-variant="3-onetime"] { display: flex; }
.section-packages.config-count-3.config-pay-onetime .price-variant:not([data-variant="3-onetime"]) { display: none; }

.section-packages.config-count-4.config-pay-monthly .price-variant[data-variant="4-monthly"] { display: flex; }
.section-packages.config-count-4.config-pay-monthly .price-variant:not([data-variant="4-monthly"]) { display: none; }

.section-packages.config-count-4.config-pay-onetime .price-variant[data-variant="4-onetime"] { display: flex; }
.section-packages.config-count-4.config-pay-onetime .price-variant:not([data-variant="4-onetime"]) { display: none; }

/* 0-€-Eyecatcher: nur bei monatlicher Zahlung sichtbar */
.price-zero-deposit {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 8px 14px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.3;
}
.price-zero-deposit strong { font-weight: 800; }
.section-packages.config-pay-monthly .price-zero-deposit { display: flex; }
.section-packages.config-pay-onetime .price-zero-deposit { display: none; }

/* Wiederverwendbarer 0-€-Pill (themeweiter Wettbewerbsvorteil) */
.zero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  white-space: nowrap;
}
.zero-pill strong { font-weight: 800; }
.zero-pill-inline {
  padding: 4px 12px;
  font-size: 0.8125rem;
}

/* Toggle mit 4 Buttons: schmaler */
.price-toggle-4 .price-toggle-btn {
  padding: 10px 16px;
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .config-toggles {
    gap: 16px;
  }
  .price-toggle-btn {
    padding: 10px 20px;
    font-size: 0.88rem;
  }
}


/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */

.section-contact-form {
  background: var(--bone, #FAF6EF);
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 36px;
  border-radius: 18px;
  border: 1px solid var(--grey-200, #e5e5e5);
  box-shadow: 0 4px 24px rgba(13, 12, 10, 0.04);
}

/* Honeypot: für Menschen unsichtbar, für Bots sichtbar */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form {
    padding: 28px 20px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  margin-bottom: 20px;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink, #0D0C0A);
  letter-spacing: 0.01em;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200, #e5e5e5);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink, #0D0C0A);
  background: #fff;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange, #EF7D00);
  box-shadow: 0 0 0 3px rgba(239, 125, 0, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input[type="file"] {
  padding: 8px 0;
  font-size: 0.92rem;
  border: none;
  background: transparent;
}

.form-field small {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--grey-600, #6b6b6b);
}

/* DSGVO Checkbox */
.form-field-checkbox {
  margin: 16px 0 24px;
}

.form-field-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.5;
  cursor: pointer;
  color: var(--grey-600, #6b6b6b);
}

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

.form-field-checkbox a {
  color: var(--orange, #EF7D00);
  text-decoration: underline;
}

/* Submit */
.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-submit button {
  padding: 14px 32px;
  font-size: 1rem;
}

.form-required-note {
  font-size: 0.82rem;
  color: var(--grey-600, #6b6b6b);
}

/* Status-Messages */
.form-message {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  color: #0a6b2c;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  color: #991111;
}


/* ============================================================
   404 ERROR SEITE
   ============================================================ */

.section-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--bone, #FAF6EF);
  text-align: center;
}

.error-404-content {
  max-width: 720px;
  margin: 0 auto;
}

.error-404-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 16px 0 24px;
  line-height: 1.15;
}

.error-404-text {
  font-size: 1.1rem;
  color: var(--grey-600, #6b6b6b);
  margin-bottom: 36px;
}

.error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-404-quicklinks {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--grey-200, #e5e5e5);
  margin-bottom: 32px;
}

.error-404-quicklinks h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--orange, #EF7D00);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.error-404-quicklinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.error-404-quicklinks li {
  padding: 0;
}

.error-404-quicklinks a {
  color: var(--ink, #0D0C0A);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 16px;
  display: block;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.error-404-quicklinks a:hover {
  background: rgba(239, 125, 0, 0.08);
  color: var(--orange, #EF7D00);
}

.error-404-help {
  font-size: 1rem;
  color: var(--grey-600, #6b6b6b);
}

.error-404-help a {
  color: var(--orange, #EF7D00);
  text-decoration: none;
}

@media (max-width: 600px) {
  .error-404-quicklinks ul {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   ★ PREMIUM REFRESH — Modern Conversion-Landingpage Layout
   ============================================================ */

/* === Design-Tokens === */
:root {
  /* Spacing-Scale */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Premium Shadows */
  --shadow-xs: 0 1px 2px rgba(13, 12, 10, 0.04);
  --shadow-sm: 0 2px 8px rgba(13, 12, 10, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 12, 10, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 12, 10, 0.10);
  --shadow-xl: 0 24px 64px rgba(13, 12, 10, 0.14);
  --shadow-orange: 0 8px 24px rgba(239, 125, 0, 0.20);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Animations */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Section Padding aufgebläht (großzügige Abstände) === */
.section {
  padding: var(--space-2xl) 0;
}
@media (max-width: 768px) {
  .section { padding: var(--space-xl) 0; }
}

/* === Animationen: Fade-in beim Scroll === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   TRUST-BAR — Premium Floating Pill
   ============================================================ */
.trust-bar-premium {
  position: relative;
  z-index: 5;
  margin-top: -32px;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-md);
}

.trust-bar-premium-inner {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 12, 10, 0.06);
  padding: var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-premium-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.trust-premium-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(13, 12, 10, 0.08), transparent);
}

.trust-premium-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(239, 125, 0, 0.10);
  color: var(--orange, #EF7D00);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-premium-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-premium-number {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink, #0D0C0A);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.trust-premium-label {
  font-size: 0.78rem;
  color: var(--grey-600, #6b6b6b);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .trust-bar-premium-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  .trust-premium-item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .trust-bar-premium-inner {
    grid-template-columns: 1fr;
  }
  .trust-premium-item::after { display: none; }
  .trust-premium-item { padding: 8px 0; border-bottom: 1px solid rgba(13,12,10,0.06); }
  .trust-premium-item:last-child { border-bottom: none; }
}

/* ============================================================
   HERO PREMIUM
   ============================================================ */
.hero-premium {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(239, 125, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(239, 125, 0, 0.03) 0%, transparent 50%),
    var(--bone, #FAF6EF);
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: hidden;
}

.hero-premium-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
}

@media (max-width: 900px) {
  .hero-premium-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Pre-Eyebrow mit Sternen */
.hero-premium-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  background: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(13, 12, 10, 0.06);
  box-shadow: var(--shadow-xs);
}

.hero-premium-stars {
  color: var(--orange, #EF7D00);
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero-premium-rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink, #0D0C0A);
}

.hero-premium-rating-text strong {
  font-weight: 800;
}

/* Headline */
.hero-premium-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink, #0D0C0A);
  margin: 0 0 var(--space-md);
}

.hero-premium-headline em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange, #EF7D00);
  letter-spacing: -0.01em;
}

.hero-premium-subline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--grey-700, #4a4a4a);
  margin: 0 0 var(--space-lg);
  max-width: 540px;
}

/* CTAs */
.hero-premium-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-premium-ctas .btn {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-smooth);
}

.hero-premium-ctas .btn-primary {
  background: var(--orange, #EF7D00);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.hero-premium-ctas .btn-primary:hover {
  background: var(--ink, #0D0C0A);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 12, 10, 0.25);
}

.hero-premium-ctas .btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink, #0D0C0A);
  color: var(--ink, #0D0C0A);
}

.hero-premium-ctas .btn-outline:hover {
  background: var(--ink, #0D0C0A);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust-Indikatoren unter CTAs */
.hero-premium-trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--grey-600, #6b6b6b);
}

.hero-premium-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-premium-trust-item svg {
  color: var(--orange, #EF7D00);
  flex-shrink: 0;
}

/* Hero-Bild rechts */
.hero-premium-visual {
  position: relative;
}

.hero-premium-visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.hero-premium-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Badge */
.hero-premium-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 290px;
}

@media (max-width: 900px) {
  .hero-premium-badge {
    left: 16px;
    bottom: 16px;
  }
}

.hero-premium-badge-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange, #EF7D00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-premium-badge-text {
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink, #0D0C0A);
}

.hero-premium-badge-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* ============================================================
   SECTION HEADERS — Premium
   ============================================================ */
.section-header-premium {
  text-align: center;
  max-width: 740px;
  margin: 0 auto var(--space-xl);
}

.section-header-premium .eyebrow {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange, #EF7D00);
  padding: 6px 14px;
  background: rgba(239, 125, 0, 0.08);
  border-radius: var(--radius-pill);
}

.section-header-premium h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--ink, #0D0C0A);
}

.section-header-premium h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange, #EF7D00);
}

.section-header-premium p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--grey-700, #4a4a4a);
  margin: 0;
}

/* ============================================================
   PROBLEM-SEKTION — "Erkennst du dich wieder?"
   ============================================================ */
.problem-section {
  background: #fff;
  padding: var(--space-2xl) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}

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

.problem-card {
  background: var(--bone, #FAF6EF);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(13, 12, 10, 0.04);
  transition: all 0.3s var(--ease-smooth);
}

.problem-card:hover {
  background: #fff;
  border-color: rgba(239, 125, 0, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.problem-card-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--orange, #EF7D00);
  opacity: 0.25;
  margin-bottom: var(--space-xs);
  display: block;
}

.problem-card-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink, #0D0C0A);
  margin: 0 0 var(--space-md);
  font-weight: 500;
}

.problem-card-meta {
  font-size: 0.82rem;
  color: var(--grey-600, #6b6b6b);
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card-meta::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange, #EF7D00);
}


/* ============================================================
   ★★★ HERO WOW — Statement Typography, Bento Layout, Animations
   ============================================================ */

.hero-wow {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 600px at 20% 30%, rgba(239, 125, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 70%, rgba(239, 125, 0, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bone, #FAF6EF) 0%, #FFFCF8 100%);
  padding: 32px 0 96px;
}

/* Animierte Background-Shapes (subtile floating Blobs) */
.hero-wow-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-wow-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hero-wow-shape-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(239, 125, 0, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  animation: float 18s ease-in-out infinite;
}

.hero-wow-shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(239, 125, 0, 0.10) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  animation: float 22s ease-in-out infinite reverse;
}

.hero-wow-shape-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(239, 125, 0, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wow-shape { animation: none; }
}

/* === Marquee Banner (scrollender Trust-Banner) === */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(13, 12, 10, 0.08);
  border-bottom: 1px solid rgba(13, 12, 10, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 0;
  margin-bottom: 80px;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink, #0D0C0A);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-dot {
  color: var(--orange, #EF7D00);
  font-weight: 700;
  font-size: 1.2rem;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* === Hero-Layout === */
.hero-wow-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1100px) {
  .hero-wow-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .hero-wow-inner { padding: 0 20px; }
  .hero-wow { padding: 24px 0 64px; }
  .marquee { margin-bottom: 48px; }
}

/* === Eyebrow mit Linie === */
.hero-wow-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange, #EF7D00);
  margin-bottom: 28px;
}

.hero-wow-eyebrow-line {
  width: 44px;
  height: 1.5px;
  background: var(--orange, #EF7D00);
}

/* === MASSIVE Statement-Typography === */
.hero-wow-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink, #0D0C0A);
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-wow-headline .word-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-wow-headline .word-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-wow-headline-italic em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange, #EF7D00);
  letter-spacing: -0.02em;
}

/* === Subline === */
.hero-wow-subline {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--grey-700, #4a4a4a);
  margin: 0 0 40px;
  max-width: 520px;
  font-weight: 400;
}

/* === CTAs === */
.hero-wow-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* MAGNETIC Button */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--ink, #0D0C0A);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange, #EF7D00);
  border-radius: 999px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.btn-magnetic:hover::before {
  transform: translateY(0);
}

.btn-magnetic > * {
  position: relative;
  z-index: 1;
}

.btn-magnetic:hover {
  transform: scale(1.02);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: transparent;
  color: var(--ink, #0D0C0A);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(13, 12, 10, 0.15);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--ink, #0D0C0A);
  color: #fff;
  border-color: var(--ink, #0D0C0A);
}

/* === Stats Row === */
.hero-wow-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(13, 12, 10, 0.08);
}

.hero-wow-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-wow-stat-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink, #0D0C0A);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hero-wow-stat-label {
  font-size: 0.85rem;
  color: var(--grey-600, #6b6b6b);
  letter-spacing: 0.02em;
}

/* === BENTO-GRID für Bilder === */
.hero-wow-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 1fr;
  gap: 14px;
  height: 580px;
  max-height: 75vh;
}

.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ddd;
  box-shadow: 0 20px 60px rgba(13, 12, 10, 0.12);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-tile:hover {
  transform: translateY(-6px) scale(1.01);
}

.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.bento-tile:hover img {
  transform: scale(1.05);
}

.bento-tile-main {
  grid-column: 1 / -1;
  grid-row: 2;
}

.bento-tile-secondary {
  grid-column: 1;
  grid-row: 1;
}

.bento-tile-tertiary {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 1100px) {
  .hero-wow-bento {
    height: 480px;
  }
}

@media (max-width: 600px) {
  .hero-wow-bento {
    height: 400px;
    gap: 10px;
    grid-template-rows: 150px 1fr;
    border-radius: 20px;
  }
  .bento-tile {
    border-radius: 18px;
  }
}

/* Live-Badge auf Bento-Main */
.bento-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink, #0D0C0A);
}

.bento-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* === Scroll-Indikator === */
.hero-wow-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-600, #6b6b6b);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 5;
  animation: bounce-soft 2.5s ease-in-out infinite;
  transition: color 0.3s ease;
}

.hero-wow-scroll:hover {
  color: var(--orange, #EF7D00);
}

@keyframes bounce-soft {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) {
  .hero-wow-scroll { display: none; }
}

/* ============================================================
   REVEAL ANIMATIONS — slide-up beim Scroll
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1), transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   ★★★ WOW v2 — Curtain, Cursor, 3D-Tilt, Outline-Statement
   ============================================================ */

/* Smooth Scroll global */
html {
  scroll-behavior: smooth;
}

/* === Curtain Page-Load === */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--ink, #0D0C0A);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.4s;
  pointer-events: none;
}

.page-curtain.curtain-up {
  transform: translateY(-100%);
}

.page-curtain-logo {
  color: var(--bone, #FAF6EF);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  opacity: 0;
  transform: translateY(20px);
  animation: curtain-logo-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.page-curtain-dot {
  color: var(--orange, #EF7D00);
}

@keyframes curtain-logo-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Disable Curtain when reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .page-curtain { transform: translateY(-100%); transition: none; }
  .page-curtain-logo { animation: none; opacity: 0; }
}

/* === Custom Cursor — ENTFERNT (verursachte Probleme, System-Cursor ist die bessere UX) === */
.cursor-dot,
.cursor-ring {
  display: none !important;
}

/* === Background-Outline-Statement (riesiges Wort im Hero-Hintergrund) === */
.hero-wow-outline {
  position: absolute;
  bottom: -2vw;
  left: -2vw;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(239, 125, 0, 0.18);
  text-stroke: 1.5px rgba(239, 125, 0, 0.18);
  pointer-events: none;
  z-index: 0;
  line-height: 0.85;
  letter-spacing: -0.05em;
  user-select: none;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .hero-wow-outline {
    bottom: 40%;
    font-size: 15rem;
    opacity: 0.5;
  }
}

/* === 3D-Tilt-Effect auf Bento-Tiles === */
.bento-tile {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.bento-tile img {
  transform: translateZ(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Parallax-Shapes (langsamer als Scroll) === */
[data-parallax] {
  will-change: transform;
}

/* === Section-Reveal mit Slide ===  */
[data-reveal-left] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1), transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

[data-reveal-left].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal-right] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1), transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

[data-reveal-right].visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal-left], [data-reveal-right] {
    opacity: 1; transform: none; transition: none;
  }
}


/* ============================================================
   ★★★ MOBILE-OPTIMIZATIONS (80% der User auf Mobile)
   ============================================================ */

/* === Sticky Mobile-CTA-Bar (nur Mobile sichtbar) === */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    border-top: 1px solid rgba(13, 12, 10, 0.08);
    box-shadow: 0 -4px 24px rgba(13, 12, 10, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 0;
    padding: 8px 8px max(8px, env(safe-area-inset-bottom));
  }

  .mobile-cta-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    text-decoration: none;
    color: var(--ink, #0D0C0A);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 12px;
    transition: background 0.2s ease;
    min-height: 56px;
  }

  .mobile-cta-bar-btn:active {
    background: rgba(13, 12, 10, 0.05);
  }

  .mobile-cta-bar-btn svg {
    color: var(--orange, #EF7D00);
  }

  .mobile-cta-bar-btn-primary {
    background: var(--orange, #EF7D00);
    color: #fff;
    margin: 0 0 0 4px;
  }

  .mobile-cta-bar-btn-primary svg {
    color: #fff;
  }

  .mobile-cta-bar-btn-primary:active {
    background: var(--ink, #0D0C0A);
  }

  /* Body bekommt Padding-Bottom damit der Footer-Content nicht unter der Bar verschwindet */
  body {
    padding-bottom: 84px;
  }
}

/* === Curtain auf Mobile deaktivieren === */
@media (max-width: 768px) {
  .page-curtain {
    display: none !important;
  }
}

/* === Section-Padding auf Mobile aggressiv reduzieren === */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  
  .section-header-premium {
    margin-bottom: 32px;
  }
}

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

/* === Hero auf Mobile kompakter === */
@media (max-width: 768px) {
  .hero-wow {
    min-height: auto;
    padding: 16px 0 64px;
  }

  .marquee {
    margin-bottom: 32px;
    padding: 10px 0;
  }

  .marquee-item {
    font-size: 0.78rem;
  }

  .hero-wow-eyebrow {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }

  .hero-wow-eyebrow-line {
    width: 28px;
  }

  .hero-wow-headline {
    font-size: clamp(2.6rem, 11vw, 4rem) !important;
    margin-bottom: 24px;
    line-height: 1.0;
  }

  .hero-wow-subline {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero-wow-ctas {
    margin-bottom: 32px;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-wow-ctas .btn-magnetic,
  .hero-wow-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-wow-stats {
    gap: 24px;
    padding-top: 24px;
    justify-content: space-between;
  }

  .hero-wow-stat-number {
    font-size: 1.6rem;
  }

  .hero-wow-stat-label {
    font-size: 0.75rem;
  }

  .hero-wow-bento {
    height: 360px;
    gap: 8px;
    grid-template-rows: 130px 1fr;
  }

  .bento-tile {
    border-radius: 16px;
  }

  .hero-wow-scroll {
    display: none;
  }

  /* Background-Outline-Wort weniger prominent auf Mobile */
  .hero-wow-outline {
    font-size: 10rem;
    bottom: 30%;
    opacity: 0.3;
  }
}

/* === Trust-Bar Premium: 2x2 Grid auf Mobile === */
@media (max-width: 768px) {
  .trust-bar-premium {
    margin-top: 0;
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .trust-bar-premium-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .trust-premium-item::after {
    display: none !important;
  }

  .trust-premium-icon {
    width: 36px;
    height: 36px;
  }

  .trust-premium-number {
    font-size: 0.95rem;
  }

  .trust-premium-label {
    font-size: 0.72rem;
  }
}

/* === Problem-Sektion: kompakter auf Mobile === */
@media (max-width: 768px) {
  .problem-section {
    padding: 56px 0 !important;
  }

  .problem-grid {
    gap: 12px;
  }

  .problem-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .problem-card-quote {
    font-size: 3.5rem;
  }

  .problem-card-text {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }

  .problem-card-meta {
    font-size: 0.78rem;
  }
}

/* === 3D-Tilt auf Mobile deaktivieren === */
@media (hover: none), (max-width: 768px) {
  [data-tilt] {
    transform: none !important;
  }
}

/* === Headline Margins auf Mobile reduzieren === */
@media (max-width: 768px) {
  h1, h2, h3 {
    line-height: 1.2;
  }

  .section-header-premium h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/* === Marquee mobile: schmaler === */
@media (max-width: 480px) {
  .marquee-track {
    gap: 20px;
    animation-duration: 35s;
  }
}


/* ============================================================
   ★ Produkt-Tagline (klare Haarsysteme-Erkennung)
   ============================================================ */
.hero-wow-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 125, 0, 0.10);
  color: var(--orange, #EF7D00);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
  max-width: 100%;
  border: 1px solid rgba(239, 125, 0, 0.18);
}

.hero-wow-product-tag svg {
  flex-shrink: 0;
  stroke: var(--orange, #EF7D00);
}

.hero-wow-product-tag strong {
  color: var(--ink, #0D0C0A);
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-wow-product-tag {
    font-size: 0.82rem;
    padding: 8px 14px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-wow-product-tag svg {
    width: 16px;
    height: 16px;
  }
}


/* ============================================================
   ★ Hero Single-Image Layout (alternative zu Bento)
   ============================================================ */

.hero-wow-single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wow-single-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5efe1 0%, #ebe4d3 100%);
  box-shadow: 0 24px 64px rgba(13, 12, 10, 0.16), 0 8px 24px rgba(239, 125, 0, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.hero-wow-single-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-wow-single-frame:hover img {
  transform: scale(1.04);
}

/* Live-Badge oben links */
.hero-wow-single-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink, #0D0C0A);
  z-index: 2;
}

/* Floating Info-Card unten links */
.hero-wow-single-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(13, 12, 10, 0.08);
}

.hero-wow-single-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange, #EF7D00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wow-single-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink, #0D0C0A);
  margin-bottom: 2px;
  line-height: 1.2;
}

.hero-wow-single-info span {
  font-size: 0.78rem;
  color: var(--grey-600, #6b6b6b);
  line-height: 1.35;
  display: block;
}

@media (max-width: 768px) {
  .hero-wow-single-frame {
    max-width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
  }
  
  .hero-wow-single-info {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 12px 14px;
    gap: 10px;
  }
  
  .hero-wow-single-info-icon {
    width: 34px;
    height: 34px;
  }
  
  .hero-wow-single-info strong {
    font-size: 0.85rem;
  }
  
  .hero-wow-single-info span {
    font-size: 0.72rem;
  }
  
  .hero-wow-single-badge {
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }
}


/* ============================================================
   Hero Mobile-Order: Bild zwischen Headline und Text
   ============================================================ */
@media (max-width: 900px) {
  /* Hero-Grid wird Flex Column auf Mobile */
  .hero-grid {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Hero-Content wird display:contents damit Children direkt im Flex landen */
  .hero-content {
    display: contents;
  }
  
  /* Order: 1) Intro 2) Bild 3) Body */
  .hero-content-intro {
    order: 1;
  }
  
  .hero-image-col {
    order: 2;
  }
  
  .hero-content-body {
    order: 3;
  }
  
  /* Bild-Abstand anpassen */
  .hero-image-col {
    margin: 8px 0 16px;
  }
  
  /* Image-Frame ohne zu großen Margin */
  .hero-image-wrap {
    max-width: 100%;
  }
}

/* Auf Desktop bleiben intro + body innerhalb hero-content normal gestapelt */
@media (min-width: 901px) {
  .hero-content-intro,
  .hero-content-body {
    display: block;
  }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE-OPTIMIERUNG — additive Verfeinerungsschicht (v3.0.3)
   Ergänzt bestehende Media-Queries · überschreibt keine
   Desktop-Regeln · verändert kein JavaScript.
   Interaktive Komponenten (Tabs, Slider, Norwood-Test, Quiz,
   Sub-Nav, Sticky-CTA) bleiben unverändert funktionsfähig.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* — Overflow-Schutz: kein Element ragt über den Bildschirmrand — */
  img, video, iframe { max-width: 100%; height: auto; }

  /* — Sub-Navigation: horizontal wischbar statt Zeilenüberlauf — */
  .sub-nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .sub-nav-links::-webkit-scrollbar { display: none; }
  .sub-nav-links > li { flex: 0 0 auto; }
  .sub-nav-link {
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* — Vergleichstabelle: weiches Touch-Scrolling + sichtbarer Hinweis — */
  .compare-table-wrap { -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 560px; }
  .compare-table-wrap::-webkit-scrollbar { height: 6px; }
  .compare-table-wrap::-webkit-scrollbar-track {
    background: var(--grey-100, #f4f4f4); border-radius: 3px;
  }
  .compare-table-wrap::-webkit-scrollbar-thumb {
    background: var(--grey-400, #a3a3a3); border-radius: 3px;
  }

  /* — Touch-Targets: komfortable Tap-Flächen (min. 44–48px) — */
  .btn, .nav-cta, .tab-btn, .sticky-cta-btn { min-height: 48px; }
  .site-footer a {
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  /* — Vorher/Nachher-Regler: Knopf skaliert mit der Slider-Breite —
     Fixe 48px wirken auf schmalen Handys zu groß (bis 16% statt
     ~12% wie am Desktop). clamp() hält den Knopf über alle
     Handy-Größen proportional konstant. JS-Position bleibt unberührt. */
  .ba-handle-circle {
    width: clamp(32px, 11vw, 48px);
    height: clamp(32px, 11vw, 48px);
  }
  .ba-handle-circle svg { width: 50%; height: 50%; }
}

/* — Kleine Telefone: Feinschliff — */
@media (max-width: 420px) {
  .compare-table { min-width: 480px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE-PREISLISTE — Preise-Seite (v3.0.7)
   ═══════════════════════════════════════════════════════════════ */
.price-list {
  max-width: 620px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: 16px;
  padding: 8px 28px;
  box-shadow: 0 4px 24px rgba(13, 12, 10, 0.06);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-200);
}
.price-row:last-child { border-bottom: none; }
.price-row-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.price-row-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .price-list { padding: 4px 20px; margin-top: 28px; }
  .price-row { padding: 18px 0; }
  .price-row-name { font-size: 1rem; }
  .price-row-value { font-size: 1.05rem; }
}

/* ═══ Einschnitt-Staffelung — Erweiterung der Service-Preisliste (v3.0.8) ═══ */
.price-block-head {
  padding: 24px 0 14px;
  border-bottom: 1px solid var(--grey-200);
}
.price-block-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.price-block-note {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--grey-500);
}
.price-block .price-row { padding: 18px 0; }
.price-block .price-row:last-child { border-bottom: 1px solid var(--grey-200); }
.price-list > .price-row:last-child { border-bottom: none; }
.price-row-standalone { padding: 22px 0; }
.price-row-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .price-block-title { font-size: 1.08rem; }
  .price-block .price-row { padding: 14px 0; }
  .price-row-standalone { padding: 18px 0; }
}

/* Laufzeit-Schalter nur bei Zahlung „Monatlich" zeigen (v3.0.9) */
.section-packages.config-pay-onetime [data-term-group] { display: none; }

/* 4-Button-Toggles (Anzahl / Laufzeit) auf Mobile bildschirmbreit einpassen (v3.0.9) */
@media (max-width: 600px) {
  .price-toggle-4 {
    display: flex;
    width: 100%;
    max-width: 420px;
  }
  .price-toggle-4 .price-toggle-btn {
    flex: 1 1 0;
    padding: 10px 4px;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
  }
}

/* Laufzeit-Buttons über der erlaubten Systemanzahl deaktiviert (v3.0.10) */
.price-toggle-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* === MwSt-Hinweis bei Preisen (Preise-Seite) === */
.price-mwst-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-600, #6b6864);
  font-weight: 500;
  margin: 24px auto 8px;
  padding: 10px 18px;
  background: rgba(239, 125, 0, 0.06);
  border-radius: var(--radius-pill, 999px);
  display: inline-block;
  letter-spacing: 0.01em;
}
.price-mwst-note + .package-disclaimer { margin-top: 18px; }
.price-list + .price-mwst-note { display: block; max-width: 380px; }

/* === Klarna-Info-Link === */
.klarna-info-link-wrap {
  margin-top: 12px !important;
  margin-bottom: 8px !important;
}
.klarna-info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #FFA8CD;
  color: #0D0C0A !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  border-radius: var(--radius-pill, 999px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  letter-spacing: 0.01em;
}
.klarna-info-link:hover,
.klarna-info-link:focus {
  background: #FFB8D5;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 168, 205, 0.45);
  text-decoration: none !important;
  color: #0D0C0A !important;
}
.klarna-info-link:before {
  content: "K";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #0D0C0A;
  color: #FFA8CD;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
  letter-spacing: 0;
  margin-right: 4px;
}

/* === MwSt-Mini-Hinweis direkt am Preis === */
.price-mwst-mini {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--grey-500, #9b9794);
  margin-left: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.price-row .price-mwst-mini { font-size: 0.75rem; opacity: 0.75; }

/* === Vorher/Nachher-Slider: Platzhalter wenn kein Bild gesetzt === */
.ba-placeholder {
  background-color: var(--grey-200, #ece8e2) !important;
  background-image: linear-gradient(135deg,
    rgba(239, 125, 0, 0.04) 0%,
    rgba(13, 12, 10, 0.06) 50%,
    rgba(239, 125, 0, 0.04) 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ba-placeholder-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey-500, #8c8a87);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 14px;
  border-radius: var(--radius-pill, 999px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ba-after.ba-placeholder {
  background-color: #f5f1eb !important;
}
.ba-before.ba-placeholder {
  background-color: #e8e4dd !important;
}

/* ============== ZAHLUNG / RECHNER-SECTION (v3.0.65) ============== */
.rechner-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 820px) { .rechner-steps { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; } }
.rechner-step {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}
.rechner-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rechner-step-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}
.rechner-step p { margin: 0; line-height: 1.6; color: var(--grey-700); }
.rechner-step p strong { color: var(--ink); }
.rechner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
}

/* ============== WECHSELSERVICE-PAKETE (v3.0.76) ============== */
.ws-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 56px 0 8px;
  text-align: center;
}
.ws-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--grey-700);
  line-height: 1.6;
}
.ws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px) { .ws-grid { grid-template-columns: 1fr; max-width: 560px; } }
.ws-card-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.4;
}
.ws-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}
.ws-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ws-card-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.ws-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}
.ws-card-desc { color: var(--grey-700); line-height: 1.6; margin: 0 0 18px; }
.ws-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.ws-card-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.5;
}
.ws-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.ws-card-hinweis {
  font-size: 0.875rem;
  color: var(--grey-700);
  background: var(--grey-50);
  border-radius: var(--radius-sm, 8px);
  padding: 12px 14px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.ws-card-hinweis strong { color: var(--ink); }
.ws-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.ws-card-dauer { font-size: 0.875rem; color: var(--grey-700); }
.ws-card-preis {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

/* ============== WECHSELSERVICE-VERGLEICHSMATRIX (v3.0.79) ============== */
.ws-matrix-wrap {
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ws-matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.ws-matrix th, .ws-matrix td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--grey-200);
}
.ws-matrix thead th {
  border-bottom: 2px solid var(--grey-200);
  vertical-align: bottom;
}
.ws-matrix-corner { background: transparent; border-bottom: 2px solid var(--grey-200); }
.ws-matrix-col { display: table-cell; }
.ws-matrix-col-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.ws-matrix-col-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-700);
  margin-bottom: 2px;
}
.ws-matrix-col-preis {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
}
.ws-matrix-name {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.ws-matrix tbody tr:nth-child(even) { background: var(--grey-50); }
.ws-matrix-cell { width: 16%; }
.ws-matrix-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}
.ws-matrix-check svg { width: 16px; height: 16px; }
.ws-matrix-dash { color: var(--grey-200); font-size: 1.2rem; }

/* ============== STARTERBOXEN (Essential + Premium) v3.0.92 ============== */
.pfl-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 900px;
  margin: 48px auto 0;
}
@media (max-width: 820px) { .pfl-box-grid { grid-template-columns: 1fr; max-width: 520px; } }
.pfl-box {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.pfl-box-featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.pfl-box-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.pfl-box-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 16px;
}
.pfl-box-price { margin-bottom: 20px; }
.pfl-box-price-single {
  display: block;
  font-size: 0.9rem;
  color: var(--grey-700);
  margin-bottom: 2px;
}
.pfl-box-price-single s { opacity: 0.8; }
.pfl-box-price-system {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--orange);
}
.pfl-box-price-syslabel {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-700);
}
.pfl-box-incl-label {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.pfl-box-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pfl-box-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--ink);
  line-height: 1.45;
}
.pfl-box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.pfl-box-for {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.5;
  margin: 0 0 24px;
}
.pfl-box-for strong { color: var(--ink); }
.pfl-box .btn { margin-top: auto; align-self: flex-start; }

/* Empfehlungs-Block */
.pfl-rec {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
}
.pfl-rec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 12px;
}
.pfl-rec-lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--orange);
  margin: 0 0 16px;
}
.pfl-rec-text {
  color: var(--grey-700);
  line-height: 1.7;
  margin: 0 0 40px;
}
.pfl-save-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 16px;
}
.pfl-save-wrap { overflow-x: auto; }
.pfl-save-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 560px;
}
.pfl-save-table th, .pfl-save-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
}
.pfl-save-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--grey-200);
}
.pfl-save-table td { color: var(--grey-700); }
.pfl-save-hl {
  font-weight: 700;
  color: var(--orange) !important;
}
.pfl-save-note {
  font-weight: 600;
  color: var(--ink);
  margin: 20px 0 0;
}

/* ============== PFLEGE-SEITE: ABSCHLUSS-SLOGAN v3.0.94 ============== */
.pfl-outro-section { text-align: center; }
.pfl-outro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 600px) { .pfl-outro { font-size: 1.3rem; } }

/* ============== SEITE: HAARSYSTEM KOSTEN (Pillar) v3.0.96 ============== */
.kosten-article {
  max-width: 760px;
}
.kosten-article p {
  color: var(--grey-700);
  line-height: 1.75;
  margin: 0 0 20px;
}
.staedte-liste {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.staedte-liste li {
  border-bottom: 1px solid var(--grey-200, #e5e5e5);
}
.staedte-liste li:last-child {
  border-bottom: none;
}
.staedte-liste a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.staedte-liste a:hover {
  color: var(--orange);
  padding-left: 8px;
}
.kosten-article h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 44px 0 16px;
}
.kosten-article h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 28px 0 8px;
}
.kosten-article a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kosten-snippet {
  font-size: 1.05rem;
  line-height: 1.7;
}
.kosten-table-wrap { overflow-x: auto; margin: 0 0 20px; }
.kosten-table {
  width: 100%;
  border-collapse: collapse;
}
.kosten-table th, .kosten-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
}
.kosten-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--grey-200);
}
.kosten-table td { color: var(--grey-700); }
.kosten-table td:nth-child(3) { font-weight: 700; color: var(--orange); }
.kosten-author {
  margin-top: 44px;
  padding: 20px 24px;
  background: var(--grey-50);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.kosten-author p { margin: 0; font-size: 0.95rem; }

/* ============== WISSEN-HUB (Blog) v3.0.103 ============== */
.wissen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.wissen-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wissen-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.wissen-card-date {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-bottom: 8px;
}
.wissen-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
}
.wissen-card-excerpt {
  color: var(--grey-700);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.wissen-card-more {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
}

/* ============== HERO BEWERTUNGS-BADGE v3.0.105 ============== */
.hero-rating {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 16px;
  background: var(--orange-light);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
}
