/* ═══════════════════════════════════════════
   Deutsches PIPAC-Zentrum – Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --orange: #E8952D;
  --orange-light: #F5B44D;
  --orange-bg: #FDF5EB;
  --dark: #1A1A1A;
  --text: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --white-bg: #FFFFFF;
  --gray-bg: #F7F7F7;
  --gray-border: #E0E0E0;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 120px;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

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

nav a.btn-contact,
nav a.btn-contact.active {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
}

nav a.btn-contact:hover,
nav a.btn-contact.active:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,149,45,0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.02em;
}

.logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--text-light); }

.logo-img {
  height: 44px;
  width: auto;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.partner-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-border);
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.2s;
}
nav a:hover { background: var(--orange-bg); color: var(--orange); }
nav a.active { color: var(--orange); font-weight: 600; }

.nav-home {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.btn-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,149,45,0.35);
  background: var(--orange-light) !important;
}

.contact-success .btn-more {
  color: var(--white) !important;
}

.contact-success .btn-more:hover {
  color: var(--dark) !important;
}

.contact-form .btn-more:hover {
  color: var(--dark) !important;
}



.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #F9A825 0%, #E8952D 30%, #D4843A 60%, #B8734A 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,220,120,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(180,100,30,0.4) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
  animation: fadeFloat 6s ease-in-out infinite;
}
.hero-orb:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 60%; background: rgba(255,230,160,0.25); animation-delay: 0s; }
.hero-orb:nth-child(2) { width: 50px; height: 50px; top: 30%; left: 75%; background: rgba(255,210,130,0.2); animation-delay: 1.5s; }
.hero-orb:nth-child(3) { width: 120px; height: 120px; top: 45%; left: 50%; background: rgba(255,240,180,0.15); animation-delay: 3s; }
.hero-orb:nth-child(4) { width: 40px; height: 40px; top: 20%; left: 40%; background: rgba(255,220,150,0.2); animation-delay: 4.5s; }

@keyframes fadeFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-12px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
}

.hero .container {
  width: 100%;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  text-align: left;
}

.hero-quote {
  font-size: 17px;
  font-style: italic;
  opacity: 0.92;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

.hero-figure {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 380px;
  height: 500px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 100%);
  border-radius: 50% 50% 0 0;
  opacity: 0.15;
}

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  background: linear-gradient(135deg, #F9A825 0%, #E8952D 50%, #D4843A 100%);
  padding: 120px 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,220,120,0.3) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 700px;
}

/* ─── SECTIONS ─── */
section { padding: 80px 0; }

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

/* ─── ABOUT ─── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 15px;
}

.about-text .highlight {
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin-top: 24px;
}

.doctor-card {
  background: var(--gray-bg);
  border-radius: 16px;
  overflow: hidden;
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info { padding: 24px; }

.doctor-info h3 {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}

.doctor-info ul {
  padding-left: 20px;
  margin: 0;
}

.doctor-info li {
  border-bottom: 1px solid var(--orange-light);
  padding: 8px 0;
}

.doctor-info li:last-child {
  border-bottom: none;
}

.doctor-info p + p {
  border-top: 1px solid var(--orange-light);
  padding-top: 10px;
  margin-top: 10px;
}

/* ─── INFO ─── */
.info { background: var(--gray-bg); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e0d5c8, #c8b8a8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-image::after {
  content: '🤝';
  font-size: 64px;
  opacity: 0.5;
}

.info-image.has-img::after { display: none; }

.info-text p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ─── BUTTONS ─── */
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,149,45,0.3);
}
.btn-more svg { transition: transform 0.2s; }
.btn-more:hover svg { transform: translateX(4px); }

/* ─── APPOINTMENTS ─── */
.appointments { background: var(--white); }

.appointments-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.appointments-header p {
  color: var(--text-light);
  font-size: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: var(--orange-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--orange-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { color: var(--orange); }

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.appointments-bottom {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.appointments-bottom p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.appointments-bottom .bold {
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 28px;
}

/* ─── CONTENT PAGES ─── */
.page-content {
  padding: 80px 0;
  background: var(--white);
}

.page-content .container {
  max-width: 100%;
}

.page-content h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 40px 0 16px;
}

.page-content h2:first-of-type {
  margin-top: 0;
}

.page-content p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
}

.page-content ul {
  color: var(--text-light);
  font-size: 15px;
  margin: 0 0 16px 24px;
}

.page-content ul li {
  margin-bottom: 8px;
}

.page-content a {
  color: var(--orange);
  text-decoration: underline;
}
.page-content a:hover {
  color: var(--dark);
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  margin-bottom: 28px;
}

.contact-info-block h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-block p {
  margin-bottom: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  cursor: pointer;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,149,45,0.15);
}

