/* ==========================================================================
   Praxis am Park – Stylesheet
   Modern, responsive, leichtgewichtig, FTP-fertig.
   ========================================================================== */

:root {
  --primary: #0e7490;
  --primary-dark: #155e75;
  --primary-light: #67e8f9;
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #dc2626;

  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, .15);

  /* Theme-spezifische Hintergründe (Light = Standardwerte) */
  --header-bg: rgba(255, 255, 255, .92);
  --header-border: rgba(226, 232, 240, .8);
  --floating-bg: #ffffff;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --container: 1180px;
  --transition: 200ms cubic-bezier(.4, 0, .2, 1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Dark-Vars als Wiederverwendung */
:root[data-theme="dark"] {
  --bg: #0b1220;
  --bg-alt: #111827;
  --bg-card: #1e293b;
  --text: #f1f5f9;
  --text-muted: #cbd5e1;
  --text-light: #94a3b8;
  --border: #334155;
  --border-strong: #475569;
  --primary-50: #0c4a5e;
  --primary-100: #155e75;
  --header-bg: rgba(11, 18, 32, .85);
  --header-border: rgba(51, 65, 85, .8);
  --floating-bg: #1e293b;
  color-scheme: dark;
}

/* Auto-Modus folgt System-Einstellung */
@media (prefers-color-scheme: dark) {
  :root[data-theme="auto"] {
    --bg: #0b1220;
    --bg-alt: #111827;
    --bg-card: #1e293b;
    --text: #f1f5f9;
    --text-muted: #cbd5e1;
    --text-light: #94a3b8;
    --border: #334155;
    --border-strong: #475569;
    --primary-50: #0c4a5e;
    --primary-100: #155e75;
    --header-bg: rgba(11, 18, 32, .85);
    --header-border: rgba(51, 65, 85, .8);
    --floating-bg: #1e293b;
    color-scheme: dark;
  }
}

/* Explizit Light – überschreibt System-Dark */
:root[data-theme="light"] { color-scheme: light; }

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 220px; }
@media (max-width: 760px) {
  html { scroll-padding-top: 260px; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--text); font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* sr-only */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: .75rem; }
.section-lead { color: var(--text-muted); max-width: 60ch; margin-bottom: 3rem; font-size: 1.075rem; }

/* ==========================================================================
   Top notice bar (Notfallhinweis, Online-Status)
   ========================================================================== */
.notice-bar {
  background: var(--primary-dark);
  color: #e0f2fe;
  font-size: .875rem;
  padding: .5rem 0;
}
.notice-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.notice-bar a { color: #fff; text-decoration: underline; }
.notice-bar strong { color: #fff; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .15rem .75rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.15);
  font-weight: 600;
}
.status-pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--warning);
}
.status-pill.is-open::before {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  /* dezenter opacity-Pulse statt box-shadow Animation – sanfter zur GPU */
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.status-pill.is-closed::before { background: #f87171; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  /* Sticky-Verhalten kommt vom .site-top Wrapper, damit Banner + Notice-Bar mitfahren */
  position: relative;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.brand img { height: 44px; }
.brand .brand-logo {
  height: 44px;
  width: auto;
  display: block;
  color: var(--text);
}
.brand .brand-logo .brand-title    { fill: currentColor; }
.brand .brand-logo .brand-subtitle { fill: currentColor; opacity: .55; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav ul { display: flex; gap: 1.5rem; list-style: none; padding: 0; }
.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 28px; }
.nav-toggle[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { top: 21px; transform: rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--primary-50); border-color: var(--primary); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: .3;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta div strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}
.hero-meta div span { font-size: .875rem; color: var(--text-muted); }
.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-visual img {
  max-width: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -10px rgba(14, 116, 144, .25), 0 10px 25px -5px rgba(15, 23, 42, .12);
  object-fit: cover;
  aspect-ratio: 5 / 4;
}
.hero-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--floating-bg);
  color: var(--text);
  padding: .65rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}
