/* ============================================================
   AMENTA / MEDICAL BEAUTY - VEREINHEITLICHTE GESAMT-CSS
   Erstellt: 01.06.2026

   Zweck:
   - Zusammenführung der hochgeladenen CSS-Dateien in eine gemeinsame Datei.
   - Konservativer Merge: bestehende Selektoren und Legacy-Klassen bleiben erhalten.
   - Echte Dubletten wurden nicht erneut aufgenommen.

   Berücksichtigte eindeutige Quellen:
   1) 2b0dfc3b-a7a6-4d46-82e7-c9f2f72c37d7.css  (amenta-neu.css)
   2) 6be01255-4ee4-468c-9f56-9a213a9de753.css  (Merged CSS, korrigierte Fassung 25.05.2026)
   3) bcb489e0-e9b7-4360-a0db-635a58183cb3.css  (Merged CSS, Stand 29.05.2026)

   Als Dubletten erkannt / nicht nochmals übernommen:
   - 9f1fff22-55d9-46c3-a1ee-31a9c1d0cc6f.css = identisch mit 6be01255...
   - c4fca4f0-e67f-4f2f-ba5d-17840e95a116.css = inhaltlich identisch mit bcb489... nach Zeilenumbruch-Normalisierung

   Hinweis zur Reihenfolge:
   - Zuerst neue Amenta-Komponenten und Layouts.
   - Danach Legacy-/Bootstrap-kompatible Platinum/Amenta-Regeln.
   - Zum Schluss die neuere Merged-CSS-Fassung als Override-Basis.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600;700&family=Lato:wght@300;400;500;700&family=Raleway:wght@400;500;600;700&display=swap');


/* ============================================================
   QUELLABSCHNITT 1: 2b0dfc3b-a7a6-4d46-82e7-c9f2f72c37d7.css
   ============================================================ */

/* ════════════════════════════════════════════════════════════════
   amenta-neu.css
   Medical Beauty Karlsruhe – Amenta Cosmetic
   Stand: Mai 2026

   STRUKTUR
   ─────────────────────────────────────────────────────────────
   01  Design Tokens
   02  Reset & Base
   03  Typografie
   04  Utilities
   05  Layout: Header & Navigation
   06  Layout: Nav-Dropdown (Desktop)
   07  Layout: Hero
   08  Layout: Qualifikation-Strip
   09  Layout: Section-Header
   10  Layout: Treatment-Grid
   11  Layout: How-We-Work
   12  Layout: Evidence-Block
   13  Layout: FAQ
   14  Layout: Sources
   15  Layout: Kontakt
   16  Layout: Footer
   17  Komponenten: Buttons
   18  Komponenten: Badges & Tags
   19  Komponenten: Notice / Info-Box
   20  Komponenten: Testimonials
   21  Komponenten: Glossar
   22  Komponenten: Trust-Box
   23  Komponenten: Social-Bar
   24  Komponenten: WhatsApp Float
   25  Seite: Kollagen-Artikel (kollagenverlust.html)
   26  Animationen
   27  Responsive: ≤ 900 px
   28  Responsive: ≤ 600 px (inkl. Hamburger & Mobile-Dropdown)
   29  Responsive: ≤ 480 px
   ════════════════════════════════════════════════════════════════ */


/* ── 01  DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Farben */
  --gold:        #b89a6e;
  --gold-light:  #d4b896;
  --gold-pale:   #f5ede0;
  --gold-deep:   #8a6f4d;
  --dark:        #1a1a18;
  --dark-mid:    #2e2c28;
  --mid:         #5a5750;
  --light:       #f9f6f1;
  --white:       #ffffff;
  --border:      #e8ddd0;

  /* Schriften */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  /* Layout */
  --max:         1100px;

  /* Sonstiges */
  --transition:  0.3s ease;
}


/* ── 02  RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}


/* ── 03  TYPOGRAFIE ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}


/* ── 04  UTILITIES ───────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.muted {
  color: var(--mid);
  font-size: 0.9rem;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 24px;
}

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


/* ── 05  HEADER & NAVIGATION ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

/* Marke / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo  { height: 36px; width: auto; }
.brand-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
}

/* Nav-Container */
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* Alle direkten Nav-Links (nicht der Button) */
nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
nav a:hover         { color: var(--dark); }
nav a:hover::after  { width: 100%; }

/* Hamburger – nur auf Mobile sichtbar (siehe Abschnitt 28) */
.nav-toggle {
  display: none;
}


/* ── 06  NAV-DROPDOWN ────────────────────────────────────────── */

/* Wrapper */
.nav-has-dropdown {
  position: relative;
}

/* Toggle-Button: vollständiger Browser-Reset + passendes Styling */
.nav-dropdown-toggle {
  /* Browser-Reset */
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  height: auto;
  vertical-align: middle;

  /* Optik: identisch mit nav a */
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  position: relative;

  /* Pfeil via ::after */
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}

/* Pfeil-Chevron */
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform var(--transition);
}

/* Hover & aktiver Zustand */
.nav-dropdown-toggle:hover,
.nav-has-dropdown.is-open .nav-dropdown-toggle {
  color: var(--dark);
}
.nav-has-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Dropdown-Panel: standardmäßig unsichtbar */
.nav-dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  z-index: 200;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Einblenden via opacity/visibility – kein display-Toggle */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition-delay: 150ms;
}

/* Dropdown offen (JS setzt .is-open auf .nav-has-dropdown) */
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* Dropdown-Einträge */
.nav-dropdown li + li {
  border-top: 1px solid var(--border);
}
.nav-dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover {
  color: var(--gold-deep);
  background: var(--light);
}


/* ── 07  HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--light);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}

.hero h1         { margin-bottom: 24px; color: var(--dark); }
.hero h1 em      { font-style: italic; color: var(--gold-deep); }

.tl-dr {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0 36px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--dark-mid);
}
.tl-dr strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.hero-availability {
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-top: 10px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}
.hero-availability a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}
.hero-availability a:hover { opacity: 1; }

/* Bild-Stack rechts */
.hero-visual      { position: relative; }
.hero-img-stack   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-img-stack img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.hero-img-stack img:first-child { margin-top: 40px; }

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 200px;
}
.hero-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}


/* ── 08  QUALIFIKATION-STRIP ─────────────────────────────────── */
.qual-strip {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0;
}

.qual-strip-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.qual-strip-lead         { flex: 0 0 260px; }
.qual-strip-lead h2      { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 8px; }
.qual-strip-lead p       { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); margin: 0; }