.form-group input[type="file"] {
  padding: 12px 16px;
  border: 1px dashed var(--gray-border);
  border-radius: 10px;
  background: var(--gray-bg);
  cursor: pointer;
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--text-light);
}

.form-group input[type="file"]:hover {
  border-color: var(--orange);
}

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

.file-upload-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px dashed var(--gray-border);
  border-radius: 10px;
  background: var(--gray-bg);
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-upload-area:hover {
  border-color: var(--orange);
}

.file-upload-area span {
  font-size: 14px;
  color: var(--text-light);
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--orange-bg);
  border-radius: 8px;
  font-size: 13px;
  color: var(--dark);
}

.file-item small {
  color: var(--text-light);
}

.file-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.file-remove:hover {
  color: #e53935;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--orange-bg);
  border-radius: 8px;
  font-size: 13px;
  color: var(--dark);
}

.file-item small {
  color: var(--text-light);
}

.file-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.file-remove:hover {
  color: #e53935;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  padding: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 56px 0 40px;
}

.footer-col-brand {
  max-width: 380px;
}

.footer-col-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon { width: 34px; height: 34px; font-size: 9px; }

.footer-tagline {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.social-icon:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.footer-col-links {
  display: flex;
  gap: 64px;
}

.footer-link-group h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.footer-link-group a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link-group a:hover { color: var(--orange); }

/* Partners row */
.footer-partners-row {
  padding: 24px 0;
  border-top: 1px solid var(--gray-border);
}

.footer-partners-row h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.partner-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  transition: border-color 0.2s;
}
.partner-logo-img:hover { border-color: var(--orange-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--gray-border);
  font-size: 13px;
  color: var(--text-light);
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--orange); }

.footer-legal-sep {
  width: 4px;
  height: 4px;
  background: var(--gray-border);
  border-radius: 50%;
}

/* ─── DOCTOR SEARCH BANNER ─── */
.doctor-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-bg);
}

.doctor-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.doctor-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.doctor-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.1) 100%);
  z-index: 1;
}

.doctor-banner .container {
  position: relative;
  z-index: 2;
}

.doctor-banner-content {
  max-width: 500px;
}

.doctor-banner-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.doctor-banner-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .doctor-banner {
    min-height: 280px;
  }
  .doctor-banner-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 70%, rgba(255,255,255,0.3) 100%);
  }
}

/* ─── ERFAHRUNGSBERICHTE PAGE ─── */
.exp-intro {
  padding: 80px 0 60px;
  background: var(--white);
}

.exp-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: center;
}

.exp-intro-highlight {
  background: var(--orange-bg);
  border-left: 4px solid var(--orange);
  padding: 28px 32px;
  border-radius: 0 14px 14px 0;
}

.exp-intro-highlight h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--dark);
  line-height: 1.3;
}

.exp-intro-right p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Featured Quote */
.exp-featured-quote {
  padding: 0 0 80px;
  background: var(--white);
}

.exp-quote-card {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.exp-quote-text {
  padding: 48px;
  position: relative;
  background: var(--white);
}

.exp-quote-icon {
  position: absolute;
  top: 24px;
  left: 32px;
  opacity: 0.6;
}

.exp-quote-text blockquote {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.exp-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exp-quote-author strong {
  font-size: 15px;
  color: var(--dark);
}

.exp-quote-author span {
  font-size: 13px;
  color: var(--text-light);
}

.exp-quote-aside {
  background: var(--orange-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.exp-quote-badge {
  text-align: center;
}

.exp-quote-badge svg {
  margin-bottom: 12px;
}

.exp-quote-badge h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

/* Stories List */
.exp-more {
  padding: 80px 0;
  background: var(--gray-bg);
}

.exp-stories-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.exp-story-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: box-shadow 0.3s, transform 0.3s;
}

.exp-story-img {
  overflow: hidden;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
  background: var(--orange-bg);
}

.exp-story-reverse .exp-story-img {
  order: 2;
  background: var(--orange-bg);
}

.exp-story-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.exp-story-card:hover .exp-story-content h3 {
  color: var(--dark);
}

.exp-story-reverse {
  grid-template-columns: 1fr 280px;
}

.exp-story-reverse .exp-story-content {
  order: 1;
  border-left: 4px solid var(--orange);
}

.exp-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-story-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.exp-story-placeholder svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: var(--gray-border);
  opacity: 0.5;
}

.exp-story-placeholder::before {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}

.exp-story-placeholder::after {
  content: 'Anonymisiert';
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.5;
}

.exp-story-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-story-content h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color 0.2s;
}

.exp-story-card:hover .exp-story-content h3 {
  color: var(--orange);
}

.exp-story-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.exp-story-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.exp-story-meta strong {
  font-size: 15px;
  color: var(--dark);
  font-style: normal;
}

.exp-story-meta span {
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
}

/* Responsive Erfahrungen */
@media (max-width: 900px) {
  .exp-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .exp-quote-card {
    grid-template-columns: 1fr;
  }
  .exp-quote-aside {
    padding: 28px;
  }
  .exp-story-card,
  .exp-story-reverse {
    grid-template-columns: 1fr;
  }
  .exp-story-reverse .exp-story-img { order: 0; }
  .exp-story-reverse .exp-story-content { order: 0; }
  .exp-story-img { min-height: 180px; }
  .exp-story-content { padding: 24px; }
  .exp-quote-text { padding: 28px; }
}

/* ─── WISSENSCHAFT PAGE ─── */
.sci-forschung {
  padding: 80px 0;
  background: var(--white);
}

.sci-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.sci-intro-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.sci-intro-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sci-intro-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

/* PIPAC 2.0 */
.sci-pipac2 {
  padding: 80px 0;
  background: var(--white-bg);
}

.sci-pipac2-header { margin-bottom: 16px; }

.sci-pipac2-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 700px;
}

