/* ═══════════════════════════════════════════════════════════
   Dr. med. Björn R. Dexling — Kardiologie Iserlohn
   Modern, future-focused redesign · Fokus: Gesundheitsvorsorge
   ═══════════════════════════════════════════════════════════ */

/* ─── Schriften ─── */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-v21-latin-regular.woff2")
    format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-v21-latin-italic.woff2")
    format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/cormorant-garamond-v21-latin-500.woff2")
    format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-v17-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-v17-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-v17-latin-500.woff2") format("woff2");
}

/* ─── Reset & Tokens ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --red: #c0312b;
  --red-light: #e84a3f;
  --red-dark: #9b2621;
  --teal: #1d8e8e; /* future-tech accent — Vorsorge/Diagnostik */
  --teal-light: #2db5b5;
  --gold: #d4a574; /* warm accent for trust */

  --bg: #f7f4f0;
  --bg-warm: #faf7f2;
  --dark: #0e0d0c;
  --dark2: #14110f;
  --dark3: #1c1816;
  --mid: #6b6660;
  --light: #ebe7e1;
  --white: #fdfcfa;

  --grad-hero:
    radial-gradient(
      ellipse 80% 60% at 20% 30%,
      rgba(192, 49, 43, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 80% at 90% 80%,
      rgba(29, 142, 142, 0.18) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #14110f 0%, #1c1816 50%, #0e0d0c 100%);
  --grad-red: linear-gradient(135deg, #e84a3f 0%, #c0312b 50%, #9b2621 100%);
  --grad-red-soft: linear-gradient(
    135deg,
    rgba(232, 74, 63, 0.15),
    rgba(192, 49, 43, 0.05)
  );
  --grad-card-prevention: linear-gradient(
    160deg,
    #fff 0%,
    #faf7f2 60%,
    rgba(212, 165, 116, 0.1) 100%
  );
  --grad-card-cardio: linear-gradient(
    160deg,
    #fff 0%,
    #fbf6f5 60%,
    rgba(192, 49, 43, 0.08) 100%
  );
  --grad-mesh:
    radial-gradient(
      circle at 20% 20%,
      rgba(192, 49, 43, 0.06),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(29, 142, 142, 0.05),
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(212, 165, 116, 0.04),
      transparent 50%
    );

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;

  --nav-h: 76px;
  --section-py: clamp(80px, 10vw, 140px);
  --section-px: clamp(20px, 4vw, 48px);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --shadow-soft:
    0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(14, 13, 12, 0.06);
  --shadow-card:
    0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(14, 13, 12, 0.08);
  --shadow-elevated:
    0 2px 4px rgba(0, 0, 0, 0.04), 0 24px 60px rgba(192, 49, 43, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  cursor: default;
  position: relative;
}

/* Global animated mesh layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

section {
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  display: block;
}

/* ─── Selection ─── */
::selection {
  background: var(--red);
  color: #fff;
}

/* ─── Nav ─── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: transparent;
  transition:
    top 0.5s var(--ease-out),
    left 0.5s var(--ease-out),
    right 0.5s var(--ease-out),
    padding 0.5s var(--ease-out),
    border-radius 0.5s var(--ease-out),
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}
#nav.scrolled {
  top: 14px;
  left: 18px;
  right: 18px;
  padding: 0 clamp(18px, 3vw, 28px);
  border-radius: 18px;
  background: rgba(247, 244, 240, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 4px 30px rgba(14, 13, 12, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
/* Container für Logo + Text (nebeneinander) */
.nav-identity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px; /* Abstand zwischen Logo und Text */
  text-decoration: none;
  color: inherit;
}

/* Neuer Container nur für den Text (untereinander) */
.nav-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

/* Styling für das quadratische Logo */
.nav-logo {
  width: 44px; /* Quadratische Breite */
  height: 44px; /* Quadratische Höhe */
  object-fit: contain;
}

/* Wenn gescrollt wird, bekommt das Logo wieder seine Originalfarbe */
#nav.scrolled .nav-logo {
  filter: none;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition:
    color 0.4s ease,
    text-shadow 0.4s ease;
}
.nav-title {
  font-size: 10.5px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition:
    color 0.4s ease,
    text-shadow 0.4s ease;
}
#nav.scrolled .nav-name {
  color: var(--dark);
  text-shadow: none;
}
#nav.scrolled .nav-title {
  color: var(--mid);
  text-shadow: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