.hero-badge svg { color: var(--success); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ==========================================================================
   Trust badges
   ========================================================================== */
.trust-row {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-row .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ==========================================================================
   Service cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card img { width: 56px; height: 56px; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .95rem; }

/* ==========================================================================
   Praxis-Galerie
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.gallery img:hover { transform: scale(1.02); }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card .body { padding: 1.25rem; }
.team-card h3 { margin-bottom: .25rem; }
.team-card .role { color: var(--primary); font-weight: 600; font-size: .9rem; }
.team-card .bio { color: var(--text-muted); font-size: .9rem; margin-top: .5rem; }

/* ==========================================================================
   Sprechzeiten
   ========================================================================== */
.hours-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.hours-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hours-table table { width: 100%; border-collapse: collapse; }
.hours-table th,
.hours-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { font-weight: 600; width: 35%; }
.hours-table tr.is-today { background: var(--primary-50); }
.hours-table tr.is-today th { color: var(--primary-dark); }
.hours-table .closed { color: var(--text-light); }

.hours-side .info-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1rem;
}
.hours-side .info-card h3 { color: #fff; margin-bottom: .75rem; }
.hours-side .info-card p { opacity: .9; font-size: .95rem; }
.hours-side .info-card a { color: #fff; text-decoration: underline; }

/* ==========================================================================
   Tabs
   ========================================================================== */
.tabs {
  display: flex;
  gap: .25rem;
  background: var(--bg-alt);
  padding: .375rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  width: fit-content;
  flex-wrap: wrap;
}
.tab-btn {
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: .9rem;
}
.tab-btn[aria-selected="true"] {
  background: var(--bg);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-field label .req { color: var(--danger); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, .15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field .hint { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: var(--danger); }
.form-field.error .hint { color: var(--danger); }

.form-check {
  display: flex; align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.form-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

.form-success, .form-error-box {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: .9rem;
  display: none;
}
.form-success { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.form-error-box { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }
.is-visible { display: block !important; }

/* Slot picker */
.slot-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .5rem;
  margin-top: .5rem;
}
.slot-btn {
  padding: .6rem .25rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
  font-size: .875rem;
  background: var(--bg);
  transition: all var(--transition);
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--primary);
  background: var(--primary-50);
}
.slot-btn.is-selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.slot-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ==========================================================================
   Kontakt / Anfahrt
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-info {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-list strong { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: .15rem; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  min-height: 360px;
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--bg-card);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 1.25rem 1.25rem; color: var(--text-muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-grid h4 { color: #fff; margin-bottom: 1rem; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: #cbd5e1; font-size: .9rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand .brand-logo-footer {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .9rem; color: #94a3b8; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: #94a3b8;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: none;
  z-index: 1000;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { font-size: .9rem; color: var(--text-muted); margin: 0; flex: 1; min-width: 240px; }

/* ==========================================================================
   Floating chat
   ========================================================================== */
.chat-toggle {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(14, 116, 144, .35);
  z-index: 999;
  transition: transform var(--transition);
}
.chat-toggle:hover { transform: scale(1.08); background: var(--primary-dark); }
.chat-window {
  position: fixed;
  right: 1.25rem; bottom: 6rem;
  width: min(360px, calc(100vw - 2.5rem));
  max-height: 70vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
}
.chat-window.is-open { display: flex; }
.chat-header {
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header small { display: block; opacity: .85; font-weight: 400; font-size: .8rem; }
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: 360px;
}
.chat-msg {
  padding: .6rem .9rem;
  border-radius: var(--radius);
  font-size: .9rem;
  max-width: 85%;
  line-height: 1.45;
}
.chat-msg.bot { background: var(--bg-alt); align-self: flex-start; }
.chat-msg.user { background: var(--primary); color: #fff; align-self: flex-end; }
.chat-suggestions {
  padding: 0 1.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.chat-suggestions button {
  padding: .4rem .75rem;
  background: var(--primary-50);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
  transition: background var(--transition);
}
.chat-suggestions button:hover { background: var(--primary-100); }

/* ==========================================================================
   Animationen (fade-up, stagger, scroll-reveal)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.reveal.is-revealed { opacity: 1; transform: none; }

/* Initial-Animation für Hero (sofort beim Laden) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.anim-fade-up {
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.4,0,.2,1) forwards;
}
.anim-delay-1 { animation-delay: .12s; }
.anim-delay-2 { animation-delay: .24s; }
.anim-delay-3 { animation-delay: .36s; }
.anim-delay-4 { animation-delay: .48s; }

/* Stagger für Reveal-Karten (Services & Team) */
.services-grid .reveal:nth-child(1) { transition-delay: .00s; }
.services-grid .reveal:nth-child(2) { transition-delay: .06s; }
.services-grid .reveal:nth-child(3) { transition-delay: .12s; }
.services-grid .reveal:nth-child(4) { transition-delay: .18s; }
.services-grid .reveal:nth-child(5) { transition-delay: .24s; }
.services-grid .reveal:nth-child(6) { transition-delay: .30s; }
.services-grid .reveal:nth-child(7) { transition-delay: .36s; }
.services-grid .reveal:nth-child(8) { transition-delay: .42s; }
.team-grid .reveal:nth-child(1) { transition-delay: .00s; }
.team-grid .reveal:nth-child(2) { transition-delay: .10s; }
.team-grid .reveal:nth-child(3) { transition-delay: .20s; }
.testimonials .reveal:nth-child(1) { transition-delay: .00s; }
.testimonials .reveal:nth-child(2) { transition-delay: .10s; }
.testimonials .reveal:nth-child(3) { transition-delay: .20s; }
.gallery .reveal:nth-child(1) { transition-delay: .00s; }
.gallery .reveal:nth-child(2) { transition-delay: .10s; }
.gallery .reveal:nth-child(3) { transition-delay: .20s; }
.faq-list .reveal:nth-child(odd)  { transition-delay: .05s; }
.faq-list .reveal:nth-child(even) { transition-delay: .10s; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial::before {
  content: '\201E';
  position: absolute;
  top: -.5rem; left: 1.25rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: .15;
  font-family: Georgia, serif;
}
.testimonial .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: .75rem;
}
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  font-style: normal;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial figcaption {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.testimonial-aggregate {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}
.testimonial-aggregate strong { color: var(--primary); font-size: 1.1rem; }

/* Gallery figure styling */
.gallery figure { margin: 0; }
.gallery figcaption {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: .6rem;
  font-weight: 500;
}

/* ==========================================================================
   Tabs – Icon-Buttons
   ========================================================================== */
.tab-btn { display: inline-flex; align-items: center; gap: .45rem; }
.tab-btn svg { opacity: .7; }
.tab-btn[aria-selected="true"] svg { opacity: 1; }

/* ==========================================================================
   Scroll-to-top Button
   ========================================================================== */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 6.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.scroll-top:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ==========================================================================
   Chat-Pulse (Initial-Aufmerksamkeit)
   ========================================================================== */
.chat-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--primary);
  animation: chat-pulse 2.2s ease-out 2s 3;
  pointer-events: none;
}
@keyframes chat-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(14, 116, 144, .55); }
  100% { box-shadow: 0 0 0 22px rgba(14, 116, 144, 0); }
}

/* ==========================================================================
   Service-Card Icon-Hover-Animation
   ========================================================================== */
.service-card img {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.service-card:hover img {
  transform: scale(1.08) rotate(-3deg);
}

/* ==========================================================================
   Theme-Toggle (Auto / Light / Dark)
   ========================================================================== */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.theme-toggle:hover { background: var(--primary-50); color: var(--primary); transform: rotate(15deg); }
.theme-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.theme-toggle svg { transition: opacity .25s, transform .35s cubic-bezier(.4,0,.2,1); }

/* Icons je nach Theme zeigen */
.theme-toggle .icon-sun,
.theme-toggle .icon-moon,
.theme-toggle .icon-auto {
  position: absolute;
  opacity: 0;
  transform: scale(.5) rotate(-90deg);
  pointer-events: none;
}
:root[data-theme="light"] .theme-toggle .icon-sun,
:root[data-theme="dark"]  .theme-toggle .icon-moon,
:root[data-theme="auto"]  .theme-toggle .icon-auto {
  opacity: 1;
  transform: none;
  position: static;
}
.theme-label { display: none; }

/* ==========================================================================
   Form-Wizard
   ========================================================================== */
.form-wizard { position: relative; }

.wizard-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.wizard-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .75rem;
}
.wizard-step-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}
.wizard-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.wizard-progress {
  height: 6px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.wizard-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #06b6d4 100%);
  border-radius: var(--radius-full);
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

.wizard-step { display: none; border: 0; padding: 0; margin: 0; }
.wizard-step.is-active {
  display: block;
  animation: wizardIn .35s cubic-bezier(.4,0,.2,1);
}
@keyframes wizardIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: none; }
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.wizard-nav [data-wiz="prev"] { margin-right: auto; }
.wizard-nav [data-wiz="next"],
.wizard-nav [data-wiz="submit"] { margin-left: auto; }
.wizard-nav .btn[hidden] { display: none !important; }

.wizard-summary {
  background: var(--primary-50);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--primary-dark);
  margin-top: 1rem;
}
.wizard-summary:empty { display: none; }
.wizard-summary dl { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1rem; margin: 0; }
.wizard-summary dt { font-weight: 600; color: var(--text-muted); }
.wizard-summary dd { margin: 0; color: var(--text); }

/* Mobil-Anpassungen Wizard */
@media (max-width: 520px) {
  .wizard-nav { flex-wrap: wrap; }
  .wizard-nav .btn { flex: 1 1 100%; }
  .wizard-nav [data-wiz="prev"],
  .wizard-nav [data-wiz="next"],
  .wizard-nav [data-wiz="submit"] { margin: 0; }
}

/* Link-Button (Cookie-Einstellungen im Footer) */
.link-btn {
  background: none;
  border: 0;
  padding: 0;
  color: #cbd5e1;
  font-size: .9rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
}
.link-btn:hover { color: #fff; text-decoration: underline; }

/* ==========================================================================
   Sub-Page Hero (Leistungen, Team, Praxis, Aktuelles)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: .25;
  pointer-events: none;
}
.page-hero .container { position: relative; max-width: 900px; }
.page-hero .crumbs {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.page-hero .crumbs a { color: var(--primary); }
.page-hero .crumbs a:hover { color: var(--primary-dark); text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: .65rem;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 60ch;
}

/* Aktive Nav-Markierung auf Sub-Pages */
.nav a.is-current { color: var(--primary); }
.nav a.is-current::after { transform: scaleX(1); }

/* ==========================================================================
   Sticky-Top: Banner + Notice-Bar + Header bewegen sich gemeinsam
   ========================================================================== */
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ==========================================================================
   Template-Banner (Demo-Hinweis von DeinWebTeam.de)
   ========================================================================== */
.template-banner {
  position: relative;
  color: #e2e8f0;
  font-size: .9rem;
  padding: .7rem 0;
  border-bottom: 2px solid #f97316;
  /* Statisches Gradient – keine background-position Animation (causes scroll jank) */
  background: linear-gradient(120deg, #0a0f1c 0%, #1a2541 50%, #0a0f1c 100%);
  overflow: hidden;
}
.template-banner[hidden] { display: none; }

/* GPU-beschleunigter Shine-Effekt via transform statt background-position */
.template-banner::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(100deg, transparent 0%, rgba(251, 146, 60, .14) 50%, transparent 100%);
  pointer-events: none;
  animation: dwt-shine 9s ease-in-out infinite;
  will-change: transform;
}

@keyframes dwt-shine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(400%); }
  100% { transform: translateX(400%); }
}

.template-banner .container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* DeinWebTeam.de Marken-Logo */
.template-banner-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--transition);
}
.template-banner-brand:hover { transform: scale(1.04); }
.dwt-logo {
  height: 26px;
  width: auto;
  display: block;
}

.template-banner-badge {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: .28rem .65rem;
  border-radius: 4px;
  flex-shrink: 0;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(249, 115, 22, .35);
}

.template-banner-msg {
  flex: 1 1 320px;
  line-height: 1.5;
  font-size: .9rem;
}
.template-banner-msg strong { color: #fff; }
.template-banner-link {
  color: #fdba74;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.template-banner-link:hover { color: #fff; }

.template-banner-cta {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .95rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition),
              box-shadow var(--transition), color var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.banner-btn:hover { transform: translateY(-1px); text-decoration: none; }
.banner-btn svg { flex-shrink: 0; }

/* WhatsApp – mit dezenter Aufmerksamkeits-Pulsation */
.banner-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .35);
}
.banner-btn-wa:hover { background: #1eb558; color: #fff; box-shadow: 0 6px 18px rgba(37, 211, 102, .5); }
/* GPU-freundlicher Pulse via transform statt box-shadow */
.banner-btn-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, .65);
  pointer-events: none;
  animation: wa-pulse 2.4s ease-out infinite;
  will-change: transform, opacity;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.5); opacity: 0;  }
}