.qual-list {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  list-style: none;
}
.qual-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.qual-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}


/* ── 09  SECTION-HEADER ──────────────────────────────────────── */
.section-head           { margin-bottom: 48px; }
.section-head .kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section-head h2        { margin-bottom: 16px; }
.section-head p         { color: var(--mid); max-width: 560px; }


/* ── 10  TREATMENT-GRID ──────────────────────────────────────── */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.treatment-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background var(--transition);
}
.treatment-card:hover { background: var(--light); }

.treatment-card .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.treatment-card h3      { font-size: 1.15rem; margin-bottom: 12px; color: var(--dark); }
.treatment-card p       { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

.treatment-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold-light);
  padding: 3px 10px;
  margin-bottom: 16px;
}

.card-meta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  margin: 10px 0;
  padding: 6px 10px;
  border-left: 2px solid var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.treatment-card .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 20px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.treatment-card .learn-link:hover  { border-bottom-color: var(--gold); }
.treatment-card .learn-link::after { content: '→'; }


/* ── 11  HOW-WE-WORK ─────────────────────────────────────────── */
.how-section { background: var(--light); }

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.step-list            { list-style: none; }
.step-list li {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-list li:first-child { padding-top: 0; }

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
  margin-top: 4px;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-content p  { font-size: 0.88rem; color: var(--mid); margin: 0; }

.usps { display: flex; flex-direction: column; gap: 24px; }
.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 28px 28px 28px 32px;
}
.usp-card h3 { font-size: 1rem; margin-bottom: 8px; }
.usp-card p  { font-size: 0.87rem; color: var(--mid); margin: 0; }


/* ── 12  EVIDENCE-BLOCK ──────────────────────────────────────── */
.evidence-section { background: var(--dark-mid); color: var(--white); }

.evidence-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.evidence-lead h2 { color: var(--gold-light); margin-bottom: 12px; }
.evidence-lead p  { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; }

.evidence-sources { display: flex; flex-direction: column; gap: 16px; }

.evidence-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid var(--gold);
  transition: background var(--transition);
}
.evidence-item:hover { background: rgba(255, 255, 255, 0.08); }

.evidence-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.evidence-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.evidence-item a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.evidence-item a:hover { border-bottom-color: var(--gold-light); }

.evidence-note {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.75;
  margin-top: 4px;
  font-style: italic;
}


/* ── 13  FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; }

details.faq-item {
  border-bottom: 1px solid var(--border);
}
details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
details.faq-item[open] summary       { color: var(--gold-deep); }
details.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 24px;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
}


/* ── 14  SOURCES ─────────────────────────────────────────────── */
.sources-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.source-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.source-item::before {
  content: '↗';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.source-item a {
  font-size: 0.82rem;
  color: var(--dark-mid);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}
.source-item a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-light);
}


/* ── 15  KONTAKT ─────────────────────────────────────────────── */
.contact-section { background: var(--light); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 8px; }
.contact-info address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 2;
  margin: 24px 0 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.contact-info address a {
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.contact-info address a:hover { border-bottom-color: var(--gold-light); }

.contact-map {
  background: var(--border);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--mid);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }


/* ── 16  FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-meta { font-size: 0.78rem; }
.footer-meta a {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color var(--transition);
}
.footer-meta a:hover { color: var(--gold-light); }

.footer-logo { height: 28px; width: auto; opacity: 0.6; }


/* ── 17  BUTTONS ─────────────────────────────────────────────── */
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary            { background: var(--gold); color: var(--white); }
.btn-primary:hover      { background: var(--gold-deep); }
.btn-outline            { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-outline:hover      { background: var(--dark); color: var(--white); }


/* ── 18  BADGES & TAGS ───────────────────────────────────────── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold-light);
  padding: 4px 10px;
}


/* ── 19  NOTICE / INFO-BOX ───────────────────────────────────── */
.notice {
  display: flex;
  gap: 12px;
  background: #fdf8f0;
  border: 1px solid var(--gold-light);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
}
.notice::before {
  content: 'ℹ';
  color: var(--gold-deep);
  flex-shrink: 0;
  font-size: 1rem;
}


/* ── 20  TESTIMONIALS ────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 2rem 0;
}

.testimonial-card {
  background: var(--light);
  border: 1px solid rgba(184, 154, 106, 0.2);
  border-radius: 4px;
  padding: 1.5rem;
}
.testimonial-card .stars {
  color: var(--gold-deep);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--dark);
  margin: 0 0 16px;
  padding: 0;
  border: none;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin: 0 0 6px;
}
.testimonial-disclaimer {
  font-size: 0.72rem;
  color: var(--mid);
  font-style: italic;
  margin: 0;
}

.google-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(184, 154, 106, 0.2);
}
.google-cta p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 12px;
}


/* ── 21  GLOSSAR ─────────────────────────────────────────────── */
.glossar-block {
  border: 1px solid rgba(184, 154, 106, 0.2);
  border-radius: 4px;
  padding: 0;
  margin: 1rem 0 2rem;
}
.glossar-block summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  user-select: none;
}
.glossar-block summary::-webkit-details-marker { display: none; }
.glossar-block summary::before {
  content: '+';
  font-size: 1.1rem;
  color: var(--gold-deep);
  transition: content 0.2s ease;
}
.glossar-block[open] summary::before { content: '−'; }

.glossar-block dl {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  border-top: 1px solid rgba(184, 154, 106, 0.15);
}
.glossar-block dt {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-top: 1rem;
  margin-bottom: 4px;
}
.glossar-block dd {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--mid);
  margin: 0;
  padding-left: 0;
}


/* ── 22  TRUST-BOX ───────────────────────────────────────────── */
.trust-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.2rem;
  margin: 2.5rem 0;
}
.trust-box__years {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.trust-box__subtitle {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}
.trust-box__text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}