.sci-pipac2-detail {
  margin-bottom: 36px;
}

.sci-pipac2-detail p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.sci-features-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.sci-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sci-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sci-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: var(--orange-light);
}
.sci-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.sci-feature-card h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.sci-feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Forschung Grundlage */
.sci-grundlage {
  padding: 80px 0;
  background: var(--gray-bg);
}

.sci-grundlage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.sci-grundlage-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.sci-grundlage-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sci-stat-card {
  background: var(--orange-bg);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(232,149,45,0.15);
}

.sci-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}

.sci-stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Publikationen */
.sci-publikationen {
  padding: 80px 0;
  background: var(--white-bg);
}

.sci-pub-list {
  margin-top: 32px;
}

/* Accordion */
.sci-accordion {
  border-bottom: 1px solid var(--gray-border);
}

.sci-accordion:first-child {
  border-top: 1px solid var(--gray-border);
}

.sci-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: color 0.2s;
}

.sci-accordion-btn span {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}

.sci-accordion-btn:hover span {
  color: var(--orange);
}

.sci-accordion-btn svg {
  color: var(--text-light);
  transition: transform 0.3s, color 0.2s;
}

.sci-accordion-btn.active svg {
  transform: rotate(180deg);
  color: var(--orange);
}

.sci-accordion-btn.active span {
  color: var(--orange);
}

.sci-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 4px;
}

.sci-accordion-content.open {
  max-height: 600px;
  padding: 0 4px 16px;
}

.sci-pub-item {
  padding: 14px 0 14px 20px;
  margin-left: 20px;
  border-bottom: 1px solid var(--gray-border);
}

.sci-pub-item:last-child {
  border-bottom: none;
}

.sci-pub-item p {
  transition: color 0.2s;
}

.sci-pub-item a:hover p,
.sci-pub-item a:hover p em,
.sci-pub-item a:hover p strong {
  color: var(--orange) !important;
}

/* Zertifizierung */
.sci-zertifizierung {
  padding: 80px 0;
  background: var(--gray-bg);
}

.sci-zert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
  align-items: start;
}

.sci-zert-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.sci-zert-partners h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* Responsive Wissenschaft */
@media (max-width: 900px) {
  .sci-intro-grid,
  .sci-grundlage-grid,
  .sci-zert-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sci-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sci-intro-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 550px) {
  .sci-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── ABOUT PAGE ─── */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-intro-img {
  border-radius: 16px;
  overflow: hidden;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.about-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.about-intro-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-top: 24px;
}

.about-check-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.about-check-item svg {
  flex-shrink: 0;
}

/* Person cards */
.about-person {
  padding: 80px 0;
}

.about-person-card {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-person-reverse {
  grid-template-columns: 1fr 0.7fr;
}

.about-person-reverse .about-person-img {
  order: 2;
}

.about-person-reverse .about-person-text {
  order: 1;
}

.about-person-img {
  border-radius: 16px;
  overflow: hidden;
}

.about-person-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 360px;
}

.about-person-placeholder {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #eee, #ddd);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-person-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--dark);
  margin-bottom: 8px;
}

.about-person-role {
  font-size: 15px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px !important;
}

.about-person-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* CTA */
.about-cta {
  padding: 80px 0;
  background: var(--orange-bg);
}

.about-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.about-cta-inner p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Responsive about */
@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-intro-img img { min-height: 250px; }
  .about-person-card,
  .about-person-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-person-reverse .about-person-img { order: 0; }
  .about-person-reverse .about-person-text { order: 0; }
  .about-person-img img { min-height: 250px; }
  .about-checks { grid-template-columns: 1fr; }
}