.banner-btn-mail {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, .35);
}
.banner-btn-mail:hover { box-shadow: 0 6px 18px rgba(249, 115, 22, .5); color: #fff; }

.banner-btn-form {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
}
.banner-btn-form:hover { background: rgba(255, 255, 255, .15); color: #fff; }

.template-banner-close {
  background: transparent;
  color: #94a3b8;
  font-size: 1.4rem;
  width: 30px;
  height: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.template-banner-close:hover { background: rgba(255, 255, 255, .12); color: #fff; }

@media (max-width: 900px) {
  .template-banner { font-size: .85rem; padding: .75rem 0; }
  .template-banner .container { gap: .65rem 1rem; }
  .template-banner-brand { order: 1; }
  .template-banner-badge { order: 1; }
  .template-banner-close { order: 1; margin-left: auto; }
  .template-banner-msg { order: 2; font-size: .82rem; flex-basis: 100%; }
  .template-banner-cta { order: 3; flex-basis: 100%; }
  .banner-btn { font-size: .8rem; padding: .45rem .8rem; flex: 1 1 auto; justify-content: center; }
}

/* Footer-Credit Link (DeinWebTeam.de) */
.footer-credit {
  color: #fff !important;
  text-decoration: none;
  transition: color var(--transition), text-decoration var(--transition);
}
.footer-credit:hover { color: var(--primary-light) !important; text-decoration: underline; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .hours-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav ul {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav.is-open ul { display: flex; }
  .nav ul li { width: 100%; }
  .nav ul a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--border); }
  .nav .btn { width: 100%; margin-top: .75rem; }
  .hero-meta { gap: 1rem; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 2rem 0 3rem; }
}

@media print {
  .site-header, .notice-bar, .chat-toggle, .chat-window, .cookie-banner, .hero-cta,
  .template-banner, .sticky-cta, .scroll-top, .live-ticker { display: none !important; }
}

/* ==========================================================================
   Werte / Philosophie – Grid mit Hover-3D
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  isolation: isolate;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(14, 116, 144, .12), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
  pointer-events: none;
}
.value-card:hover::before { opacity: 1; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card > * { position: relative; z-index: 1; }
.value-icon {
  width: 48px; height: 48px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--primary);
  color: #fff;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.value-card p  { color: var(--text-muted); font-size: .9rem; }

/* ==========================================================================
   Patient Journey – horizontale Schritte mit verbindender Linie
   ========================================================================== */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.journey::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  z-index: 0;
}
.journey-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4.5rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.journey-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.journey-num {
  position: absolute;
  top: -2px; left: 50%;
  transform: translate(-50%, 0);
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font);
  box-shadow: 0 4px 12px rgba(14, 116, 144, .35);
  margin-top: -28px;
}
.journey-step:hover .journey-num { transform: translate(-50%, -4px) scale(1.05); }
.journey-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.journey-step p { font-size: .88rem; color: var(--text-muted); }
@media (max-width: 760px) {
  .journey { grid-template-columns: 1fr; gap: 1.25rem; }
  .journey::before { display: none; }
  .journey-step { padding-top: 4rem; }
}

/* ==========================================================================
   Aktuelles / News-Cards
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  position: relative;
  overflow: hidden;
}
.news-thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.news-thumb-icon svg { width: 64px; height: 64px; opacity: .55; }
.news-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.news-meta {
  display: flex; gap: .5rem; align-items: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.news-tag {
  background: var(--primary-50);
  color: var(--primary-dark);
  padding: .15rem .55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .04em;
}
.news-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.news-card p { color: var(--text-muted); font-size: .9rem; }

/* ==========================================================================
   Karriere – offene Stellen
   ========================================================================== */
.career-list {
  display: grid;
  gap: 1rem;
}
.career-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.career-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.career-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.career-tag {
  font-size: .75rem;
  padding: .2rem .65rem;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 500;
}
.career-item h3 { font-size: 1.075rem; margin-bottom: .25rem; }
.career-item p  { font-size: .9rem; color: var(--text-muted); }
@media (max-width: 600px) {
  .career-item { grid-template-columns: 1fr; }
  .career-item .btn { width: 100%; }
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(103, 232, 249, .2), transparent 50%);
  pointer-events: none;
}
.newsletter > * { position: relative; }
.newsletter h2 { color: #fff; margin-bottom: .5rem; }
.newsletter p  { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1 1 240px;
  padding: .85rem 1rem;
  border: 0;
  border-radius: var(--radius);
  font-size: .95rem;
  background: rgba(255,255,255,.95);
  color: var(--text);
}
.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.35);
}
.newsletter-form button {
  background: #fff;
  color: var(--primary);
  padding: .85rem 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition);
  font-size: .95rem;
}
.newsletter-form button:hover { transform: translateY(-1px); background: var(--accent); color: #fff; }
.newsletter-note { font-size: .8rem; margin-top: .75rem; color: rgba(255,255,255,.7); }

/* ==========================================================================
   Template-Sale-Sektion: Pricing-Karten
   ========================================================================== */
.template-sale {
  position: relative;
  background: linear-gradient(180deg, #0b1220 0%, #111c2e 100%);
  color: #f1f5f9;
  padding: 5rem 0;
  overflow: hidden;
}
.template-sale::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 146, 60, .18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(14, 116, 144, .22), transparent 45%);
  pointer-events: none;
}
.template-sale .container { position: relative; }
.template-sale .section-eyebrow { color: #fb923c; }
.template-sale .section-title { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.template-sale .section-lead { color: rgba(255, 255, 255, .7); max-width: 60ch; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 146, 60, .55);
}
.pricing-card.is-featured {
  background: linear-gradient(160deg, rgba(251, 146, 60, .14) 0%, rgba(14, 116, 144, .14) 100%);
  border-color: rgba(251, 146, 60, .5);
}
.pricing-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .35rem .8rem;
  border-radius: var(--radius-full);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(249, 115, 22, .35);
}
.pricing-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fb923c;
  margin-bottom: .5rem;
}
.pricing-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: .25rem; }
.pricing-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.pricing-price .num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pricing-price .unit {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  font-weight: 500;
}
.pricing-card .setup-fee {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.pricing-features li {
  position: relative;
  padding: .45rem 0 .45rem 1.8rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 18px;
  background: #22c55e;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M5 12l5 5L20 7"/></svg>') center/contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" d="M5 12l5 5L20 7"/></svg>') center/contain no-repeat;
  transform: translateY(-50%);
}
.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
}
.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}