/* ── 23  SOCIAL-BAR ──────────────────────────────────────────── */
.social-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.social-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-right: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px 7px 10px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.social-link:hover              { opacity: 1; transform: translateY(-1px); }
.social-instagram:hover         { background: #E1306C; border-color: #E1306C; }
.social-facebook:hover          { background: #1877F2; border-color: #1877F2; }
.social-pinterest:hover         { background: #E60023; border-color: #E60023; }
.social-youtube:hover           { background: #FF0000; border-color: #FF0000; }
.social-x:hover                 { background: #000;    border-color: #555; }


/* ── 24  WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  background: #25D366;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}


/* ── 25  SEITE: KOLLAGEN-ARTIKEL ─────────────────────────────── */
.kol-wrap {
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  color: #1a1a18;
  line-height: 1.8;
}

.kol-kicker {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B89A6A;
  margin-bottom: 1.1rem;
}

.kol-h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: #1a1a18;
}
.kol-h1 em { color: #B89A6A; font-style: italic; }

.kol-deck {
  font-size: 1.15rem;
  font-style: italic;
  color: #5a5248;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.kol-rule {
  height: 1px;
  background: rgba(184, 154, 106, 0.3);
  border: none;
  margin: 1.8rem 0;
}

.kol-intro { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; }

.kol-pull {
  font-size: 1.45rem;
  font-style: italic;
  color: #B89A6A;
  border-left: 2px solid #D4BC94;
  padding-left: 1.2rem;
  margin: 2.2rem 0;
  line-height: 1.5;
}

.kol-h2 {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B89A6A;
  margin: 2.5rem 0 1.2rem;
}

.kol-body { font-size: 0.97rem; line-height: 1.85; margin-bottom: 1.3rem; }

/* Symptom-Liste */
.kol-signs {
  border: 1px solid rgba(184, 154, 106, 0.25);
  margin-bottom: 2rem;
}
.kol-sign {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid rgba(184, 154, 106, 0.15);
}
.kol-sign:last-child { border-bottom: none; }
.kol-sign-num {
  font-size: 2.2rem;
  color: #D4BC94;
  font-weight: normal;
  line-height: 1;
  text-align: right;
  padding-top: 0.15rem;
}
.kol-sign-title {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a18;
  margin-bottom: 0.35rem;
}
.kol-sign p { font-size: 0.93rem; color: #5a5248; margin: 0; line-height: 1.7; }

/* Nährstoffe */
.kol-nutrients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(184, 154, 106, 0.2);
  border: 1px solid rgba(184, 154, 106, 0.2);
  margin: 1.5rem 0 2.2rem;
}
.kol-nutrient { background: #FAF7F2; padding: 0.95rem 1.1rem; }
.kol-nutrient-name {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B89A6A;
  margin-bottom: 0.4rem;
}
.kol-nutrient p { font-size: 0.85rem; color: #5a5248; margin: 0; line-height: 1.65; }

/* Behandlungs-Grid */
.kol-treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(184, 154, 106, 0.2);
  border: 1px solid rgba(184, 154, 106, 0.2);
  margin: 1.5rem 0 2rem;
}
.kol-treatment { background: #FAF7F2; padding: 1.1rem 1.2rem; }
.kol-treatment-name {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a18;
  margin-bottom: 0.3rem;
}
.kol-treatment p    { font-size: 0.88rem; color: #5a5248; margin: 0.35rem 0 0.6rem; line-height: 1.65; }
.kol-treatment-link {
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #B89A6A;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.kol-treatment-link:hover { text-decoration: underline; }

/* CTA */
.kol-cta {
  border: 1px solid #D4BC94;
  padding: 1.6rem 1.8rem;
  margin-top: 2.5rem;
}
.kol-cta p {
  font-style: italic;
  font-size: 1.05rem;
  color: #5a5248;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.kol-cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.kol-cta-btn {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B89A6A;
  text-decoration: none;
  border-bottom: 1px solid #D4BC94;
  padding-bottom: 2px;
}
.kol-cta-btn--primary { color: #1a1a18; border-color: #1a1a18; }
.kol-cta-btn:hover    { color: #1a1a18; border-color: #1a1a18; }

/* Related */
.kol-related {
  background: #f5f1ea;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
}
.kol-related-title {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5248;
  margin-bottom: 0.8rem;
}
.kol-related ul  { list-style: none; padding: 0; margin: 0; }
.kol-related li  { margin-bottom: 0.4rem; font-size: 0.92rem; }
.kol-related a   { color: #B89A6A; }
.kol-related a:hover { text-decoration: underline; }

/* Disclaimer */
.kol-disclaimer {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: #888;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 154, 106, 0.2);
  font-style: italic;
  line-height: 1.65;
}

/* tldr */
.kol-tldr {
  background: #FAF7F2;
  border: 1px solid rgba(184, 154, 106, 0.25);
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  color: #5a5248;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.kol-tldr strong {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B89A6A;
  margin-bottom: 0.4rem;
}

/* Breadcrumb */
.kol-breadcrumb          { margin-bottom: 1.5rem; }
.kol-breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #888;
}
.kol-breadcrumb ol li + li::before { content: '›'; margin-right: 0.5rem; }
.kol-breadcrumb a        { color: #B89A6A; }
.kol-breadcrumb a:hover  { text-decoration: underline; }

/* FAQ */
.kol-faq              { margin: 1.5rem 0 2rem; }
.kol-faq-item         { border-bottom: 1px solid rgba(184, 154, 106, 0.2); }
.kol-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #1a1a18;
  user-select: none;
}
.kol-faq-item summary::-webkit-details-marker { display: none; }
.kol-faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: #B89A6A;
  flex-shrink: 0;
}
.kol-faq-item[open] summary::after { content: '−'; }
.kol-faq-item p {
  font-size: 0.92rem;
  color: #5a5248;
  line-height: 1.75;
  padding-bottom: 1rem;
  margin: 0;
}

/* Expert-Block */
.kol-expert {
  background: #FAF7F2;
  border-left: 2px solid #D4BC94;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}
.kol-expert-inner {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.kol-expert-avatar {
  width: 44px;
  height: 44px;
  background: #D4BC94;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.kol-expert-quote {
  font-style: italic;
  font-size: 1rem;
  color: #1a1a18;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.kol-expert-name {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B89A6A;
  margin: 0;
}


/* ── 26  ANIMATIONEN ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > *                    { animation: fadeUp 0.7s ease both; }
.hero-inner > *:nth-child(2)       { animation-delay: 0.15s; }


/* ── 27  RESPONSIVE ≤ 900 px ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .grid-2,
  .how-inner,
  .evidence-inner,
  .contact-inner    { grid-template-columns: 1fr; gap: 40px; }

  .treatment-grid   { grid-template-columns: 1fr 1fr; }
  .grid-4           { grid-template-columns: 1fr 1fr; }
  .sources-list     { grid-template-columns: 1fr; }

  .qual-strip-inner { flex-direction: column; gap: 32px; }
  .qual-list        { grid-template-columns: 1fr; }

  .hero-visual      { display: none; }
  .footer-inner     { flex-direction: column; text-align: center; }
}


/* ── 28  RESPONSIVE ≤ 600 px (Mobile / Hamburger) ───────────── */
@media (max-width: 600px) {
  .treatment-grid { grid-template-columns: 1fr; }
  .grid-4         { grid-template-columns: 1fr; }
  .section        { padding: 56px 0; }

  /* Hamburger-Button einblenden */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Nav-Menü ausblenden – JS schaltet .is-open */
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 99;
  }
  nav.is-open { display: flex; }

  nav a {
    padding: 14px 24px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
  }
  nav a:last-child { border-bottom: none; }

  /* Dropdown auf Mobile: flach eingebettet, immer sichtbar */
  .nav-has-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown-toggle {
    padding: 14px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    position: static;
    border: none;
    border-top: 1px solid var(--border);
    box-shadow: none;
    min-width: 0;
    padding: 0;
    background: var(--light);
    /* Standardmäßig eingeklappt via height */
    display: none;
  }
  .nav-has-dropdown.is-open .nav-dropdown {
    display: block;
  }
  .nav-dropdown li a {
    padding: 12px 24px 12px 36px;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown li + li { border-top: none; }
}


/* ── 29  RESPONSIVE ≤ 480 px ─────────────────────────────────── */
@media (max-width: 480px) {
  /* Social-Bar: nur Icons */
  .social-link span { display: none; }
  .social-link      { padding: 9px; border-radius: 50%; }
  .social-bar       { gap: 8px; }

  /* WhatsApp: nur Icon */
  .wa-float span    { display: none; }
  .wa-float         { padding: 14px; border-radius: 50%; }
}


/* ============================================================
   QUELLABSCHNITT 2: 6be01255-4ee4-468c-9f56-9a213a9de753.css
   ============================================================ */

/* ============================================
   PLATINUM MEDICAL / AMENTA COSMETIC - MERGED CSS
   Zusammengeführt aus:
   - Platinum Medical Theme (fadenlifting-karlsruhe.de)
   - Amenta Cosmetic Theme (amenta.de)
   Stand: 25.02.2026, 12:00
   Korrektur: 25.05.2026 – @media print korrekt geschlossen,
   Link-Sichtbarkeit (#27/#28) eingebaut
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLEN)
   ============================================ */
:root {
  /* Farbpalette */
  --color-primary: #1A4D6D;
  --color-primary-light: #2A6B8F;
  --color-primary-dark: #0F3449;
  --color-secondary: #B8A398;
  --color-secondary-light: #D4C4BA;
  --color-secondary-dark: #9A8576;
  --color-accent: #C9B896;
  --color-accent-light: #E0D4BA;
  --color-accent-dark: #A99A74;
  --color-dark: #2C3E50;
  --color-light: #FAFBFC;
  --color-success: #5A9B8E;
  --color-white: #FFFFFF;

  /* Graustufen */
  --color-gray-100: #F8F9FA;
  --color-gray-200: #ECF0F3;
  --color-gray-300: #DEE4E9;
  --color-gray-400: #CED6DC;
  --color-gray-500: #A8B4BE;
  --color-gray-600: #6C7A89;
  --color-gray-700: #4A5568;
  --color-gray-800: #2C3E50;
  --color-gray-900: #1A2332;

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Raleway', sans-serif;

  /* Spacing System (8px grid) */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 6rem;     /* 96px */

  /* Schatten */
  --shadow-sm: 0 2px 4px rgba(26, 77, 109, 0.06);
  --shadow-md: 0 4px 8px rgba(26, 77, 109, 0.1);
  --shadow-lg: 0 8px 16px rgba(26, 77, 109, 0.14);
  --shadow-xl: 0 16px 32px rgba(26, 77, 109, 0.18);
  --shadow-2xl: 0 24px 48px rgba(26, 77, 109, 0.22);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-800);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
object,
embed,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--color-primary-dark);
}

/* ============================================
   TYPOGRAFIE KLASSEN
   ============================================ */
.Ueberschrift1,
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.Unterueberschrift1,
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--color-secondary-dark);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

.Fliesstext,
p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin-bottom: var(--space-sm);
}

.Fliesstext_blau {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.7;
}

/* Exklusiv aus amenta.de */
.Fliesstext2 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #DC3545;
  font-style: italic;
}

/* Exklusiv aus amenta.de */
.Hinweis_magenta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #FF0080;
  font-weight: bold;
}

.bildunterschrift {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-gray-600);
  text-align: center;
  margin-top: var(--space-xs);
}

.Schnoerkelschrift-fett {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

/* Exklusiv aus amenta.de */
.Schnoerkelschrift-fett-negativ {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.gridContainer {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content-with-sidebar {
  display: block;
}

/* ============================================
   NAVIGATION (BOOTSTRAP 5)
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
  border-bottom: 1px solid var(--color-gray-200);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-primary) !important;
  letter-spacing: -0.01em;
  transition: all var(--transition-base);
}

.navbar-brand:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}

.nav-link {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-gray-700) !important;
  padding: var(--space-xs) var(--space-sm) !important;
  margin: 0 0.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.03em;
}

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

.nav-link:hover {
  color: var(--color-primary) !important;
  background: var(--color-gray-100);
}

.nav-link:hover::after {
  width: 80%;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  margin-top: var(--space-xs);
  background: var(--color-white);
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-gray-700);
}

.dropdown-item:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateX(4px);
}

.navbar-toggler {
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(26, 77, 109, 0.2);
}

/* ============================================
   CAROUSEL STYLING (BOOTSTRAP 5)
   ============================================ */
#myCarousel {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.carousel-inner {
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.carousel-item {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.96);
  transition: filter var(--transition-slow);
}

.carousel-item:hover img {
  filter: brightness(1);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: var(--color-accent);
  transform: scale(1.2);
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--color-accent);
  transform: scale(1.2);
}

.abstandshalter_oberer_rand {
  height: var(--space-md);
}

/* ============================================
   CONTENT AREA
   ============================================ */
#textfeld {
  background: var(--color-white);
  padding: var(--space-2xl) var(--space-xl);
  margin: var(--space-2xl) auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  position: relative;
  animation: contentFadeIn 0.6s ease-out;
}

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

#textfeld::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-secondary) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ============================================
   SIDEBAR ELEMENTE
   ============================================ */
#Hinweisfenster {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: sticky;
  top: 100px;
  margin: var(--space-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(201, 184, 150, 0.3);
}

#Hinweisfenster:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

#Hinweisfenster a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 4px;
  transition: all var(--transition-base);
}

#Hinweisfenster a:hover {
  color: var(--color-accent);
  text-decoration-thickness: 2px;
}

#Hinweisfenster strong {
  font-size: 1.5rem;
  display: block;
  margin: var(--space-sm) 0;
  color: var(--color-accent);
}

#Hinweisfenster .Fliesstext {
  color: var(--color-white);
  font-size: 1rem;
}

/* Exklusiv aus amenta.de */
#Werbefenster {
  text-align: center;
  margin: var(--space-md);
  padding: 0;
}