#nav.scrolled .nav-links a {
  color: var(--dark);
  text-shadow: none;
}
#nav.scrolled .nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  position: relative;
  background: var(--grad-red);
  color: #fff;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 4px 20px rgba(192, 49, 43, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(192, 49, 43, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}
.nav-cta:hover::before {
  transform: translateX(100%);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.4s ease;
}
#nav.scrolled .burger span {
  background: var(--dark);
}
.mobile-cta {
  display: none;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs in hero */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-orb.o1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 74, 63, 0.45), transparent 70%);
  top: -120px;
  left: 8%;
  animation-delay: 0s;
}
.hero-orb.o2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(29, 142, 142, 0.3), transparent 70%);
  bottom: -100px;
  left: 20%;
  animation-delay: -6s;
}
.hero-orb.o3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(212, 165, 116, 0.25),
    transparent 70%
  );
  top: 40%;
  left: 30%;
  animation-delay: -12s;
}
@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 40px) scale(0.95);
  }
}

/* Grid lines pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 60% at 30% 50%,
    #000 0%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 30% 50%,
    #000 0%,
    transparent 80%
  );
  z-index: 0;
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(32px, 5vw, 72px) 0 clamp(24px, 4vw, 56px);
  z-index: 2;
}
.hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  width: 160px;
  background: linear-gradient(
    to right,
    transparent,
    var(--dark2) 40%,
    var(--dark2)
  );
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-in-up 0.9s var(--ease-out) 0.2s forwards;
}
.hero-overline::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-light));
}
.hero-overline .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-light);
  position: relative;
  box-shadow: 0 0 12px var(--red-light);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 400;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 28px;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.hero-h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-rise 0.9s var(--ease-out) forwards;
}
.hero-h1 .word:nth-child(1) {
  animation-delay: 0.35s;
}
.hero-h1 .word:nth-child(2) {
  animation-delay: 0.45s;
}
.hero-h1 .word:nth-child(3) {
  animation-delay: 0.55s;
}
.hero-h1 .word:nth-child(4) {
  animation-delay: 0.65s;
}
.hero-h1 .word:nth-child(5) {
  animation-delay: 0.75s;
}
.hero-h1 .gradient-text {
  background: linear-gradient(
    135deg,
    #fff 0%,
    #ffd9d6 60%,
    var(--red-light) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
@keyframes word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fade-in-up 0.9s var(--ease-out) 0.9s forwards;
}
.hero-sub strong {
  color: #fff;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in-up 0.9s var(--ease-out) 1.05s forwards;
}
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  position: relative;
  background: var(--grad-red);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
  box-shadow:
    0 6px 24px rgba(192, 49, 43, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(192, 49, 43, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero stats badge */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fade-in-up 0.9s var(--ease-out) 1.25s forwards;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num em {
  font-style: normal;
  background: linear-gradient(135deg, #fff, var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

/* EKG-Linie (animated, futuristic) */
.ekg-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.55;
}
.ekg-line {
  position: absolute;
  bottom: 28px;
  left: -10%;
  width: 120%;
  height: 60px;
}
.ekg-path {
  fill: none;
  stroke: url(#ekgGrad);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(232, 74, 63, 0.7));
}
.ekg-trail {
  fill: none;
  stroke: rgba(232, 74, 63, 0.18);
  stroke-width: 1.2;
}
.ekg-pulse {
  fill: var(--red-light);
  filter: drop-shadow(0 0 8px var(--red-light));
}

.scroll-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 5;
  font-weight: 500;
}
.scroll-arrow .line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-right {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.92);
  animation: hero-zoom 14s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--dark2) 0%,
      rgba(20, 17, 15, 0.75) 25%,
      rgba(20, 17, 15, 0.25) 55%,
      transparent 75%
    ),
    linear-gradient(to top, rgba(20, 17, 15, 0.6) 0%, transparent 40%);
  z-index: 1;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    transparent 0%,
    rgba(20, 17, 15, 0.4) 100%
  );
  z-index: 2;
}