.pricing-compare {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow-x: auto;
}
.pricing-compare table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(255, 255, 255, .85);
}
.pricing-compare th, .pricing-compare td {
  padding: .8rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .9rem;
}
.pricing-compare th { color: #fff; font-weight: 700; }
.pricing-compare tr:last-child th, .pricing-compare tr:last-child td { border-bottom: 0; }
.pricing-compare .check { color: #22c55e; font-weight: 700; }
.pricing-compare .x { color: #94a3b8; }

.sale-cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.sale-cta-row .btn { min-width: 200px; }

.sale-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.sale-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fb923c;
  line-height: 1;
}
.sale-stat span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-top: .3rem;
  display: block;
}

/* ==========================================================================
   Live-Ticker (Aktivitäts-Anzeige)
   ========================================================================== */
.live-ticker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .82rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.live-ticker::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .2);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ==========================================================================
   Sticky Mobile CTA-Bar
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: .6rem .75rem;
  box-shadow: 0 -8px 20px rgba(0,0,0,.08);
  align-items: center;
  gap: .5rem;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; justify-content: center; padding: .65rem .8rem; font-size: .85rem; }
.sticky-cta-wa  { background: #25d366; color: #fff; }
.sticky-cta-wa:hover { background: #1eb558; color: #fff; }
.sticky-cta-call { background: var(--primary); color: #fff; }
@media (max-width: 760px) { .sticky-cta { display: flex; } }
@media (max-width: 760px) { .scroll-top { bottom: 5.25rem; } }

/* ==========================================================================
   3D Hover-Tilt für Service-, Team-, Value-Cards
   ========================================================================== */
@media (hover: hover) and (min-width: 760px) {
  .service-card, .team-card, .value-card, .news-card {
    transform-style: preserve-3d;
    perspective: 800px;
  }
  .service-card:hover, .team-card:hover, .value-card:hover {
    transform: perspective(800px) rotateX(var(--ry, 0)) rotateY(var(--rx, 0)) translateY(-4px);
  }
}

/* ==========================================================================
   Magnetic Buttons (sehr subtil)
   ========================================================================== */
.magnetic { transition: transform .15s ease-out; }

/* ==========================================================================
   Confetti (Form-Success Feier)
   ========================================================================== */
.confetti-piece {
  position: fixed;
  width: 8px; height: 14px;
  background: var(--primary);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  animation: confetti-fall 2.2s ease-out forwards;
}
@keyframes confetti-fall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0); opacity: 1; }
  100% { transform: translate3d(var(--cx, 50px), 110vh, 0) rotate(var(--cr, 720deg)); opacity: 0; }
}