#Werbefenster img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

#Werbefenster img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   FARBIGE ABSÄTZE
   ============================================ */
#Absatz_hellgrau {
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

#Absatz_tuerkis {
  background: linear-gradient(135deg, #E8F4F8 0%, #D8EDF5 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-success);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

#Absatz_hautfarben {
  background: linear-gradient(135deg, #F9F7F4 0%, #F2EDE8 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-2xl);
  text-align: center;
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-accent-light);
}

/* ============================================
   MODERNE BUTTONS
   ============================================ */
.btn-primary,
.myButton {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white) !important;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.myButton {
  width: 100%;
  padding: var(--space-md);
}

.btn-primary::before,
.myButton::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.myButton:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover,
.myButton:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
  color: var(--color-white) !important;
}

.btn-primary:active,
.myButton:active {
  transform: translateY(0);
}

/* ============================================
   SOCIAL MEDIA BUTTONS
   ============================================ */
.smGlobalBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 var(--space-xs);
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.smGlobalBtn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transform: scale(0);
  border-radius: 50%;
  transition: transform var(--transition-base);
  z-index: 0;
}

.smGlobalBtn:hover::before {
  transform: scale(1);
}

.smGlobalBtn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.smGlobalBtn i {
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.facebookBtn { background: #4267B2; }
.facebookBtn:hover { color: #4267B2 !important; }
.twitterBtn { background: #1DA1F2; }
.twitterBtn:hover { color: #1DA1F2 !important; }
.pinterestBtn { background: #E60023; }
.pinterestBtn:hover { color: #E60023 !important; }
.instagramBtn { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
.instagramBtn:hover { color: #E60023 !important; }

/* ============================================
   SHARE BUTTONS
   ============================================ */
.share {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  font-family: var(--font-body);
  justify-content: center;
  margin: var(--space-lg) 0;
}

.share span:first-child {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.share a,
.share button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

.share a:hover,
.share button:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

[data-share-status] {
  font-size: 0.85rem;
  color: var(--color-success);
  font-weight: 500;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white) !important;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 9999;
  border: 3px solid var(--color-white);
  text-decoration: none;
}

.back-to-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: var(--shadow-2xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
  color: var(--color-white) !important;
}

.back-to-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-3xl) var(--space-md) var(--space-lg);
  text-align: center;
  margin-top: var(--space-3xl);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--color-accent) 0%,
    var(--color-secondary) 50%,
    var(--color-primary-light) 100%);
}

#footer a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  transition: all var(--transition-base);
}

#footer a:hover {
  color: var(--color-accent);
  text-decoration-thickness: 2px;
}

#footer p {
  color: rgba(255, 255, 255, 0.85);
  margin: var(--space-sm) 0;
  font-size: 0.9rem;
}

#footer img {
  margin: var(--space-md) auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

#footer img:hover {
  opacity: 1;
}

/* ============================================
   TOC, FEATURE-LISTE, BENEFITS, FAQ
   ============================================ */
.toc-box {
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
  border: 1px solid var(--color-gray-200);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.toc-list {
  margin: 0;
  padding-left: 1.25rem;
}

.toc-list li {
  margin: 0.35rem 0;
}

.toc-list a {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-primary);
}

.toc-list a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.feature-list {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
  color: var(--color-gray-700);
}

.feature-list li {
  margin: 0.35rem 0;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin: 0 0 var(--space-lg);
}

.benefit-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

.faq {
  margin-bottom: var(--space-lg);
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  margin: var(--space-sm) 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: var(--space-md);
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-primary);
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent-dark);
  font-weight: 800;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-body {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--color-gray-200);
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
}