/* Floating tech badge over image */
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fade-in-up 1s var(--ease-out) 1.4s forwards;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192, 49, 43, 0.5);
  position: relative;
}
.hero-badge-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 1px solid rgba(232, 74, 63, 0.4);
  animation: pulse-ring-small 2s ease-out infinite;
}
@keyframes pulse-ring-small {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.hero-badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.hero-badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.hero-badge-text strong {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

/* ═══ §1 PRÄVENTION HERO STRIP — Trust signal under hero ═══ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--light);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 49, 43, 0.03),
    transparent
  );
  pointer-events: none;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  flex-shrink: 0;
}

/* ═══ Section Shared ═══ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
  position: relative;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.section-h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-intro {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--mid);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ═══ §2 GESUNDHEITSVORSORGE — PRIMARY FUNNEL FOCUS ═══ */
#vorsorge {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#vorsorge::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 49, 43, 0.05), transparent 70%);
  pointer-events: none;
}
#vorsorge::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 142, 142, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

.vorsorge-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(80px, 10vw, 120px);
}
.vorsorge-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-red);
  box-shadow: var(--shadow-elevated);
}
.vorsorge-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  z-index: 1;
}
/* Animated heart pulse SVG inside */
.heart-pulse-graphic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.heart-pulse-graphic svg {
  width: 70%;
  height: 70%;
}
.heart-shape {
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.3));
  animation: heart-beat 1.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heart-beat {
  0%,
  100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.08);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.06);
  }
  70% {
    transform: scale(1);
  }
}
.heart-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1.5;
  animation: ring-expand 2.8s ease-out infinite;
  transform-origin: center;
}
.heart-ring.r2 {
  animation-delay: -1.4s;
}
@keyframes ring-expand {
  0% {
    transform: scale(0.6);
    opacity: 1;
    stroke-width: 2;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
    stroke-width: 0.5;
  }
}

/* Floating data points around visual */
.data-point {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: data-float 6s ease-in-out infinite;
}
.data-point.dp1 {
  top: 10%;
  right: -24px;
  animation-delay: 0s;
}
.data-point.dp2 {
  bottom: 18%;
  left: -32px;
  animation-delay: -2s;
}
.data-point.dp3 {
  top: 50%;
  right: -40px;
  animation-delay: -4s;
}
@keyframes data-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.data-point-label {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
  font-weight: 500;
}
.data-point-value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dark);
  line-height: 1;
}
.data-point-value .accent {
  color: var(--red);
}
.data-point-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}
.data-point-mini .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.vorsorge-content h2 .num {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--red);
  font-style: normal;
}
.vorsorge-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vorsorge-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light);
  transition: padding 0.35s var(--ease-out);
}
.vorsorge-list-item:last-child {
  border-bottom: none;
}
.vorsorge-list-item:hover {
  padding-left: 8px;
}
.vorsorge-list-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--red);
  font-weight: 500;
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.05em;
}
.vorsorge-list-text {
  flex: 1;
}
.vorsorge-list-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.vorsorge-list-desc {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.55;
}
.vorsorge-list-arrow {
  color: var(--red);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  font-size: 18px;
  align-self: center;
}
.vorsorge-list-item:hover .vorsorge-list-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══ Vorsorge Modules Grid (Bausteine der Prävention) ═══ */
.vorsorge-modules {
  margin-top: clamp(40px, 6vw, 64px);
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.module-card {
  position: relative;
  background: var(--grad-card-prevention);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(192, 49, 43, 0.2);
}
.module-card:hover::before {
  transform: scaleX(1);
}
.module-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(192, 49, 43, 0.08),
    rgba(232, 74, 63, 0.04)
  );
  border: 1px solid rgba(192, 49, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    transform 0.4s var(--ease-spring),
    background 0.4s ease;
}
.module-card:hover .module-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--grad-red);
}
.module-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}
.module-card:hover .module-icon svg {
  stroke: #fff;
}
.module-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.module-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.module-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.module-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  background: rgba(192, 49, 43, 0.08);
  padding: 5px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

/* ═══ §3 LEISTUNGEN: KARDIOLOGIE & SPORTKARDIOLOGIE ═══ */
#leistungen {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.leistungen-grid-wide {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(48px, 6vw, 64px);
}
.leistung-large,
.leistung-medium {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 56px);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s ease;
}
.leistung-large {
  background: linear-gradient(135deg, #1c1816 0%, #14110f 60%, #0e0d0c 100%);
  color: #fff;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.leistung-large::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(
    ellipse,
    rgba(192, 49, 43, 0.35) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: shift-glow 12s ease-in-out infinite;
}
@keyframes shift-glow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10%, 10%) rotate(20deg);
  }
}
.leistung-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000,
    transparent 80%
  );
}
.leistung-large > * {
  position: relative;
  z-index: 1;
}