/* ==========================================================================
   Marquee (Trust-Logos / Partner)
   ========================================================================== */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  align-items: center;
}
.marquee-item {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
.marquee-item svg { color: var(--primary); flex-shrink: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   iGeL / Festpreise – transparente Preistabelle
   ========================================================================== */
.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 760px) { .price-list { grid-template-columns: 1fr; } }

.price-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.price-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--primary); }
.price-item h3 { font-size: 1rem; margin-bottom: .2rem; }
.price-item p  { font-size: .85rem; color: var(--text-muted); margin: 0; }
.price-tag {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  white-space: nowrap;
}
.price-tag small {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-note {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   Wochen-Aktionen – horizontale Specials
   ========================================================================== */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.special-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.special-day {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 4px;
  margin-bottom: .85rem;
}
.special-card h3 { font-size: 1.075rem; margin-bottom: .35rem; }
.special-card p  { font-size: .88rem; color: var(--text-muted); }
.special-card .special-time {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: .75rem;
}

/* ==========================================================================
   Hygiene & Sicherheit – 3 Säulen
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 4px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:nth-child(2) { border-top-color: var(--accent); }
.pillar:nth-child(3) { border-top-color: var(--success); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar h3 { font-size: 1.1rem; margin-bottom: .65rem; display: flex; align-items: center; gap: .5rem; }
.pillar h3 span.pillar-icon {
  font-size: 1.4rem;
  filter: grayscale(0);
}
.pillar ul { list-style: none; padding: 0; }
.pillar li {
  position: relative;
  padding: .35rem 0 .35rem 1.4rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pillar li::before {
  content: '✓';
  position: absolute;
  left: 0; top: .35rem;
  color: var(--success);
  font-weight: 800;
}

/* ==========================================================================
   Reise-Konfigurator – interaktiver Selector
   ========================================================================== */
.travel-config {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 760px) { .travel-config { grid-template-columns: 1fr; } }

.travel-config h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.travel-config p.hint { color: var(--text-muted); font-size: .85rem; margin-bottom: 1rem; }
.travel-pick {
  display: grid;
  gap: .85rem;
  margin-bottom: 1rem;
}
.travel-pick label {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .35rem;
  display: block;
}
.travel-pick select,
.travel-pick input {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font: inherit;
  color: inherit;
}
.travel-pick select:focus, .travel-pick input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, .15);
}
.travel-result {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  min-height: 220px;
}
.travel-result h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .65rem;
}
.travel-result .vaccs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.travel-result .vaccs li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--text);
}
.travel-result .vaccs li::before {
  content: '💉';
  font-size: 1rem;
}
.travel-result .est-cost {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 116, 144, .25);
}
.travel-result .est-cost span { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.travel-result .empty {
  color: var(--text-muted);
  font-style: italic;
  font-size: .9rem;
}

/* ==========================================================================
   Praxis-Closures (Urlaubs-Tage)
   ========================================================================== */
.closures-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}
.closure-pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
}
.closure-pill strong { color: var(--accent-dark); }

