/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --blue-primary: #2196F3;
  --blue-dark:    #0D6EBC;
  --blue-light:   #E3F2FD;
  --teal:         #00BCD4;
  --teal-light:   #E0F7FA;
  --white:        #ffffff;
  --bg-light:     #F7FBFF;
  --bg-section:   #F0F8FF;
  --text-dark:    #1A2840;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --border:       #D0E8F8;
  --shadow:       0 4px 24px rgba(33,150,243,0.10);
  --shadow-lg:    0 12px 40px rgba(33,150,243,0.16);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--text-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 13px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,150,243,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33,150,243,0.40);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-primary);
}

.btn-outline-blue {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background: transparent;
}
.btn-outline-blue:hover {
  background: var(--blue-primary);
  color: #fff;
}

/* ==============================
   TOPBAR
============================== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 7px 0;
  white-space: nowrap;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  max-width: 100vw;
  padding: 0 32px;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  white-space: nowrap;
}
.topbar a:hover { color: #fff; }
.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 1;
  min-width: 0;
}
.topbar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar-cta {
  font-weight: 600;
  color: #80DEEA !important;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(128,222,234,0.4);
  border-radius: 50px;
  padding: 3px 14px;
  font-size: 0.8rem;
}
.topbar-cta:hover {
  background: rgba(128,222,234,0.15);
  color: #fff !important;
}

/* ==============================
   NAVIGATION
============================== */
.navbar {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(33,150,243,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(33,150,243,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 100vw;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.72rem;
  color: var(--blue-primary);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue-primary);
  background: var(--blue-light);
}
.nav-cta {
  margin-left: 8px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a3d7c 0%, #1976D2 40%, #2196F3 70%, #00BCD4 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,61,124,0.88) 0%, rgba(25,118,210,0.75) 55%, rgba(0,188,212,0.5) 100%);
}
/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -150px;
  right: -100px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,188,212,0.10);
  bottom: -100px;
  left: -80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-text h1 span {
  color: #80DEEA;
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.hero-photo-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-photo-placeholder {
  width: 100%;
  height: 460px;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  gap: 8px;
}

/* ==============================
   FEATURES BAR
============================== */
.features-bar {
  background: #fff;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.feature-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ==============================
   LEISTUNGEN (SERVICES)
============================== */
.leistungen {
  padding: 96px 0;
  background: var(--bg-light);
}
.leistungen-header {
  text-align: center;
  margin-bottom: 60px;
}
.leistungen-header .section-subtitle {
  margin: 0 auto;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue-primary), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  border-radius: 50px;
  padding: 3px 10px;
  margin-top: 14px;
}

/* ==============================
   ÜBER UNS / DR. MEYER
============================== */
.ueber-uns {
  padding: 96px 0;
  background: var(--white);
}
.ueber-uns-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ueber-bild {
  position: relative;
}
.ueber-bild img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.ueber-bild-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 0.9rem;
  text-align: center;
  border: 2px dashed var(--blue-primary);
  opacity: 0.6;
}
.ueber-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(33,150,243,0.35);
  text-align: center;
}
.ueber-badge-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.ueber-badge-card .label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
}
.ueber-text .section-tag { display: block; }
.ueber-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.75;
}
.ueber-liste {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ueber-liste li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.ueber-liste li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==============================
   PRAXIS / GALERIE
============================== */
.praxis {
  padding: 96px 0;
  background: var(--bg-section);
}
.praxis-header {
  text-align: center;
  margin-bottom: 52px;
}
.praxis-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: '⤢';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  background: rgba(255,255,255,0.9);
  color: var(--blue-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  line-height: 44px;
  text-align: center;
}
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---- LIGHTBOX ---- */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-overlay.active { display: flex; }
.lb-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}
.lb-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-top: 14px;
  text-align: center;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
}
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
}
.lb-arrow:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.gallery-item.large {
  grid-row: span 2;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 0.8rem;
  text-align: center;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  flex-direction: column;
  gap: 8px;
  opacity: 0.7;
}