/* ============================================
   CHATBOT CONTAINER
   ============================================ */
.chatbot-container {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out; }
.animate-slide-in-right { animation: slideInRight 0.6s ease-out; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile (bis 767px) */
@media only screen and (max-width: 767px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  #myCarousel {
    margin-top: 60px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  #textfeld {
    padding: var(--space-md);
    margin: var(--space-md) auto;
  }

  #Hinweisfenster {
    position: static;
    margin: var(--space-md) 0;
  }

  #Werbefenster {
    margin: var(--space-md) 0;
  }

  .navbar-brand {
    font-size: 1.35rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

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

  .chatbot-container {
    min-height: 500px;
  }

  .chatbot-container > div {
    height: 500px !important;
  }
}

/* Tablet (768px bis 991px) */
@media only screen and (min-width: 768px) {
  .gridContainer {
    width: 90%;
    padding: 0 var(--space-lg);
  }

  #textfeld {
    margin: var(--space-xl) auto;
    padding: var(--space-2xl);
  }

  #Hinweisfenster {
    position: sticky;
    top: 100px;
    margin: var(--space-lg);
  }

  #Werbefenster {
    margin: var(--space-lg);
  }
}

/* Desktop (992px und größer) */
@media only screen and (min-width: 992px) {
  .gridContainer {
    width: 85%;
    max-width: 1400px;
  }

  #textfeld {
    margin: var(--space-2xl) auto;
    padding: var(--space-3xl) var(--space-2xl);
  }

  .content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-xl);
    align-items: start;
  }

  #Hinweisfenster {
    margin: 0;
  }

  #Werbefenster {
    margin: var(--space-md) 0 0 0;
  }
}

/* Large Desktop (1200px und größer) */
@media only screen and (min-width: 1200px) {
  .gridContainer {
    max-width: 1400px;
  }

  #textfeld {
    padding: var(--space-3xl);
  }
}

/* ============================================
   LINK-SICHTBARKEIT IM TEXTFELD
   Festvorgabe #28 – Stand: Mai 2026
   ============================================ */

/* Inhaltliche Links im Haupttextbereich
   deutlich als Links erkennbar machen */
#textfeld a {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color var(--transition-base),
              text-decoration-color var(--transition-base);
}