/* ==========================================================================
   Partner-Logos / Kooperationen
   ========================================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.partner-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}
.partner-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--primary); }
.partner-tile .partner-icon {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  display: block;
}
.partner-tile small {
  display: block;
  margin-top: .25rem;
  font-size: .7rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ==========================================================================
   Bento-Grid (Premium-Feature-Showcase in Template-Sale)
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
}
.bento-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .25s, border-color .25s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.bento-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(251, 146, 60, .4);
  box-shadow: 0 14px 40px -10px rgba(251, 146, 60, .2);
}
.bento-item.span-2 { grid-column: span 2; }
.bento-item.span-3 { grid-column: span 3; }
.bento-item.span-4 { grid-column: span 4; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item.span-4, .bento-item.span-3, .bento-item.span-2 { grid-column: span 2; }
  .bento-item.span-3-mobile-half { grid-column: span 1; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; gap: 1rem; }
  .bento-item.span-2, .bento-item.span-3, .bento-item.span-4, .bento-item.span-3-mobile-half { grid-column: span 1; }
}

.bento-icon {
  font-size: 1.75rem;
  margin-bottom: .85rem;
  display: inline-block;
  line-height: 1;
}
.bento-item h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: .35rem;
  line-height: 1.3;
}
.bento-item p {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  line-height: 1.5;
}
.bento-item p.bento-sub {
  font-size: .85rem;
  margin-top: auto;
  padding-top: 1rem;
  color: rgba(255, 255, 255, .55);
}

/* Hero-Box des Bentos */
.bento-hero {
  background: linear-gradient(135deg, rgba(14, 116, 144, .25) 0%, rgba(6, 182, 212, .12) 100%);
  border-color: rgba(103, 232, 249, .25);
}
.bento-hero h3 { font-size: 1.5rem; }
.bento-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.bento-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bento-stat span {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  margin-top: .35rem;
  font-weight: 700;
}