.leistung-large .module-num {
  color: var(--red-light);
}
.leistung-large .leistung-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(192, 49, 43, 0.45);
  position: relative;
}
.leistung-large .leistung-icon-large::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid rgba(232, 74, 63, 0.3);
  animation: pulse-ring-small 2.4s ease-out infinite;
}
.leistung-large .leistung-icon-large svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}
.leistung-title-large {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.leistung-desc-large {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.leistung-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.leistung-feature {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.leistung-feature svg {
  width: 14px;
  height: 14px;
  stroke: var(--red-light);
  flex-shrink: 0;
}

.leistung-cta-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Sub-card: Sportkardiologie sits inside cardio context */
.leistung-medium {
  background: var(--grad-card-cardio);
  border: 1px solid var(--light);
  display: flex;
  flex-direction: column;
}
.leistung-medium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.leistung-medium .leistung-icon-large {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(192, 49, 43, 0.1),
    rgba(232, 74, 63, 0.05)
  );
  border: 1px solid rgba(192, 49, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.leistung-medium .leistung-icon-large svg {
  width: 26px;
  height: 26px;
  stroke: var(--red);
}
.leistung-medium .module-num {
  color: var(--red);
}
.leistung-medium .leistung-title-large {
  color: var(--dark);
  font-size: clamp(24px, 2.2vw, 30px);
}
.leistung-medium .leistung-desc-large {
  color: var(--mid);
  font-size: 14px;
}
.leistung-medium .leistung-features {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 24px;
}
.leistung-medium .leistung-feature {
  color: var(--dark);
  border-color: var(--light);
  font-size: 13px;
}
.leistung-medium .leistung-feature svg {
  stroke: var(--red);
}

.subnote-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  background: rgba(192, 49, 43, 0.08);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  width: fit-content;
}

.btn-link-arrow {
  color: var(--red);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease-out);
}
.btn-link-arrow:hover {
  gap: 12px;
}
.btn-link-arrow .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.leistung-large .btn-link-arrow {
  color: var(--red-light);
}

.btn-cta-on-dark {
  background: #fff;
  color: var(--dark);
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}
.btn-cta-on-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* ═══ §4 ÜBER DR. DEXLING ═══ */
#ueber {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.ueber-grid {
  display: grid;
  grid-template-columns: clamp(280px, 32%, 360px) 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 60px);
}
.ueber-portrait-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ueber-portrait-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  z-index: 3;
}
.ueber-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(135deg, #1c1816, #14110f);
  filter: contrast(1.05);
}
.ueber-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(to top, rgba(20, 17, 15, 0.9), transparent);
  z-index: 2;
  color: #fff;
}
.ueber-portrait-overlay-name {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 4px;
}
.ueber-portrait-overlay-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ueber-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ueber-specialty {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 32px;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
  background: linear-gradient(
    135deg,
    rgba(192, 49, 43, 0.04),
    rgba(232, 74, 63, 0.02)
  );
  border: 1px solid var(--light);
}
.cred {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--dark);
  border-bottom: 1px solid var(--light);
  border-right: 1px solid var(--light);
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.cred:nth-child(2n) {
  border-right: none;
}
.cred:nth-last-child(-n + 2) {
  border-bottom: none;
}

.timeline {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--light);
  padding-left: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 60%;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.tl-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  font-size: 13.5px;
  position: relative;
  align-items: baseline;
}
.tl-row::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--light);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.tl-row:hover::before {
  border-color: var(--red);
  transform: scale(1.2);
}
.tl-year {
  min-width: 90px;
  color: var(--red);
  font-weight: 600;
  flex-shrink: 0;
  font-feature-settings: "tnum";
}
.tl-text {
  color: var(--mid);
  line-height: 1.6;
}
.tl-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* Marquee */
.marquee-section {
  margin-top: 56px;
  border-top: 1px solid var(--light);
  padding-top: 36px;
}
.marquee-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
  font-weight: 500;
}
.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-inner:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  padding: 10px 36px;
  border-right: 1px solid var(--light);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mid);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.marquee-item:hover {
  color: var(--red);
}

/* ═══ §5 BEWERTUNGEN ═══ */
#bewertungen {
  background: linear-gradient(180deg, #14110f 0%, #1c1816 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
#bewertungen::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  max-width: 120vw;
  max-height: 120vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 49, 43, 0.12), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orb-float 20s ease-in-out infinite;
}
#bewertungen::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000,
    transparent 80%
  );
}
#bewertungen .section-inner > * {
  position: relative;
  z-index: 2;
}
#bewertungen .section-label {
  color: var(--red-light);
}
#bewertungen .section-label::before {
  background: var(--red-light);
}
#bewertungen .section-h2 {
  color: #fff;
}
#bewertungen .section-intro {
  color: rgba(255, 255, 255, 0.55);
}