/* ==============================
   ÖFFNUNGSZEITEN BANNER
============================== */
.oeffnungszeiten-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--teal) 100%);
  padding: 64px 0;
  color: #fff;
}
.oz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.oz-text h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.oz-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
}
.oz-table {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.oz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.oz-row:last-child { border-bottom: none; }
.oz-row .tag {
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.oz-row .time {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.oz-notfall {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ==============================
   KONTAKT
============================== */
.kontakt {
  padding: 96px 0;
  background: var(--white);
}
.kontakt-header {
  text-align: center;
  margin-bottom: 60px;
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.kontakt-info h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.kontakt-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.kontakt-item-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--blue-primary);
}
.kontakt-item-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.kontakt-item-text span, .kontakt-item-text a {
  font-size: 0.92rem;
  color: var(--text-mid);
}
.map-embed {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.map-embed iframe {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: none;
}

/* Kontaktformular */
.kontakt-form {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.kontakt-form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.kontakt-form p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.12);
}
.form-group textarea { min-height: 110px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 24px;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.form-check input { margin-top: 2px; accent-color: var(--blue-primary); }
.form-submit { width: 100%; justify-content: center; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.form-success h4 {
  color: #2E7D32;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ==============================
   FOOTER
============================== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.3;
}
.footer-logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links li a:hover {
  color: var(--blue-primary);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.footer-contact-item .icon {
  width: 20px;
  opacity: 0.6;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
}
.footer-contact-item a:hover { color: var(--blue-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links a:hover { color: var(--blue-primary); }

/* ==============================
   BACK TO TOP
============================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(33,150,243,0.4);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ==============================
   COOKIE BANNER
============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,40,64,0.97);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--blue-primary); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-btn-accept {
  background: var(--blue-primary);
  color: #fff;
}
.cookie-btn-accept:hover { background: var(--blue-dark); }
.cookie-btn-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-decline:hover { background: rgba(255,255,255,0.15); }

/* ==============================
   MODALS
============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
}
.modal-close:hover { background: var(--border); }
.modal-box h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.modal-box h3 {
  font-size: 1rem;
  margin: 20px 0 8px;
  color: var(--text-dark);
}
.modal-box p, .modal-box address {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: normal;
}

/* ==============================
   ANIMATIONS
============================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* --- Globales Layout --- */
  .container { padding: 0 16px; }

  /* --- Topbar --- */
  .topbar { display: none; }

  /* --- Navbar --- */
  .navbar .container { flex-wrap: nowrap; padding: 0 16px; gap: 8px; }
  .nav-logo-sub { display: none; }
  .nav-logo-name { font-size: 0.9rem; }
  .nav-logo img { height: 36px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--blue-light);
    border-radius: 10px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
  }
  .nav-toggle span {
    width: 20px;
    height: 2.5px;
    background: var(--blue-primary);
    border-radius: 2px;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    gap: 4px;
    z-index: 100;
  }

  /* --- Hero --- */
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 60px 0 40px; }
  .hero-image-wrap { display: none; }
  .hero-text h1 { font-size: 2rem; }

  /* --- Features --- */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* --- Leistungen --- */
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }

  /* --- Über uns --- */
  .ueber-uns-inner { grid-template-columns: 1fr; gap: 40px; }
  .ueber-badge-card { display: none; }
  .ueber-bild img { height: 340px; }
  .ueber-bild-placeholder { height: 340px; }

  /* --- Galerie --- */
  .praxis-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: span 1; }

  /* --- Öffnungszeiten --- */
  .oz-inner { grid-template-columns: 1fr; gap: 32px; }

  /* --- Kontakt --- */
  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-form { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .map-embed { height: 200px; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  footer { overflow: hidden; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .praxis-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .oz-table { padding: 20px 14px; }
  .kontakt-form { padding: 18px 14px; }
  .hero-text h1 { font-size: 1.75rem; }
}