/* Highlight-Box (24h-Garantie) */
.bento-highlight {
  background: linear-gradient(135deg, rgba(251, 146, 60, .18) 0%, rgba(249, 115, 22, .08) 100%);
  border-color: rgba(251, 146, 60, .35);
}
.bento-highlight .bento-icon { color: #fb923c; }
.bento-badge {
  display: inline-block;
  background: rgba(251, 146, 60, .2);
  color: #fb923c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: .3rem .7rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: auto;
  align-self: flex-start;
}

.bento-tags {
  display: flex;
  gap: .35rem 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fbbf24;
}

/* ==========================================================================
   Cal.com Inline Embed Wrapper
   ========================================================================== */
.cal-embed-wrap {
  margin: 3rem 0 2rem;
  text-align: center;
}
.cal-embed-wrap h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: .35rem;
}
.cal-embed-wrap p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.5rem;
}
.cal-embed-container {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, .4);
  max-width: 980px;
  margin: 0 auto;
}
.cal-embed-container[id^="cal-"] { height: 100%; }

/* Auf hellen Hintergründen (z.B. Subpages) */
.section .cal-embed-wrap h3 { color: var(--text); }
.section .cal-embed-wrap p  { color: var(--text-muted); }
.section .cal-embed-container { box-shadow: var(--shadow-lg); border: 1px solid var(--border); }

/* ==========================================================================
   Revenue-Drivers (in Template-Sale)
   ========================================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}
.usp-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.usp-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(251, 146, 60, .35);
}
.usp-emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: .65rem;
}
.usp-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.usp-card p {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  line-height: 1.55;
}

/* ==========================================================================
   Owner-Contact-Card in Template-Sale
   ========================================================================== */
.owner-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
}
@media (max-width: 760px) {
  .owner-card { grid-template-columns: 1fr; text-align: center; }
}
.owner-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(249, 115, 22, .4);
  margin: 0 auto;
}
.owner-info h3 { color: #fff; font-size: 1.1rem; margin-bottom: .15rem; }
.owner-info p  { color: rgba(255, 255, 255, .7); font-size: .9rem; margin: 0; }

/* ==========================================================================
   ROI-Hinweis
   ========================================================================== */
.roi-banner {
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .4);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
}
.roi-banner-emoji { font-size: 1.4rem; }
.roi-banner strong { color: #22c55e; }