.bewertungen-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.google-rating-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: #fff;
  line-height: 1;
}
.google-rating-stars {
  color: var(--red-light);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.google-rating-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.bewertungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.bewertung-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(26px, 2.6vw, 32px);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.bewertung-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 74, 63, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bewertung-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 74, 63, 0.25);
  transform: translateY(-6px);
}
.bewertung-card:hover::before {
  opacity: 1;
}
.bewertung-quote-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 0.6;
  color: var(--red);
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}
.stars {
  color: var(--red-light);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.bewertung-quote {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 22px;
}
.bewertung-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.bewertung-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.bewertung-meta-name {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}

/* ═══ §6 KONTAKT ═══ */
#kontakt {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 56px);
}
.kontakt-col {
  background: var(--bg-warm);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}
.kontakt-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.kontakt-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.kontakt-col:hover::before {
  transform: scaleX(1);
}

.kontakt-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(192, 49, 43, 0.1),
    rgba(232, 74, 63, 0.05)
  );
  border: 1px solid rgba(192, 49, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.kontakt-col-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
}
.kontakt-col-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.kontakt-detail {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
}
.kontakt-detail a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.kontakt-detail a:hover {
  color: var(--red);
}

.booking-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-note {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.6;
}

.sprechzeit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
  color: var(--dark);
  align-items: center;
}
.sprechzeit-row:last-child {
  border-bottom: none;
}
.sprechzeit-row .day {
  font-weight: 500;
  color: var(--dark);
}
.sprechzeit-row .time {
  color: var(--mid);
  font-feature-settings: "tnum";
}
.sprechzeit-highlight {
  color: var(--red);
  font-weight: 600;
  font-size: 12px;
}

/* ═══ Footer ═══ */
footer {
  background: linear-gradient(180deg, #14110f, #0a0807);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 100px) 0 32px;
  text-align: center;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(192, 49, 43, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.footer-pre {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}
.footer-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  position: relative;
  text-wrap: balance;
}
.footer-headline em {
  font-style: italic;
  background: linear-gradient(120deg, #fff, var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-nav-wrapper {
  margin: clamp(48px, 6vw, 64px) 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  position: relative;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 32px);
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  position: relative;
}
.footer-copy span {
  display: block;
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.6;
}

/* ═══ Reveal Animations ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.visible > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger.visible > *:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger.visible > *:nth-child(3) {
  transition-delay: 0.16s;
}
.stagger.visible > *:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger.visible > *:nth-child(5) {
  transition-delay: 0.32s;
}
.stagger.visible > *:nth-child(6) {
  transition-delay: 0.4s;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .leistungen-grid-wide {
    grid-template-columns: 1fr;
  }
  .leistung-large {
    min-height: auto;
  }
  .vorsorge-hero {
    gap: 56px;
  }
  .data-point.dp1,
  .data-point.dp3 {
    right: 8px;
  }
  .data-point.dp2 {
    left: 8px;
  }
}
@media (max-width: 900px) {
  #nav {
    padding: 0 20px;
  }
  #nav.scrolled {
    padding: 0 20px;
  }
  .desktop-cta {
    display: none;
  }
  .burger {
    display: flex;
    order: 3;
  }
  .nav-actions {
    gap: 0;
  }
  #nav.scrolled:has(.nav-active) {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(247, 244, 240, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
    z-index: 100;
  }
  .nav-links.nav-active {
    opacity: 1;
    visibility: visible;
  }
  #nav .nav-links a,
  #nav.scrolled .nav-links a {
    color: var(--dark);
    text-shadow: none;
    font-size: 22px;
  }
  .mobile-cta {
    display: inline-block;
    margin-top: 16px;
  }
  .burger.toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .burger.toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-right {
    display: none;
  }
  .hero-left::after {
    display: none;
  }
  .hero-left {
    padding: 140px 28px 60px;
  }
  .hero-stats {
    gap: 22px;
    flex-wrap: wrap;
  }

  .vorsorge-hero {
    grid-template-columns: 1fr;
  }
  .vorsorge-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }
  .bewertungen-grid {
    grid-template-columns: 1fr;
  }
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ueber-portrait-wrap {
    max-width: 360px;
  }
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .creds {
    grid-template-columns: 1fr;
  }
  .cred {
    border-right: none;
  }
  .cred:nth-child(2n) {
    border-right: none;
  }
  .leistung-features {
    grid-template-columns: 1fr;
  }
  .bewertungen-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .data-point {
    display: none;
  }
}

@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;
  }
}