/* ─── INFO & BERATUNG PAGE ─── */
.info-beratung {
  padding: 80px 0;
  background: var(--white);
}

.info-ber-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-ber-right p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}


.image-container {
  width: 600px;
  height: 350px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.info-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.info-feature p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.info-feature p strong {
  color: var(--dark);
}

/* Unser Ziel */
.info-ziel {
  padding: 60px 0;
  background: var(--orange-bg);
}

.info-ziel-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.info-ziel-inner p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.info-ziel-inner p strong {
  color: var(--dark);
}

/* Allgemeine Informationen */
.info-allgemein {
  padding: 80px 0;
  background: var(--gray-bg);
}

.info-allg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.info-allg-img {
  width: 240px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.info-allg-img img {
  width: 100%;
  height: auto;
}

.info-ber-img {
  border-radius: 14px;
  overflow: hidden;
  max-height: 400px;
}

.info-ber-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tabs */
.slide-titles {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gray-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.slide-titles::-webkit-scrollbar {
  display: none;
}

.slide-title-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.5s ease, border-color 0.5s ease;
}

.slide-title-btn:hover {
  color: var(--orange);
}

.slide-title-btn.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 700;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 560px;
  user-select: none;
}

#infoSlider {
  cursor: grab;
}

#infoSlider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: none;
}

.slider-slide.active {
  display: block;
}

.slide-card {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 0;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  height: 560px;
  min-height: 560px;
}

.slide-img {
  position: relative;
  overflow: hidden;
  background: var(--orange-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  padding: 42px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.slide-text h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.slide-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.85;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .slider-container {
    height: auto;
  }

  .slider-slide {
    height: auto;
  }

  .slide-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
  }

  .slide-img {
    min-height: 260px;
  }

  .slide-text {
    padding: 28px 24px;
  }

  .slide-text p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 900px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .slide-titles {
    justify-content: flex-start;
  }
}

/* Keep old tab-content styles for backwards compat */
.info-tab-content {
  display: none;
}

.info-tab-content.active {
  display: block;
}

.info-tab-content h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  margin-top: 28px;
}

.info-tab-content h3:first-child {
  margin-top: 0;
}

.info-tab-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.info-tab-content ul {
  margin: 0 0 16px 20px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

.info-tab-content ul li {
  margin-bottom: 6px;
}

/* PIPAC 2.0 */
.info-pipac2 {
  padding: 80px 0;
  background: var(--gray-bg);
}

.info-pipac2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-pipac2-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-pipac2-img {
  border-radius: 14px;
  overflow: hidden;
  max-width: 360px;
  margin-left: auto;
}

.info-pipac2-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive info page */
@media (max-width: 900px) {
  .info-ber-top {
    grid-template-columns: 1fr;
  }
  .info-features {
    grid-template-columns: 1fr;
  }
  .info-allg-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-allg-img { width: 100%; }
  .info-pipac2-grid {
    grid-template-columns: 1fr;
  }
  .info-pipac2-img {
    margin-left: 0;
    max-width: 100%;
  }
}

/* ─── INFO PAGE NAV (prev/next) ─── */
.info-page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-border);
}

.info-page-prev,
.info-page-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}

.info-page-prev:hover,
.info-page-next:hover {
  gap: 10px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 84px 0 0;
  background: var(--white);
}
.breadcrumb .container {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-border);
}
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* ─── BLOG HEADER ─── */
.blog-header {
  padding: 100px 0 48px;
  text-align: center;
  background: var(--white);
}
.blog-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.text-orange { color: var(--orange); }
.blog-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── FEATURED ARTICLE ─── */
.blog-featured {
  padding: 48px 0 60px;
  background: var(--white);
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.featured-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.featured-img {
  position: relative;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.5s;
}
.featured-card:hover .featured-img img { transform: scale(1.03); }
.featured-card:hover .featured-body h2 { color: var(--orange); }
.featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h2 {
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.featured-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-badge-new {
  display: inline-block;
  background: #22C55E;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  width: fit-content;
}
.read-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
  transition: gap 0.2s;
}
.featured-card:hover .read-more { letter-spacing: 0.3px; }

/* ─── BLOG TAG ─── */
.blog-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ─── BLOG META ─── */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}
.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-meta-item svg { opacity: 0.5; flex-shrink: 0; }