#textfeld a:hover {
  color: var(--color-primary-dark);
  text-decoration-color: var(--color-primary-dark);
  text-decoration-thickness: 2px;
}

/* Ausnahme: Buttons erhalten keine Unterstreichung */
#textfeld a.btn-primary {
  text-decoration: none;
  font-weight: 600;
}

#textfeld a.btn-primary:hover {
  text-decoration: none;
}

/* Quellen-Links im aufgeklappten Evidenzblock */
.faq-body a {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  font-weight: 500;
}

.faq-body a:hover {
  color: var(--color-primary-dark);
  text-decoration-thickness: 2px;
}

/* ============================================
   SEITEN-SPEZIFISCHE STYLES
   ============================================ */

/* === Stellenangebot-Seite === */
/* Ergänzt: 17.05.2026 */
.stellenangebot-wrapper {
  max-width: 720px;
}
.stellenangebot-wrapper .date-note {
  font-style: italic;
  color: #888;
  margin-bottom: 1.5rem;
}
.stellenangebot-wrapper .Unterueberschrift2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin: 1.8rem 0 0.6rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.3rem;
}
.stellenangebot-liste {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.stellenangebot-liste li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}
.stellenangebot-liste li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #999;
}
.stellenangebot-trennlinie {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}
.tagline-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #aaa;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.logo-rechts {
  text-align: right;
  margin-top: 1rem;
}
/* === Ende Stellenangebot-Seite === */

/* === Kollagenverlust-Artikel === */
.kol-wrap {
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  color: #1a1a18;
  line-height: 1.8;
}
.kol-kicker {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #B89A6A;
  display: block;
  margin-bottom: 1.1rem;
}
.kol-h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 .8rem;
  color: #1a1a18;
}
.kol-h1 em { color: #B89A6A; font-style: italic; }
.kol-deck {
  font-size: 1.15rem;
  font-style: italic;
  color: #5a5248;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.kol-rule { height: 1px; background: rgba(184,154,106,.3); border: none; margin: 1.8rem 0; }
.kol-intro { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; }
.kol-pull {
  font-size: 1.45rem;
  font-style: italic;
  color: #B89A6A;
  border-left: 2px solid #D4BC94;
  padding-left: 1.2rem;
  margin: 2.2rem 0;
  line-height: 1.5;
}
.kol-h2 {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #B89A6A;
  margin: 2.5rem 0 1.2rem;
}
.kol-signs { border: 1px solid rgba(184,154,106,.25); margin-bottom: 2rem; }
.kol-sign {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid rgba(184,154,106,.15);
}
.kol-sign:last-child { border-bottom: none; }
.kol-sign-num {
  font-size: 2.2rem;
  color: #D4BC94;
  font-weight: normal;
  line-height: 1;
  text-align: right;
  padding-top: .15rem;
}
.kol-sign-title {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a1a18;
  display: block;
  margin-bottom: .35rem;
}
.kol-sign p { font-size: .93rem; color: #5a5248; margin: 0; line-height: 1.7; }
.kol-body { font-size: .97rem; line-height: 1.85; margin-bottom: 1.3rem; }
.kol-nutrients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(184,154,106,.2);
  border: 1px solid rgba(184,154,106,.2);
  margin: 1.5rem 0 2.2rem;
}
.kol-nutrient { background: #FAF7F2; padding: .95rem 1.1rem; }
.kol-nutrient-name {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #B89A6A;
  margin-bottom: .4rem;
}
.kol-nutrient p { font-size: .85rem; color: #5a5248; margin: 0; line-height: 1.65; }
.kol-treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(184,154,106,.2);
  border: 1px solid rgba(184,154,106,.2);
  margin: 1.5rem 0 2rem;
}
.kol-treatment { background: #FAF7F2; padding: 1.1rem 1.2rem; }
.kol-treatment-name {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a1a18;
  display: block;
  margin-bottom: .3rem;
}
.kol-treatment-link { font-family: Arial, sans-serif; font-size: 11px; color: #B89A6A; text-decoration: none; letter-spacing: .06em; }
.kol-treatment-link:hover { text-decoration: underline; }
.kol-treatment p { font-size: .88rem; color: #5a5248; margin: .35rem 0 .6rem; line-height: 1.65; }
.kol-cta { border: 1px solid #D4BC94; padding: 1.6rem 1.8rem; margin-top: 2.5rem; }
.kol-cta p { font-style: italic; font-size: 1.05rem; color: #5a5248; margin-bottom: 1rem; line-height: 1.7; }
.kol-cta-btn {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #B89A6A;
  text-decoration: none;
  border-bottom: 1px solid #D4BC94;
  padding-bottom: 2px;
}
.kol-cta-btn:hover { color: #1a1a18; border-color: #1a1a18; }
.kol-related { background: #f5f1ea; padding: 1.2rem 1.5rem; margin-top: 2rem; }
.kol-related-title {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5a5248;
  margin-bottom: .8rem;
}
.kol-related ul { list-style: none; padding: 0; margin: 0; }
.kol-related li { margin-bottom: .4rem; font-size: .92rem; }
.kol-related a { color: #B89A6A; text-decoration: none; }
.kol-related a:hover { text-decoration: underline; }
.kol-disclaimer {
  font-family: Arial, sans-serif;
  font-size: .78rem;
  color: #888;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,154,106,.2);
  font-style: italic;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .kol-sign { grid-template-columns: 2.5rem 1fr; }
  .kol-sign-num { font-size: 1.6rem; }
}
/* === Ende Kollagenverlust-Artikel === */

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  #Hinweisfenster,
  #Werbefenster,
  #footer,
  .back-to-top,
  .share {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  #textfeld {
    box-shadow: none;
    page-break-inside: avoid;
  }
}


/* ============================================================
   QUELLABSCHNITT 3: bcb489e0-e9b7-4360-a0db-635a58183cb3.css
   ============================================================ */

/* ============================================
   PLATINUM MEDICAL / AMENTA COSMETIC - MERGED CSS
   Zusammengeführt aus:
   - Platinum Medical Theme (fadenlifting-karlsruhe.de)
   - Amenta Cosmetic Theme (amenta.de)
   Stand: 29.05.2026 07:20
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLEN)
   ============================================ */
:root {
  /* Farbpalette */
  --color-primary: #1A4D6D;
  --color-primary-light: #2A6B8F;
  --color-primary-dark: #0F3449;
  --color-secondary: #B8A398;
  --color-secondary-light: #D4C4BA;
  --color-secondary-dark: #9A8576;
  --color-accent: #C9B896;
  --color-accent-light: #E0D4BA;
  --color-accent-dark: #A99A74;
  --color-dark: #2C3E50;
  --color-light: #FAFBFC;
  --color-success: #5A9B8E;
  --color-white: #FFFFFF;

  /* Graustufen */
  --color-gray-100: #F8F9FA;
  --color-gray-200: #ECF0F3;
  --color-gray-300: #DEE4E9;
  --color-gray-400: #CED6DC;
  --color-gray-500: #A8B4BE;
  --color-gray-600: #6C7A89;
  --color-gray-700: #4A5568;
  --color-gray-800: #2C3E50;
  --color-gray-900: #1A2332;

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Raleway', sans-serif;

  /* Spacing System (8px grid) */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 1rem;      /* 16px */
  --space-md: 1.5rem;    /* 24px */
  --space-lg: 2rem;      /* 32px */
  --space-xl: 3rem;      /* 48px */
  --space-2xl: 4rem;     /* 64px */
  --space-3xl: 6rem;     /* 96px */

  /* Schatten */
  --shadow-sm: 0 2px 4px rgba(26, 77, 109, 0.06);
  --shadow-md: 0 4px 8px rgba(26, 77, 109, 0.1);
  --shadow-lg: 0 8px 16px rgba(26, 77, 109, 0.14);
  --shadow-xl: 0 16px 32px rgba(26, 77, 109, 0.18);
  --shadow-2xl: 0 24px 48px rgba(26, 77, 109, 0.22);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-800);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
object,
embed,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--color-primary-dark);
}

/* ============================================
   TYPOGRAFIE KLASSEN
   ============================================ */
.Ueberschrift1,
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.Unterueberschrift1,
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--color-secondary-dark);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-accent);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

.Fliesstext,
p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin-bottom: var(--space-sm);
}

.Fliesstext_blau {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.7;
}

/* Exklusiv aus amenta.de */
.Fliesstext2 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #DC3545;
  font-style: italic;
}

/* Exklusiv aus amenta.de */
.Hinweis_magenta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #FF0080;
  font-weight: bold;
}

.bildunterschrift {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-gray-600);
  text-align: center;
  margin-top: var(--space-xs);
}

.Schnoerkelschrift-fett {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

/* Exklusiv aus amenta.de */
.Schnoerkelschrift-fett-negativ {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.gridContainer {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content-with-sidebar {
  display: block;
}

/* ============================================
   NAVIGATION (BOOTSTRAP 5)
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
  border-bottom: 1px solid var(--color-gray-200);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--color-primary) !important;
  letter-spacing: -0.01em;
  transition: all var(--transition-base);
}

.navbar-brand:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}

.nav-link {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-gray-700) !important;
  padding: var(--space-xs) var(--space-sm) !important;
  margin: 0 0.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.03em;
}

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

.nav-link:hover {
  color: var(--color-primary) !important;
  background: var(--color-gray-100);
}

.nav-link:hover::after {
  width: 80%;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  margin-top: var(--space-xs);
  background: var(--color-white);
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--color-gray-700);
}

.dropdown-item:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateX(4px);
}

.navbar-toggler {
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(26, 77, 109, 0.2);
}

/* ============================================
   CAROUSEL STYLING (BOOTSTRAP 5)
   ============================================ */
#myCarousel {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.carousel-inner {
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.carousel-item {
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.96);
  transition: filter var(--transition-slow);
}

.carousel-item:hover img {
  filter: brightness(1);
}

/* Bootstrap 5 Carousel Indicators (button-basiert) */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: var(--color-accent);
  transform: scale(1.2);
}

/* Fallback für ältere Markup-Variante */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--color-accent);
  transform: scale(1.2);
}

.abstandshalter_oberer_rand {
  height: var(--space-md);
}

/* ============================================
   CONTENT AREA
   ============================================ */
#textfeld {
  background: var(--color-white);
  padding: var(--space-2xl) var(--space-xl);
  margin: var(--space-2xl) auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  position: relative;
  animation: contentFadeIn 0.6s ease-out;
}

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

#textfeld::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-secondary) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ============================================
   LINK-SICHTBARKEIT IM TEXTFELD (Festvorgabe #28)
   Alle inhaltlichen Links im #textfeld werden
   optisch als Links erkennbar gemacht.
   Ausnahme: .btn-primary erhält keine Unterstreichung.
   ============================================ */
#textfeld a:not(.btn-primary) {
  text-decoration: underline;
  text-decoration-color: var(--color-accent-dark);
  text-underline-offset: 3px;
}

#textfeld a:not(.btn-primary):hover {
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 2px;
}

/* ============================================
   SIDEBAR ELEMENTE
   ============================================ */
#Hinweisfenster {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: sticky;
  top: 100px;
  margin: var(--space-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(201, 184, 150, 0.3);
}

#Hinweisfenster:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

#Hinweisfenster a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 4px;
  transition: all var(--transition-base);
}

#Hinweisfenster a:hover {
  color: var(--color-accent);
  text-decoration-thickness: 2px;
}

#Hinweisfenster strong {
  font-size: 1.5rem;
  display: block;
  margin: var(--space-sm) 0;
  color: var(--color-accent);
}

#Hinweisfenster .Fliesstext {
  color: var(--color-white);
  font-size: 1rem;
}

/* Exklusiv aus amenta.de */
#Werbefenster {
  text-align: center;
  margin: var(--space-md);
  padding: 0;
}

#Werbefenster img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

#Werbefenster img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   FARBIGE ABSÄTZE (ID-Selektoren, Legacy)
   ============================================ */
#Absatz_hellgrau {
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

#Absatz_tuerkis {
  background: linear-gradient(135deg, #E8F4F8 0%, #D8EDF5 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-success);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

#Absatz_hautfarben {
  background: linear-gradient(135deg, #F9F7F4 0%, #F2EDE8 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-2xl);
  text-align: center;
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-accent-light);
}

/* ============================================
   ABSATZ-KLASSEN (Klassen-Selektoren, Festvorgabe #28)
   Spiegeln die gleichnamigen ID-Selektoren,
   damit dieselben Styles mehrfach pro Seite
   verwendet werden können.
   ============================================ */