/* ─── BLOG MORE SECTION ─── */
.blog-more {
  padding: 60px 0 80px;
  background: var(--gray-bg);
}
.blog-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.blog-section-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─── BLOG CARD ─── */
.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card:hover .blog-card-body h3 { color: var(--orange); }
.blog-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-body .blog-meta { margin-top: auto; }

/* ─── ARTICLE PAGE ─── */
.article-page {
  padding: 40px 0 60px;
  background: var(--white);
}
.article-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.article-meta-top {
  margin-bottom: 20px;
}
.article-meta-top .blog-tag {
  position: static;
  display: inline-block;
}
.article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 32px;
}
.article-body h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin: 36px 0 14px;
}
.article-body p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-body img {
  border-radius: 12px;
  margin: 24px 0;
}

/* Article CTA Box */
.article-cta {
  margin: 40px 0;
  padding: 28px;
  background: var(--orange-bg);
  border-radius: 14px;
  border: 1px solid rgba(232,149,45,0.2);
}
.article-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.article-cta h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.article-cta p {
  font-size: 14px !important;
  color: var(--text-light) !important;
  margin-bottom: 0 !important;
}

/* Article Author */
.article-author {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-border);
}
.article-author-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
}
.article-author-label a {
  color: var(--orange);
  font-weight: 600;
}

/* Article Related */
.article-related {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-border);
}
.article-related h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.article-related .blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── BLOG COMING SOON ─── */
.blog-coming-soon {
  margin-top: 48px;
  padding: 48px 40px;
  background: var(--orange-bg);
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--gray-border);
}

.blog-coming-soon h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.blog-coming-soon p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 20px;
}

.blog-coming-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.blog-coming-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  nav { display: none; }
  .hamburger { display: flex; }

  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 16px 16px;
  }

  .about-grid,
  .info-grid,
  .appointments-header,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-col-brand { max-width: 100%; }
  .footer-col-links { gap: 40px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .hero { min-height: 500px; padding: 100px 0 48px; }
  .hero-figure { display: none; }

  .featured-card { grid-template-columns: 1fr; }
  .featured-img img { min-height: 220px; }
  .featured-body { padding: 24px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-related .blog-grid { grid-template-columns: 1fr; }
  .article-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 550px) {
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .page-content { padding: 56px 0; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* Slider cards without links */
.slide-card-static {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
  min-height: 520px;
  height: auto;
  background: var(--orange-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
}

.slide-img-contain {
  background: var(--orange-bg);
  padding: 28px 18px;
}

.slide-img-contain img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
}

.slide-text-detail {
  justify-content: center;
  padding: 28px 34px 32px;
  height: 100%;
}

.slide-text-detail {
  max-width: 92%;
}

.slide-text-detail h3 {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.slide-text-detail h3 strong {
  font-weight: 800;
}

.slide-text-detail p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 14px;
}

.slide-list-block {
  margin: 8px 0 10px;
}

.slide-list-block h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.slide-text-detail ul {
  margin: 0 0 14px 20px;
  padding: 0;
}

.slide-text-detail li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 4px;
}

.slide-title-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.slide-title-btn.active {
  font-weight: 700;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.slider-prev { left: 56px; }
.slider-next { right: 16px; }

@media (max-width: 1100px) {
  .slide-card-static {
    grid-template-columns: 1fr;
    border-radius: 16px;
    overflow: hidden;
  }

.slide-img-contain {
  background: var(--orange-bg);
  padding: 28px 18px;
  border-radius: 16px;
  overflow: hidden;
}

.slide-img-contain img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: 12px;
}

  .slide-text-detail {
    padding: 22px 22px 28px;
  }

  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
}

/* ─── 404 ERROR PAGE ─── */
.error-page {
  padding: 120px 0 80px;
  background: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.error-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.15;
  display: block;
  margin-bottom: -20px;
}

.error-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.error-content > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-actions {
  margin-bottom: 48px;
}

.error-links p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.error-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.error-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gray-bg);
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.error-link-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.error-link-card svg {
  flex-shrink: 0;
}

.error-link-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.error-link-card:hover span {
  color: var(--orange);
}

@media (max-width: 550px) {
  .error-links-grid {
    grid-template-columns: 1fr;
  }
  .error-code {
    margin-bottom: -10px;
  }
}

#infoSlider {
  cursor: grab;
}

#sliderTrack {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Mobile Fix: fade-up sofort sichtbar wenn im initialen Viewport */
@media (max-width: 768px) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