.Absatz_hellgrau {
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

.Absatz_tuerkis {
  background: linear-gradient(135deg, #E8F4F8 0%, #D8EDF5 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-success);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

.Absatz_hautfarben {
  background: linear-gradient(135deg, #F9F7F4 0%, #F2EDE8 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-2xl);
  text-align: center;
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-accent-light);
}

/* ============================================
   MODERNE BUTTONS
   ============================================ */
.btn-primary,
.myButton {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white) !important;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* myButton bekommt volle Breite + größeres Padding (aus amenta.de) */
.myButton {
  width: 100%;
  padding: var(--space-md);
}

.btn-primary::before,
.myButton::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.myButton:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover,
.myButton:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
  color: var(--color-white) !important;
}

.btn-primary:active,
.myButton:active {
  transform: translateY(0);
}

/* ============================================
   SOCIAL MEDIA BUTTONS
   ============================================ */
.smGlobalBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 var(--space-xs);
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.smGlobalBtn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transform: scale(0);
  border-radius: 50%;
  transition: transform var(--transition-base);
  z-index: 0;
}

.smGlobalBtn:hover::before {
  transform: scale(1);
}

.smGlobalBtn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.smGlobalBtn i {
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.facebookBtn {
  background: #4267B2;
}

.facebookBtn:hover {
  color: #4267B2 !important;
}

.twitterBtn {
  background: #1DA1F2;
}

.twitterBtn:hover {
  color: #1DA1F2 !important;
}

.pinterestBtn {
  background: #E60023;
}

.pinterestBtn:hover {
  color: #E60023 !important;
}

.instagramBtn {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.instagramBtn:hover {
  color: #E60023 !important;
}

/* ============================================
   SHARE BUTTONS (aus fadenlifting-karlsruhe.de)
   ============================================ */
.share {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  font-family: var(--font-body);
  justify-content: center;
  margin: var(--space-lg) 0;
}

.share span:first-child {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

.share a,
.share button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

.share a:hover,
.share button:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

[data-share-status] {
  font-size: 0.85rem;
  color: var(--color-success);
  font-weight: 500;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white) !important;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 9999;
  border: 3px solid var(--color-white);
  text-decoration: none;
}

.back-to-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: var(--shadow-2xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
  color: var(--color-white) !important;
}

.back-to-top::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-3xl) var(--space-md) var(--space-lg);
  text-align: center;
  margin-top: var(--space-3xl);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--color-accent) 0%,
    var(--color-secondary) 50%,
    var(--color-primary-light) 100%);
}

#footer a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  transition: all var(--transition-base);
}

#footer a:hover {
  color: var(--color-accent);
  text-decoration-thickness: 2px;
}

#footer p {
  color: rgba(255, 255, 255, 0.85);
  margin: var(--space-sm) 0;
  font-size: 0.9rem;
}

#footer img {
  margin: var(--space-md) auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity var(--transition-base);
}

#footer img:hover {
  opacity: 1;
}

/* ============================================
   TOC, FEATURE-LISTE, BENEFITS, FAQ
   (aus fadenlifting-karlsruhe.de)
   ============================================ */
.toc-box {
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
  border: 1px solid var(--color-gray-200);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.toc-list {
  margin: 0;
  padding-left: 1.25rem;
}

.toc-list li {
  margin: 0.35rem 0;
}

.toc-list a {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-primary);
}

.toc-list a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.feature-list {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
  color: var(--color-gray-700);
}

.feature-list li {
  margin: 0.35rem 0;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin: 0 0 var(--space-lg);
}

.benefit-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--color-gray-700);
}

.faq {
  margin-bottom: var(--space-lg);
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  margin: var(--space-sm) 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: var(--space-md);
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-primary);
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent-dark);
  font-weight: 800;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-body {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--color-gray-200);
  background: linear-gradient(to right, var(--color-gray-100), var(--color-white));
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion-button {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1A4D6D;
  background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
  background: #1A4D6D;
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-item {
  border: 1px solid #DEE4E9;
  margin-bottom: 0.5rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-body {
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.8;
  padding: 1.25rem 1.5rem;
}

.accordion-body ul {
  padding-left: 1.25rem;
}

.accordion-body li {
  margin-bottom: 0.3rem;
}

/* Scroll-Anker Korrektur für fixe Navigation */
[id] {
  scroll-margin-top: 90px;
}

/* ============================================
   CHATBOT CONTAINER (aus amenta.de)
   ============================================ */
.chatbot-container {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fade-in { animation: fadeIn 0.6s ease-out; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.animate-slide-in-left { animation: slideInLeft 0.6s ease-out; }
.animate-slide-in-right { animation: slideInRight 0.6s ease-out; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile (bis 767px) */
@media only screen and (max-width: 767px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  #myCarousel {
    margin-top: 60px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  #textfeld {
    padding: var(--space-md);
    margin: var(--space-md) auto;
  }

  #Hinweisfenster {
    position: static;
    margin: var(--space-md) 0;
  }

  #Werbefenster {
    margin: var(--space-md) 0;
  }

  .navbar-brand {
    font-size: 1.35rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

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

  .chatbot-container {
    min-height: 500px;
  }

  .chatbot-container > div {
    height: 500px !important;
  }
}

/* Tablet (768px bis 991px) */
@media only screen and (min-width: 768px) {
  .gridContainer {
    width: 90%;
    padding: 0 var(--space-lg);
  }

  #textfeld {
    margin: var(--space-xl) auto;
    padding: var(--space-2xl);
  }

  #Hinweisfenster {
    position: sticky;
    top: 100px;
    margin: var(--space-lg);
  }

  #Werbefenster {
    margin: var(--space-lg);
  }
}

/* Desktop (992px und größer) */
@media only screen and (min-width: 992px) {
  .gridContainer {
    width: 85%;
    max-width: 1400px;
  }

  #textfeld {
    margin: var(--space-2xl) auto;
    padding: var(--space-3xl) var(--space-2xl);
  }

  .content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-xl);
    align-items: start;
  }

  #Hinweisfenster {
    margin: 0;
  }

  #Werbefenster {
    margin: var(--space-md) 0 0 0;
  }
}

/* Large Desktop (1200px und größer) */
@media only screen and (min-width: 1200px) {
  .gridContainer {
    max-width: 1400px;
  }

  #textfeld {
    padding: var(--space-3xl);
  }
}

#myCarousel,
#carouselHero {
  margin-top: 70px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  #Hinweisfenster,
  #Werbefenster,
  #footer,
  .back-to-top,
  .share {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  #textfeld {
    box-shadow: none;
    page-break-inside: avoid;
  }
}
/* ENDE rasterlayout-modern.css | Stand: 29.05.2026 */
